Uses of Class
org.forgerock.am.identity.domain.UniversalId
-
Packages that use UniversalId Package Description com.sun.identity.idm Provides classes for accessing the Identity Repository interfaces.org.forgerock.am.identity.application org.forgerock.am.identity.domain -
-
Uses of UniversalId in com.sun.identity.idm
Subclasses of UniversalId in com.sun.identity.idm Modifier and Type Class Description class
AMIdentity
This class represents an Identity which needs to be managed by Access Manager.Methods in com.sun.identity.idm with parameters of type UniversalId Modifier and Type Method Description boolean
AMIdentity. isMember(UniversalId universalId)
Verifies if this identity is a member of the identity being passed. -
Uses of UniversalId in org.forgerock.am.identity.application
Methods in org.forgerock.am.identity.application with parameters of type UniversalId Modifier and Type Method Description void
IdentityService. addMember(Identity parent, UniversalId universalId)
Adds the passed identity as a member of this identity.Identity
IdentityFactory. create(SSOToken token, UniversalId universalId)
Retrieves an instance ofIdentity
bound to the passed token and universal id.boolean
IdentityService. isMember(Identity identity, UniversalId universalId)
Verifies if this identity is a member of the identity being passed.void
IdentityService. removeMember(Identity parent, UniversalId universalId)
Removes the passed identity as a member of this identity.Method parameters in org.forgerock.am.identity.application with type arguments of type UniversalId Modifier and Type Method Description void
IdentityService. addMembers(Identity parent, Set<UniversalId> identities)
Adds the passed identities as members of this identity.void
IdentityService. removeMembers(Identity parent, Set<UniversalId> identities)
Removes the passed identities as members of this identity. -
Uses of UniversalId in org.forgerock.am.identity.domain
Methods in org.forgerock.am.identity.domain that return UniversalId Modifier and Type Method Description UniversalId
Identity. asUniversalId()
Return the universal id which represents this identitystatic UniversalId
UniversalId. of(SSOToken token)
Creates a newUniversalId
instance based of the passed token.static UniversalId
UniversalId. of(String name, IdType type, Realm realm)
Creates a newUniversalId
instance based of the passed individual parts that represent a unique identity.static UniversalId
UniversalId. of(String name, IdType type, Dn realmDn)
Creates a newUniversalId
instance based of the passed individual parts that represent a unique identity.static UniversalId
UniversalId. of(Dn universalId)
Creates a newUniversalId
instance based of the passed universal ID.Constructors in org.forgerock.am.identity.domain with parameters of type UniversalId Constructor Description UniversalId(UniversalId other)
Construct a new instance based on an existing universal id
-