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 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)
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.AMIdentity
AMIdentityRepository. getRealmIdentity()
Get the realmAMIdentity
object.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 ofAMIdentity
s.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 void
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.Method parameters in com.sun.identity.idm with type arguments of type AMIdentity Modifier and Type Method Description void
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
Methods in org.forgerock.am.identity.application that return AMIdentity Modifier and Type Method Description AMIdentity
LegacyIdentityService. getAmIdentity(SSOToken token, String identityName, IdType idType, String realm)
Create anAMIdentity
using 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 AMIdentity
IdentityStore. createIdentity(IdType type, String idName, Map<String,Set<String>> attrMap)
Create anAMIdentity
object.AMIdentity
IdentityStore. createWithoutValidatingAttributes(SSOToken token, IdType type, String name, Map<String,Set<String>> attrs, String orgName)
Create a new identity without validating the given attributes.AMIdentity
IdentityStore. getGroup(String groupName)
Gets theAMIdentity
of a group with groupname equal to groupName that exists in realm.AMIdentity
IdentityStore. getIdentity(String uName)
Deprecated.AMIdentity
IdentityStore. getIdentity(String uName, Set<String> userSearchAttributes)
Deprecated.AMIdentity
IdentityStore. getRealmIdentity()
Get the realmAMIdentity
object.Methods 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 theAMIdentity
object for the given type, name and realm.Methods in org.forgerock.am.identity.persistence with parameters of type AMIdentity Modifier and Type Method Description void
IdentityStore. deleteIdentity(AMIdentity identity)
Delete anAMIdentity
s. -
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.ActionBuilder
Action.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 AMIdentity
AccountProvider. provisionUser(IdentityStore idrepo, Map<String,Set<String>> attributes)
Provisions a user with the specified attributes.AMIdentity
AccountProvider. searchUser(IdentityStore idrepo, Map<String,Set<String>> attr)
Search for a user given a map of attributes.
-