public class AMIdentityRepository extends Object
AMIdentityRepository
represents an object to access
the repositories in which user/role/group and other identity data is
configured. This class provides access to methods which will search, create
and delete identities. An instance of this class can be obtained in the
following manner:
AMIdentityRepository idRepo = new AMIdentityRepository(ssoToken, realmName);
Constructor and Description |
---|
AMIdentityRepository(SSOToken ssotoken,
String realmName)
Deprecated.
in 13.0.0, use
AMIdentityRepository.AMIdentityRepository(String, com.iplanet.sso.SSOToken) instead |
AMIdentityRepository(String realmName,
SSOToken ssoToken) |
Modifier and Type | Method and Description |
---|---|
int |
addEventListener(IdEventListener listener) |
static void |
clearCache() |
Set |
createIdentities(IdType type,
Map identityNamesAndAttrs) |
AMIdentity |
createIdentity(IdType type,
String idName,
Map attrMap) |
void |
deleteIdentities(IdType type,
Set identities)
Deprecated.
As of release AM 7.1, replaced by
AMIdentityRepository.deleteIdentities(Set) |
void |
deleteIdentities(Set identities) |
Set |
getAllowedIdOperations(IdType type) |
AMIdentity |
getRealmIdentity() |
Set |
getSupportedIdTypes() |
void |
removeEventListener(int identifier) |
IdSearchResults |
searchIdentities(IdType type,
String pattern,
IdSearchControl ctrl) |
@Deprecated public AMIdentityRepository(SSOToken ssotoken, String realmName) throws IdRepoException, SSOException
AMIdentityRepository.AMIdentityRepository(String, com.iplanet.sso.SSOToken)
insteadssotoken
- Single sign on token of the userrealmName
- Name of the realm (can be a Fully qualified DN)IdRepoException
- Never thrown, required by legacy code.SSOException
- Never thrown, required by legacy code.public Set getSupportedIdTypes() throws IdRepoException, SSOException
IdType
objects.IdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.public Set getAllowedIdOperations(IdType type) throws IdRepoException, SSOException
type
- Type of identityIdOperation
objects.IdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.public IdSearchResults searchIdentities(IdType type, String pattern, IdSearchControl ctrl) throws IdRepoException, SSOException
type
- Type of identity being searched for.pattern
- Pattern to be used when searching.ctrl
- IdSearchControl which can be used to set up various search
controls on the search to be performed.IdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.IdSearchControl
,
IdSearchResults
public AMIdentity getRealmIdentity() throws IdRepoException, SSOException
IdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.public AMIdentity createIdentity(IdType type, String idName, Map attrMap) throws IdRepoException, SSOException
type
- IdType
of object to be created.idName
- Name of object. If the type is IdType.REALM
then enter a valid realm name.attrMap
- Map of attribute-values to be set when creating the entry.IdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.public Set createIdentities(IdType type, Map identityNamesAndAttrs) throws IdRepoException, SSOException
type
- Type of object to be createdidentityNamesAndAttrs
- Names of the identities and theirIdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.public void deleteIdentities(IdType type, Set identities) throws IdRepoException, SSOException
AMIdentityRepository.deleteIdentities(Set)
type
- Type of Identity to be deleted.identities
- Set of AMIdentity
objects to be deleted.IdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.public void deleteIdentities(Set identities) throws IdRepoException, SSOException
identities
- Set of AMIdentity
objects to be deletedIdRepoException
- if there are repository related error conditions.SSOException
- if user's single sign on token is invalid.public int addEventListener(IdEventListener listener)
listener
- The callback which implements AMEventListener
.public void removeEventListener(int identifier)
identifier
- Integer identifying the listener.public static void clearCache()
Copyright © 2010-2018, ForgeRock All Rights Reserved.