| /forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/plugins/ |
| H A D | NotifyPassword.java | 31 import com.sun.identity.idm.AMIdentity; 48 void notifyPassword(AMIdentity user, String password, Locale locale)
|
| H A D | PasswordGenerator.java | 31 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 D | NotifyPassword.java | 31 import com.sun.identity.idm.AMIdentity; 48 void notifyPassword(AMIdentity user, String password, Locale locale)
|
| H A D | PasswordGenerator.java | 31 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 D | AMIdentityWrapper.java | 37 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 D | AccountProvider.java | 29 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 D | DefaultAccountProvider.java | 31 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 D | AMIdentityWrapper.java | 34 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 D | AccountProvider.java | 29 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 D | DefaultAccountProvider.java | 31 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 D | AMIdentityWrapper.java | 34 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 D | IdentityUtils.java | 24 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 D | AMIdentityTest.java | 33 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 D | AMIdentityTest.java | 33 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 D | OpenAMResourceOwner.java | 20 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 D | ResourceOwner.java | 25 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 D | OpenSSOUserSubject.java | 45 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 D | OpenSSOUserSubject.java | 37 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 D | IdRepoUtils.java | 34 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 D | IdRepoUtils.java | 34 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 D | ClientResourceManager.java | 29 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 D | RemoveAgentProperty.java | 63 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 D | ClientResourceManager.java | 29 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 D | RemoveAgentProperty.java | 63 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 D | RemoveAgentsFromGroup.java | 42 import com.sun.identity.idm.AMIdentity; 76 AMIdentity agentGroup = new AMIdentity( 93 AMIdentity amid = new AMIdentity( 131 AMIdentity agentGroup, 136 AMIdentity amid = new AMIdentity(
|