Searched refs:realm (Results 1 - 25 of 2068) sorted by relevance

1234567891011>>

/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/services/
H A DfetchUrl.jsm22 const ROOT_REALM_IDENTIFIER = "/root"; // TODO "root" is a placeholder. Identifier for a root realm yet undecided.
30 const normaliseRealmResourcePath = (realm) => realm.replace(/\//g, "/realms/");
31 const redesignateRootRealm = (realm, rootIdentifier) => {
32 const isRootRealm = realm === "/";
33 return isRootRealm ? rootIdentifier : `${rootIdentifier}${realm}`;
37 * Fetch a URL using the newer method of laying realm information into the URL (e.g. Redux).
41 * @param {string} [options.realm=store.getState().session.realm] The realm t
[all...]
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAuditEventFactory.java33 * Creates a new AMAccessAuditEventBuilder for the specified {@literal realm} and adds the realm to the event. If
34 * the {@literal realm} is either {@code null} or empty it will not be added to the event.
36 * Note that we deliberately do not provide a convenience method with no realm to force implementers to consider
37 * providing the realm. We must publish per realm wherever applicable.
39 * @param realm The realm in which the audit event occurred, or null if realm is not applicable.
42 public AMAccessAuditEventBuilder accessEvent(String realm) { argument
60 activityEvent(String realm) argument
78 configEvent(String realm) argument
96 authenticationEvent(String realm) argument
[all...]
/forgerock/openam/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAuditEventFactory.java33 * Creates a new AMAccessAuditEventBuilder for the specified {@literal realm} and adds the realm to the event. If
34 * the {@literal realm} is either {@code null} or empty it will not be added to the event.
36 * Note that we deliberately do not provide a convenience method with no realm to force implementers to consider
37 * providing the realm. We must publish per realm wherever applicable.
39 * @param realm The realm in which the audit event occurred, or null if realm is not applicable.
42 public AMAccessAuditEventBuilder accessEvent(String realm) { argument
60 activityEvent(String realm) argument
78 configEvent(String realm) argument
96 authenticationEvent(String realm) argument
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/core/realms/
H A DRealmLookupException.java23 * Signals that the {@literal realm} {@code String} used to lookup a realm failed due to it being
24 * an invalid realm identifier or the lookup operation failed.
30 private final String realm; field in class:RealmLookupException
36 * @param realm The realm.
38 public RealmLookupException(String errorCode, String realm) { argument
39 super(IdRepoBundle.BUNDLE_NAME, errorCode, new Object[]{realm});
40 this.realm = realm;
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/indextree/events/
H A DModificationEvent.java26 private final String realm; field in class:ModificationEvent
28 protected ModificationEvent(String pathIndex, String realm, ModificationEventType type) { argument
30 this.realm = realm;
42 * @return The realm for which the path index is associated.
45 return realm;
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/indextree/events/
H A DModificationEvent.java26 private final String realm; field in class:ModificationEvent
28 protected ModificationEvent(String pathIndex, String realm, ModificationEventType type) { argument
30 this.realm = realm;
42 * @return The realm for which the path index is associated.
45 return realm;
/forgerock/openam/openam-ui/openam-ui-ria/src/test/js/store/actions/
H A DcreatorsTest.js24 const realm = "/realmA";
27 expect(creators.sessionAddInfo({ realm, sessionHandle })).eql({
29 realm,
42 it("creates an action to add realm to server.session", () => {
43 const realm = "/realmA";
45 expect(creators.serverAddRealm(realm)).eql({
47 realm
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/store/reducers/
H A Dserver.jsm22 realm: undefined
27 case SERVER_ADD_REALM: return { realm: action.realm.toLowerCase() };
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/configuration/
H A DAuditServiceConfigurationListener.java32 * Called when the configuration for this realm was added or changed.
34 * @param realm The realm in which the change occurred.
36 void realmConfigurationChanged(String realm); argument
39 * Called when the configuration for this realm was removed.
41 * @param realm The realm in which the change occurred.
43 void realmConfigurationRemoved(String realm); argument
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultIDPAttributeMapper.java50 * @param realm realm to check the dynamical profile creation attributes.
54 protected boolean isDynamicalOrIgnoredProfile(String realm) { argument
56 return SAML2PluginsUtils.isDynamicalOrIgnoredProfile(realm);
H A DDefaultSPAccountMapper.java50 * @param realm Realm to check the dynamical profile creation attributes.
55 protected boolean isDynamicalOrIgnoredProfile(String realm) { argument
56 return SAML2PluginsUtils.isDynamicalOrIgnoredProfile(realm);
/forgerock/openam/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/configuration/
H A DAuditServiceConfigurationListener.java32 * Called when the configuration for this realm was added or changed.
34 * @param realm The realm in which the change occurred.
36 void realmConfigurationChanged(String realm); argument
39 * Called when the configuration for this realm was removed.
41 * @param realm The realm in which the change occurred.
43 void realmConfigurationRemoved(String realm); argument
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/store/actions/
H A Dcreators.jsm23 export const sessionAddInfo = ({ realm, sessionHandle }) => ({
25 realm,
33 export const serverAddRealm = (realm) => ({
35 realm
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/realm/
H A DHasEntitiesTabs.java29 package com.sun.identity.console.realm;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/realm/
H A DHasEntitiesTabs.java29 package com.sun.identity.console.realm;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DCacheKey.java29 private final String realm; field in class:CacheKey
31 private CacheKey(String source, String realm) { argument
33 this.realm = realm;
41 return realm;
54 Objects.equals(realm, cacheKey.realm);
59 return Objects.hash(source, realm);
62 static CacheKey newInstance(String source, String realm) { argument
63 return new CacheKey(source, realm);
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DCacheKey.java29 private final String realm; field in class:CacheKey
31 private CacheKey(String source, String realm) { argument
33 this.realm = realm;
41 return realm;
54 Objects.equals(realm, cacheKey.realm);
59 return Objects.hash(source, realm);
62 static CacheKey newInstance(String source, String realm) { argument
63 return new CacheKey(source, realm
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/test/js/store/reducers/
H A DserverTest.js28 realm: undefined
33 const realm = "/realmA";
37 realm
40 realm: realm.toLowerCase()
/forgerock/openam/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/config/flows/
H A DAutoLoginStageConfig.java32 private String realm; field in class:AutoLoginStageConfig
35 * Gets the configured realm.
37 * @return the realm
40 return realm;
44 * Sets the realm.
46 * @param realm
47 * the realm
51 public AutoLoginStageConfig setRealm(String realm) { argument
52 this.realm = realm;
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/
H A DApplicationManagerWrapper.java36 * @param realm The realm in which to save the {@link Application}
40 public void saveApplication(Subject adminSubject, String realm, Application application) argument
42 ApplicationManager.saveApplication(adminSubject, realm, application);
50 * @param realm The realm in which to save the {@link Application}
54 public void deleteApplication(Subject adminSubject, String realm, String name) argument
56 ApplicationManager.deleteApplication(adminSubject, realm, name);
64 * @param realm The realm i
69 getApplication(Subject adminSubject, String realm, String name) argument
83 getApplicationNames(Subject adminSubject, String realm) argument
98 updateApplication(Application oldApplication, Application newApplication, Subject subject, String realm) argument
114 search(Subject subject, String realm, Set<SearchFilter> searchFilters) argument
125 clearCache(String realm) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSArtifactStats.java41 private String realm; field in class:FSArtifactStats
46 * @param realm the realm in which the provider resides
49 public FSArtifactStats(Map table, String realm, String providerId) { argument
52 this.realm = realm;
63 providerId + " under realm " + realm + " : " + table.size());
67 " under realm " + realm
[all...]
H A DFSAssertionStats.java40 private String realm; field in class:FSAssertionStats
46 * @param realm the realm in which the provier resides
49 public FSAssertionStats(Map table, String realm, String providerId) { argument
51 this.realm = realm;
63 " under realm " + realm + " : " + table.size());
67 " under realm " + realm
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSArtifactStats.java41 private String realm; field in class:FSArtifactStats
46 * @param realm the realm in which the provider resides
49 public FSArtifactStats(Map table, String realm, String providerId) { argument
52 this.realm = realm;
63 providerId + " under realm " + realm + " : " + table.size());
67 " under realm " + realm
[all...]
H A DFSAssertionStats.java40 private String realm; field in class:FSAssertionStats
46 * @param realm the realm in which the provier resides
49 public FSAssertionStats(Map table, String realm, String providerId) { argument
51 this.realm = realm;
63 " under realm " + realm + " : " + table.size());
67 " under realm " + realm
[all...]
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DRealmContext.java24 * A CREST Context for holding realm information from the Request.
30 private final Realm realm; field in class:RealmContext
34 * Constructs a new RealmContext for a realm determined from the request URI.
37 * @param realm The realm.
40 public RealmContext(Context parent, Realm realm) { argument
41 this(parent, realm, false);
48 * @param realm The realm.
49 * @param viaDns {@code true} if the realm wa
52 RealmContext(Context parent, Realm realm, boolean viaDns) argument
[all...]

Completed in 163 milliseconds

1234567891011>>