Searched defs:resourceServerId (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaPolicyApplicationListener.java235 private void createApplication(String realm, String resourceServerId) { argument
238 Application application = applicationManager.getApplication(adminSubject, realm, resourceServerId);
242 application = new Application(resourceServerId, applicationType);
251 private void removeApplication(String realm, String resourceServerId) throws NotFoundException, ServerException { argument
254 deletePolicies(realm, resourceServerId);
257 if (applicationManager.getApplication(adminSubject, realm, resourceServerId) != null) {
258 applicationManager.deleteApplication(adminSubject, realm, resourceServerId);
265 deleteResourceSets(realm, resourceServerId);
293 private void deletePolicies(String realm, String resourceServerId) { argument
298 .setQueryFilter(QueryFilter.equalTo(new JsonPointer("applicationName"), resourceServerId));
327 deleteResourceSets(String realm, String resourceServerId) argument
[all...]
H A DUmaLabelResource.java203 String resourceServerId = label.getId().substring(0, label.getId().lastIndexOf("/"));
204 String resourceServerName = resolveResourceServerName(resourceServerId, realm, localeContext, serverContext);
212 private String resolveResourceServerName(String resourceServerId, final String realm, LocaleContext argument
216 ClientRegistration clientRegistration = clientRegistrationStore.get(resourceServerId, realm, serverContext);
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaLabelResource.java225 String resourceServerId = label.getId().substring(0, label.getId().lastIndexOf("/"));
226 String resourceServerName = resolveResourceServerName(resourceServerId, realm, localeContext, serverContext);
234 private String resolveResourceServerName(String resourceServerId, final String realm, LocaleContext argument
237 ClientRegistration clientRegistration = clientRegistrationStore.get(resourceServerId, realm, serverContext);
H A DUmaPolicyApplicationListener.java243 private void createApplication(String realm, String resourceServerId) { argument
247 Application application = appService.getApplication(resourceServerId);
251 application = new Application(resourceServerId, applicationType);
261 private void removeApplication(String realm, String resourceServerId) throws NotFoundException, ServerException { argument
265 deletePolicies(realm, resourceServerId);
268 if (appService.getApplication(resourceServerId) != null) {
269 appService.deleteApplication(resourceServerId);
279 deleteResourceSets(realm, resourceServerId);
307 private void deletePolicies(String realm, String resourceServerId) throws RealmLookupException { argument
311 .setQueryFilter(QueryFilter.equalTo(new JsonPointer("applicationName"), resourceServerId));
340 deleteResourceSets(String realm, String resourceServerId) argument
[all...]

Completed in 28 milliseconds