Searched refs:AMIdentity (Results 1 - 25 of 529) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/plugins/
H A DNotifyPassword.java31 import com.sun.identity.idm.AMIdentity;
48 void notifyPassword(AMIdentity user, String password, Locale locale)
H A DPasswordGenerator.java31 import com.sun.identity.idm.AMIdentity;
46 String generatePassword(AMIdentity user)
/forgerock/openam/openam-core/src/main/java/com/sun/identity/password/plugins/
H A DNotifyPassword.java31 import com.sun.identity.idm.AMIdentity;
48 void notifyPassword(AMIdentity user, String password, Locale locale)
H A DPasswordGenerator.java31 import com.sun.identity.idm.AMIdentity;
46 String generatePassword(AMIdentity user)
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DAMIdentityWrapper.java37 import com.sun.identity.idm.AMIdentity;
41 * A wrapper class around AMIdentity to facility testing of code that needs to use AMIdentity.
45 private final AMIdentity amIdentity;
50 * @param amIdentity An instance of AMIdentity.
52 public AMIdentityWrapper(AMIdentity amIdentity) {
57 * Delegates to the store method on the AMIdentity instance.
64 * Delegates to the setAttributes method on the AMIdentity instance.
71 * Delegates to the getAttribute method on the AMIdentity instance.
/forgerock/openam-v13/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/mapping/
H A DAccountProvider.java29 import com.sun.identity.idm.AMIdentity;
48 AMIdentity searchUser(AMIdentityRepository idrepo, Map<String, Set<String>> attr);
57 AMIdentity provisionUser(AMIdentityRepository idrepo, Map<String, Set<String>> attributes) throws AuthLoginException;
H A DDefaultAccountProvider.java31 import com.sun.identity.idm.AMIdentity;
71 public AMIdentity searchUser(AMIdentityRepository idrepo, Map<String, Set<String>> attr) {
72 AMIdentity identity = null;
83 Iterator<AMIdentity> iter = results.getSearchResults().iterator();
102 public AMIdentity provisionUser(AMIdentityRepository idrepo, Map<String, Set<String>> attributes)
105 AMIdentity identity = null;
/forgerock/openam-v13/openam-authentication/openam-auth-device-id/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DAMIdentityWrapper.java34 import com.sun.identity.idm.AMIdentity;
41 * A wrapper class around AMIdentity to facility testing of code that needs to use AMIdentity.
47 private final AMIdentity amIdentity;
52 * @param amIdentity An instance of AMIdentity.
54 public AMIdentityWrapper(AMIdentity amIdentity) {
59 * Delegates to the store method on the AMIdentity instance.
66 * Delegates to the setAttributes method on the AMIdentity instance.
73 * Delegates to the getAttribute method on the AMIdentity instance.
/forgerock/openam/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/mapping/
H A DAccountProvider.java29 import com.sun.identity.idm.AMIdentity;
48 AMIdentity searchUser(AMIdentityRepository idrepo, Map<String, Set<String>> attr);
57 AMIdentity provisionUser(AMIdentityRepository idrepo, Map<String, Set<String>> attributes) throws AuthLoginException;
H A DDefaultAccountProvider.java31 import com.sun.identity.idm.AMIdentity;
71 public AMIdentity searchUser(AMIdentityRepository idrepo, Map<String, Set<String>> attr) {
72 AMIdentity identity = null;
83 Iterator<AMIdentity> iter = results.getSearchResults().iterator();
102 public AMIdentity provisionUser(AMIdentityRepository idrepo, Map<String, Set<String>> attributes)
105 AMIdentity identity = null;
/forgerock/openam/openam-authentication/openam-auth-device-id/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DAMIdentityWrapper.java34 import com.sun.identity.idm.AMIdentity;
41 * A wrapper class around AMIdentity to facility testing of code that needs to use AMIdentity.
47 private final AMIdentity amIdentity;
52 * @param amIdentity An instance of AMIdentity.
54 public AMIdentityWrapper(AMIdentity amIdentity) {
59 * Delegates to the store method on the AMIdentity instance.
66 * Delegates to the setAttributes method on the AMIdentity instance.
73 * Delegates to the getAttribute method on the AMIdentity instance.
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/identity/idm/
H A DIdentityUtils.java24 import com.sun.identity.idm.AMIdentity;
30 * Collection of helper functions for {@link AMIdentity}.
41 * @param id {@code AMIdentity} object.
44 public static String getDN(AMIdentity id) {
60 return new AMIdentity(null, universalId).getName();
77 return new AMIdentity(null, null, identityName, idType, realm).getUniversalId();
89 AMIdentity identity = new AMIdentity(ssoToken);
/forgerock/openam-v13/openam-core/src/test/java/com/sun/identity/idm/
H A DAMIdentityTest.java33 AMIdentity identity = new AMIdentity(token);
44 AMIdentity identity = new AMIdentity(null, uuid);
55 AMIdentity identity = new AMIdentity(DN.valueOf(uuid), null);
66 AMIdentity identity = new AMIdentity(DN.valueOf(uuid), null);
76 new AMIdentity(null, "");
81 new AMIdentity(nul
[all...]
/forgerock/openam/openam-core/src/test/java/com/sun/identity/idm/
H A DAMIdentityTest.java33 AMIdentity identity = new AMIdentity(token);
44 AMIdentity identity = new AMIdentity(null, uuid);
55 AMIdentity identity = new AMIdentity(DN.valueOf(uuid), null);
66 AMIdentity identity = new AMIdentity(DN.valueOf(uuid), null);
76 new AMIdentity(null, "");
81 new AMIdentity(nul
[all...]
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMResourceOwner.java20 import com.sun.identity.idm.AMIdentity;
39 private final AMIdentity amIdentity;
47 OpenAMResourceOwner(String id, AMIdentity amIdentity) {
57 OpenAMResourceOwner(String id, AMIdentity amIdentity, long authTime) {
98 public AMIdentity getIdentity() {
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DResourceOwner.java25 import com.sun.identity.idm.AMIdentity;
38 private final AMIdentity amIdentity;
47 ResourceOwner(String id, AMIdentity amIdentity, long authTime) {
94 public AMIdentity getIdentity() {
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/
H A DOpenSSOUserSubject.java45 import com.sun.identity.idm.AMIdentity;
95 AMIdentity amid = new AMIdentity(adminToken, uuid);
121 AMIdentity pamid = new AMIdentity(adminToken, puuid);
122 AMIdentity amid = new AMIdentity(adminToken, uuid);
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/
H A DOpenSSOUserSubject.java37 import com.sun.identity.idm.AMIdentity;
95 AMIdentity amid = new AMIdentity(adminToken, uuid);
120 AMIdentity pamid = new AMIdentity(adminToken, puuid);
121 AMIdentity amid = new AMIdentity(adminToken, uuid);
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/util/
H A DIdRepoUtils.java34 import com.sun.identity.idm.AMIdentity;
59 AMIdentity identity
61 Set<AMIdentity> set = new HashSet<AMIdentity>();
68 Set<AMIdentity> identities
77 public static AMIdentity createUser(String realm, String id)
82 public static AMIdentity createUser(
108 public static AMIdentity createAgent(
134 public static AMIdentity createGroup(String realm, String name)
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/util/
H A DIdRepoUtils.java34 import com.sun.identity.idm.AMIdentity;
59 AMIdentity identity
61 Set<AMIdentity> set = new HashSet<AMIdentity>();
68 Set<AMIdentity> identities
77 public static AMIdentity createUser(String realm, String id)
82 public static AMIdentity createUser(
108 public static AMIdentity createAgent(
134 public static AMIdentity createGroup(String realm, String name)
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResourceManager.java29 import com.sun.identity.idm.AMIdentity;
58 private AMIdentity getIdentity(String uName, String realm) throws InternalServerErrorException {
59 AMIdentity theID = null;
66 Set<AMIdentity> results = Collections.EMPTY_SET;
100 Set<AMIdentity> ids = new HashSet<AMIdentity>();
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/idm/
H A DRemoveAgentProperty.java63 AMIdentity amid = new AMIdentity(adminToken, agentName,
65 Set<AMIdentity> setDelete = new HashSet<AMIdentity>();
75 AMIdentity amid = new AMIdentity(adminToken, agentName,
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResourceManager.java29 import com.sun.identity.idm.AMIdentity;
58 private AMIdentity getIdentity(String uName, String realm) throws InternalServerErrorException {
59 AMIdentity theID = null;
66 Set<AMIdentity> results = Collections.EMPTY_SET;
100 Set<AMIdentity> ids = new HashSet<AMIdentity>();
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/idm/
H A DRemoveAgentProperty.java63 AMIdentity amid = new AMIdentity(adminToken, agentName,
65 Set<AMIdentity> setDelete = new HashSet<AMIdentity>();
75 AMIdentity amid = new AMIdentity(adminToken, agentName,
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/agentconfig/
H A DRemoveAgentsFromGroup.java42 import com.sun.identity.idm.AMIdentity;
76 AMIdentity agentGroup = new AMIdentity(
93 AMIdentity amid = new AMIdentity(
131 AMIdentity agentGroup,
136 AMIdentity amid = new AMIdentity(

Completed in 108 milliseconds

1234567891011>>