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.am.identity.application org.forgerock.am.identity.persistence org.forgerock.openam.auth.node.api This package contains the API for writing authentication nodes.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 intAMLoginModule. 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. resultsMapprotected Set<AMIdentity>IdSearchResults. searchResultsMethods in com.sun.identity.idm that return AMIdentity Modifier and Type Method Description AMIdentityAMIdentityRepository. createIdentity(IdType type, String idName, Map attrMap)Create anAMIdentityobject.static AMIdentityIdUtils. getIdentity(SSOToken token)static AMIdentityIdUtils. getIdentity(SSOToken token, String univId)static AMIdentityIdUtils. getIdentity(String uName, String realm)Gets the AMIdentity of a user with username equal to uName that exists in realmstatic AMIdentityIdUtils. getIdentity(String uName, String realm, Set<String> userSearchAttributes)Gets the AMIdentity of a user with username equal to uName that exists in realm.AMIdentityAMIdentityRepository. getRealmIdentity()Get the realmAMIdentityobject.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)Create a set ofAMIdentitys.Set<AMIdentity>AMIdentity. getMembers(IdType mtype)Return all members of a given identity type of this identity as a Set of AMIdentity objects.Set<AMIdentity>AMIdentity. getMemberships(IdType mtype)Returns the set of identities that this identity belongs to.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 voidAMIdentity. addMember(AMIdentity identity)Adds the passed identity as a member of this identity.voidIdSearchResults. addResult(AMIdentity id, Map attrs)Adds an AMIdentity object to this search result.static StringIdUtils. getUniversalId(AMIdentity id)voidAMIdentity. removeMember(AMIdentity identity)Removes the passed identity as a member of this identity.Method parameters in com.sun.identity.idm with type arguments of type AMIdentity Modifier and Type Method Description voidAMIdentity. addMembers(Set<AMIdentity> identities)Adds the passed identities as members of this identity.voidAMIdentityRepository. deleteIdentities(Set<AMIdentity> identities)Delete a set ofAMIdentitys.voidAMIdentity. removeMembers(Set<AMIdentity> identities)Removes the passed identities as members of this identity. -
Uses of AMIdentity in org.forgerock.am.identity.application
Methods in org.forgerock.am.identity.application that return AMIdentity Modifier and Type Method Description AMIdentityLegacyIdentityService. getAmIdentity(SSOToken token, String identityName, IdType idType, String realm)Create anAMIdentityusing the specified information.Methods in org.forgerock.am.identity.application that return types with arguments of type AMIdentity Modifier and Type Method Description Set<AMIdentity>LegacyIdentityService. findActiveIdentities(Realm realm, IdType idType, Map<String,Set<String>> searchAttributes, IdSearchOpModifier searchModifier)Searches for AM identities with the given attributes in the given realm.Optional<AMIdentity>LegacyIdentityService. findActiveIdentity(Realm realm, IdType idType, Map<String,Set<String>> searchAttributes)Searches for an AM identity with the given attributes in the given realm.Set<AMIdentity>IdentityService. getMembers(Identity identity, IdType mtype)Return all members of a given identity type of this identity as a Set of Identity objects.Set<AMIdentity>IdentityService. getMemberships(Identity identity, IdType mtype)Returns the set of identities that this identity belongs to. -
Uses of AMIdentity in org.forgerock.am.identity.persistence
Methods in org.forgerock.am.identity.persistence that return AMIdentity Modifier and Type Method Description AMIdentityIdentityStore. createIdentity(IdType type, String idName, Map<String,Set<String>> attrMap)Create anAMIdentityobject.AMIdentityIdentityStore. createWithoutValidatingAttributes(SSOToken token, IdType type, String name, Map<String,Set<String>> attrs, String orgName)Create a new identity without validating the given attributes.AMIdentityIdentityStore. getGroup(String groupName)Gets theAMIdentityof a group with groupname equal to groupName that exists in realm.AMIdentityIdentityStore. getIdentity(String uName)Deprecated.AMIdentityIdentityStore. getRealmIdentity()Get the realmAMIdentityobject.AMIdentityIdentityStore. getUserUsingAuthenticationUserAliases(String uName)Deprecated.UseIdentityStore.searchForIdentity(IdType, String)insteadMethods in org.forgerock.am.identity.persistence that return types with arguments of type AMIdentity Modifier and Type Method Description Optional<AMIdentity>IdentityStore. findIdentityByUsername(String username, IdType type)Searches for the identity using the username.Optional<AMIdentity>IdentityStore. findUserByUsernameOrAlias(String username, Set<String> userSearchAttributes)Searches for the user using the username, then uses the search attributes if nothing is found.Optional<AMIdentity>IdentityStore. searchForIdentity(IdType idType, String idName)Returns theAMIdentityobject for the given type, name and realm.Methods in org.forgerock.am.identity.persistence with parameters of type AMIdentity Modifier and Type Method Description voidIdentityStore. deleteIdentity(AMIdentity identity)Delete anAMIdentitys. -
Uses of AMIdentity in org.forgerock.openam.auth.node.api
Methods in org.forgerock.openam.auth.node.api with parameters of type AMIdentity Modifier and Type Method Description Action.ActionBuilderAction.ActionBuilder. withIdentifiedIdentity(AMIdentity identity)Set the identified identity that has been verified to exist in an identity store. -
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 AMIdentityAccountProvider. provisionUser(IdentityStore idrepo, Map<String,Set<String>> attributes)Provisions a user with the specified attributes.AMIdentityAccountProvider. searchUser(IdentityStore idrepo, Map<String,Set<String>> attr)Search for a user given a map of attributes.
-