Uses of Class
com.sun.identity.idm.AMIdentity
Package
Description
Provides interfaces and classes for writing a supplemental authentication
module to plug into OpenAM.
Provides classes for accessing the Identity Repository interfaces.
This package contains the API for writing authentication nodes.
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
Modifier and TypeMethodDescriptionint
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
Modifier and TypeFieldDescriptionprotected Map<AMIdentity,
Map<String, ?>> IdSearchResults.resultsMap
protected Set<AMIdentity>
IdSearchResults.searchResults
Modifier and TypeMethodDescriptionAMIdentityRepository.createIdentity
(IdType type, String idName, Map attrMap) Create anAMIdentity
object.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.AMIdentityRepository.getRealmIdentity()
Get the realmAMIdentity
object.Modifier and TypeMethodDescriptionAMIdentityRepository.createIdentities
(IdType type, Map<String, Map<?, ?>> identityNamesAndAttrs) Create a set ofAMIdentity
s.AMIdentity.getMembers
(IdType mtype) Return all members of a given identity type of this identity as a Set of AMIdentity objects.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.IdSearchResults.getSearchResults()
Method which returns the search results as an ordered set.Modifier and TypeMethodDescriptionvoid
AMIdentity.addMember
(AMIdentity identity) Adds the passed identity as a member of this identity.void
IdSearchResults.addResult
(AMIdentity id, Map attrs) Adds an AMIdentity object to this search result.static String
IdUtils.getUniversalId
(AMIdentity id) void
AMIdentity.removeMember
(AMIdentity identity) Removes the passed identity as a member of this identity.Modifier and TypeMethodDescriptionvoid
AMIdentity.addMembers
(Set<AMIdentity> identities) Adds the passed identities as members of this identity.void
AMIdentityRepository.deleteIdentities
(Set<AMIdentity> identities) Delete a set ofAMIdentity
s.void
AMIdentity.removeMembers
(Set<AMIdentity> identities) Removes the passed identities as members of this identity. -
Uses of AMIdentity in org.forgerock.am.identity.application
Modifier and TypeMethodDescriptionLegacyIdentityService.getAmIdentity
(SSOToken token, String identityName, IdType idType, String realm) Create anAMIdentity
using the specified information.Modifier and TypeMethodDescriptionLegacyIdentityService.findActiveIdentities
(Realm realm, IdType idType, Map<String, Set<String>> searchAttributes, IdSearchOpModifier searchModifier) Searches for AM identities with the given attributes in the given realm.LegacyIdentityService.findActiveIdentity
(Realm realm, IdType idType, Map<String, Set<String>> searchAttributes) Searches for an AM identity with the given attributes in the given realm.IdentityService.getMembers
(Identity identity, IdType mtype) Return all members of a given identity type of this identity as a Set of Identity objects.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
Modifier and TypeMethodDescriptionCreate anAMIdentity
object.IdentityStore.createWithoutValidatingAttributes
(SSOToken token, IdType type, String name, Map<String, Set<String>> attrs, String orgName) Create a new identity without validating the given attributes.Gets theAMIdentity
of a group with groupname equal to groupName that exists in realm.IdentityStore.getIdentity
(String uName) Deprecated.IdentityStore.getRealmIdentity()
Get the realmAMIdentity
object.IdentityStore.getUserUsingAuthenticationUserAliases
(String uName) Deprecated.UseIdentityStore.searchForIdentity(IdType, String)
insteadModifier and TypeMethodDescriptionIdentityStore.findIdentityByUsername
(String username, IdType type) Searches for the identity using the username.IdentityStore.findUserByUsernameOrAlias
(String username, Set<String> userSearchAttributes) Searches for the user using the username, then uses the search attributes if nothing is found.IdentityStore.searchForIdentity
(IdType idType, String idName) Returns theAMIdentity
object for the given type, name and realm.Modifier and TypeMethodDescriptionvoid
IdentityStore.deleteIdentity
(AMIdentity identity) Delete anAMIdentity
s. -
Uses of AMIdentity in org.forgerock.openam.auth.node.api
Modifier and TypeMethodDescriptionAction.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
Modifier and TypeMethodDescriptionAccountProvider.provisionUser
(IdentityStore idrepo, Map<String, Set<String>> attributes) Provisions a user with the specified attributes.AccountProvider.searchUser
(IdentityStore idrepo, Map<String, Set<String>> attr) Search for a user given a map of attributes.
IdentityStore.findIdentityByUsername(java.lang.String, IdType)
instead