Uses of Class
com.sun.identity.idm.AMIdentity
-
Packages that use AMIdentity Package Description com.sun.identity.authentication.spi Provides interfaces and classes for writing a supplemental authentication module to plug into OpenAM.com.sun.identity.idm Provides classes for accessing the Identity Repository interfaces.org.forgerock.openam.authentication.modules.common.mapping This package contains the mapping interfaces and default implementations that are common for use by all authentication modules. -
-
Uses of AMIdentity in com.sun.identity.authentication.spi
Methods in com.sun.identity.authentication.spi with parameters of type AMIdentity Modifier and Type Method Description int
AMLoginModule. getFailCount(AMIdentity amIdUser)
Get the number of failed login attempts for a user when account locking is enabled. -
Uses of AMIdentity in com.sun.identity.idm
Fields in com.sun.identity.idm with type parameters of type AMIdentity Modifier and Type Field Description protected Map<AMIdentity,Map<String,?>>
IdSearchResults. resultsMap
protected Set<AMIdentity>
IdSearchResults. searchResults
Methods in com.sun.identity.idm that return AMIdentity Modifier and Type Method Description AMIdentity
AMIdentityRepository. createIdentity(IdType type, String idName, Map attrMap)
static AMIdentity
IdUtils. getIdentity(SSOToken token)
static AMIdentity
IdUtils. getIdentity(SSOToken token, String univId)
static AMIdentity
IdUtils. getIdentity(String uName, String realm)
Gets the AMIdentity of a user with username equal to uName that exists in realmstatic AMIdentity
IdUtils. getIdentity(String uName, String realm, Set<String> userSearchAttributes)
Gets the AMIdentity of a user with username equal to uName that exists in realm.AMIdentity
AMIdentityRepository. getRealmIdentity()
Methods in com.sun.identity.idm that return types with arguments of type AMIdentity Modifier and Type Method Description Set<AMIdentity>
AMIdentityRepository. createIdentities(IdType type, Map<String,Map<?,?>> identityNamesAndAttrs)
Map<AMIdentity,Map<String,?>>
IdSearchResults. getResultAttributes()
Method which returns the search results as a map containing AMIdentity objects as key and the attribute value String.Set<AMIdentity>
IdSearchResults. getSearchResults()
Method which returns the search results as an ordered set.Methods in com.sun.identity.idm with parameters of type AMIdentity Modifier and Type Method Description void
AMIdentity. addMember(AMIdentity identity)
void
IdSearchResults. addResult(AMIdentity id, Map attrs)
Adds an AMIdentity object to this search result.static String
IdUtils. getUniversalId(AMIdentity id)
boolean
AMIdentity. isMember(AMIdentity identity)
Verifies if this identity is a member of the identity being passed.void
AMIdentity. removeMember(AMIdentity identity)
Method parameters in com.sun.identity.idm with type arguments of type AMIdentity Modifier and Type Method Description void
AMIdentity. addMembers(Set<AMIdentity> identities)
void
AMIdentityRepository. deleteIdentities(Set<AMIdentity> identities)
void
AMIdentity. removeMembers(Set<AMIdentity> identities)
-
Uses of AMIdentity in org.forgerock.openam.authentication.modules.common.mapping
Methods in org.forgerock.openam.authentication.modules.common.mapping that return AMIdentity Modifier and Type Method Description AMIdentity
AccountProvider. provisionUser(AMIdentityRepository idrepo, Map<String,Set<String>> attributes)
Provisions a user with the specified attributes.AMIdentity
AccountProvider. searchUser(AMIdentityRepository idrepo, Map<String,Set<String>> attr)
Search for a user given a map of attributes.
-