Searched refs:getRealm (Results 101 - 125 of 394) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DOathDevicesResource.java84 final AuthenticatorOathService realmOathService = oathServiceFactory.create(getRealm(context));
149 final AuthenticatorOathService realmOathService = oathServiceFactory.create(getRealm(context));
169 return IdUtils.getIdentity(contextHelper.getUserId(context), contextHelper.getRealm(context));
H A DUserDevicesResource.java106 List<JsonValue> devices = userDevicesDao.getDeviceProfiles(userName, getRealm(context));
122 userDevicesDao.saveDeviceProfiles(userName, getRealm(context), devices);
148 for (JsonValue profile : userDevicesDao.getDeviceProfiles(userName, getRealm(context))) {
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/model/json/
H A DPolicyRequest.java90 public String getRealm() { method in class:PolicyRequest
158 realm = getRealm(realmContext);
241 private String getRealm(final RealmContext context) { method in class:PolicyRequest.PolicyRequestBuilder
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DUserDevicesResource.java88 List<JsonValue> devices = userDevicesDao.getDeviceProfiles(userName, getRealm(context));
104 userDevicesDao.saveDeviceProfiles(userName, getRealm(context), devices);
121 for (JsonValue profile : userDevicesDao.getDeviceProfiles(userName, getRealm(context))) {
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DResourceTypesResource.java146 final ResourceType savedResourceType = resourceTypeService.saveResourceType(subject, getRealm(context),
184 final String realm = getRealm(context);
237 final ResourceType updatedResourceType = resourceTypeService.updateResourceType(subject, getRealm(context),
274 String realm = getRealm(context);
330 final String realm = getRealm(context);
H A DApplicationsResource.java151 final String realm = getRealm(context);
290 final String realm = getRealm(context);
347 final String realm = getRealm(context);
395 final String realm = getRealm(context);
452 oldApplication = appManager.getApplication(mySubject, getRealm(context), resourceId);
459 appManager.getApplication(mySubject, getRealm(context), wrapp.getName()) != null) {
463 appManager.updateApplication(oldApplication, wrapp.getApplication(), mySubject, getRealm(context));
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DPendingRequestResource.java124 content.get(pendingRequest.getId()), ServerContextUtils.getRealm(context)));
150 service.denyPendingRequest(pendingRequest.getId(), ServerContextUtils.getRealm(context));
173 ServerContextUtils.getRealm(context)));
194 service.denyPendingRequest(resourceId, ServerContextUtils.getRealm(context));
264 return service.queryPendingRequests(contextHelper.getUserId(context), ServerContextUtils.getRealm(context));
/forgerock/openam-v13/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DApplicationV1FilterTest.java128 given(contextHelper.getRealm(context)).willReturn("/abc");
171 given(contextHelper.getRealm(context)).willReturn("/abc");
269 given(contextHelper.getRealm(context)).willReturn("/abc");
371 given(contextHelper.getRealm(context)).willReturn("/abc");
404 given(contextHelper.getRealm(context)).willReturn("/abc");
456 given(contextHelper.getRealm(context)).willReturn("/abc");
479 given(contextHelper.getRealm(context)).willReturn("/abc");
H A DPolicyV1FilterTest.java143 given(contextHelper.getRealm(context)).willReturn("/abc");
195 given(contextHelper.getRealm(context)).willReturn("/abc");
223 given(contextHelper.getRealm(context)).willReturn("/abc");
255 given(contextHelper.getRealm(context)).willReturn("/abc");
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DApplicationV1FilterTest.java129 given(contextHelper.getRealm(context)).willReturn("/abc");
172 given(contextHelper.getRealm(context)).willReturn("/abc");
270 given(contextHelper.getRealm(context)).willReturn("/abc");
372 given(contextHelper.getRealm(context)).willReturn("/abc");
405 given(contextHelper.getRealm(context)).willReturn("/abc");
457 given(contextHelper.getRealm(context)).willReturn("/abc");
480 given(contextHelper.getRealm(context)).willReturn("/abc");
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/rest/
H A DScriptResource.java202 .create(getRealm(context))
230 serviceFactory.create(getRealm(context)).delete(resourceId);
248 configs = serviceFactory.create(getRealm(context)).getAll();
252 configs = serviceFactory.create(getRealm(context)).get(stringQueryFilter);
279 serviceFactory.create(getRealm(context)).get(resourceId))));
309 .create(getRealm(context))
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java218 realmOathService = oathServiceFactory.create(id.getRealm());
284 final OathDeviceSettings settings = getOathDeviceSettings(id.getName(), id.getRealm());
438 oathDevices.saveDeviceProfile(id.getName(), id.getRealm(), deviceToAuthAgainst);
483 oathDevices.saveDeviceProfile(id.getName(), id.getRealm(), settings);
795 oathDevices.saveDeviceProfile(id.getName(), id.getRealm(), settings);
819 oathDevices.saveDeviceProfile(id.getName(), id.getRealm(), settings);
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/openam/oauth2/
H A DOAuth2Utils.java168 public String getRealm(Request request) { method in class:OAuth2Utils
170 return getRealm(httpRequest);
173 public String getRealm(HttpServletRequest request) { method in class:OAuth2Utils
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuth2Utils.java172 public String getRealm(Request request) { method in class:OAuth2Utils
174 return getRealm(httpRequest);
177 public String getRealm(HttpServletRequest request) { method in class:OAuth2Utils
H A DStatelessTokenCtsAdapter.java57 token.setAttribute(REALM_FIELD, metadata.getRealm());
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DPrivilegeIndexStore.java73 protected String getRealm() { method in class:PrivilegeIndexStore
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/saml2/
H A DIDPSSOFederateRequest.java155 public String getRealm() { method in class:IDPSSOFederateRequest
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/legacy/
H A DLegacyJwtTokenAdapter.java117 public String getRealm() { method in class:LegacyJwtTokenAdapter
118 throw new UnsupportedOperationException("LegacyJwtTokenAdapter does not support the getRealm method");
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DAgentIdentityImpl.java88 getAdminToken()).getOrganizationConfig(identity.getRealm(), null);
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorAppRegistrationURIBuilder.java110 String realm = extractHumanReadableRealmString(id.getRealm());
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DPermissionTicket.java72 public String getRealm() { method in class:PermissionTicket
H A DUmaTokenIntrospectionHandler.java59 token.getRealm().equals(request.<String>getParameter(OAuth2Constants.Params.REALM))) {
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaPolicyApplicationListener.java138 createApplication(identity.getRealm(), identity.getName());
140 removeApplication(identity.getRealm(), identity.getName());
177 removeApplication(identity.getRealm(), identity.getName());
209 IdSearchResults searchResults = idRepoFactory.create(identity.getRealm(), adminToken)
/forgerock/openam-v13/openam-uma/src/test/java/org/forgerock/openam/uma/rest/
H A DResourceSetResourceTest.java96 given(contextHelper.getRealm(context)).willReturn("REALM");
209 given(contextHelper.getRealm(context)).willReturn("REALM");
241 given(contextHelper.getRealm(context)).willReturn("REALM");
264 given(contextHelper.getRealm(context)).willReturn("REALM");
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DAgentIdentityImpl.java88 getAdminToken()).getOrganizationConfig(identity.getRealm(), null);

Completed in 160 milliseconds

1234567891011>>