Searched refs:appService (Results 1 - 6 of 6) sorted by relevance

/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/rest/
H A DUmaResourceSetRegistrationHook.java108 ApplicationService appService = applicationServiceFactory.create(adminSubject, realm);
109 Application application = appService.getApplication(resourceSet.getClientId().toLowerCase());
111 appService.saveApplication(application);
131 ApplicationService appService = applicationServiceFactory.create(adminSubject, realm);
132 Application application = appService.getApplication(resourceSet.getClientId().toLowerCase());
134 appService.saveApplication(application);
H A DUmaPolicyApplicationListener.java246 ApplicationService appService = applicationServiceFactory.create(adminSubject, realm);
247 Application application = appService.getApplication(resourceServerId);
254 appService.saveApplication(application);
267 ApplicationService appService = applicationServiceFactory.create(adminSubject, realm);
268 if (appService.getApplication(resourceServerId) != null) {
269 appService.deleteApplication(resourceServerId);
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DRemoveRedundantDefaultApplication.java80 private ApplicationService appService() { method in class:RemoveRedundantDefaultApplication
97 defaultApplicationsToBeRemoved.addAll(appService().getApplicationNames());
111 appService().deleteApplication(applicationName);
H A DUmaApplicationSubjectsStep.java117 ApplicationService appService = applicationServiceFactory.create(getAdminSubject(), realm);
119 for (Application application : appService.getApplications()) {
147 ApplicationService appService = applicationServiceFactory.create(getAdminSubject(),
151 appService.saveApplication(application);
H A DRemoveReferralsStep.java124 private ApplicationService appService(String realm) { method in class:RemoveReferralsStep
219 Application application = appService(sourceRealm).getApplication(applicationName);
255 appService(destinationRealm).saveApplication(clonedApplication);
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DApplicationsResource.java155 private ApplicationService appService(Subject subject, String realm) { method in class:ApplicationsResource
226 Application application = appService(subject, realm).saveApplication(applicationWrapper.getApplication());
330 appService(subject, realm).deleteApplication(resourceId);
384 Set<Application> applications = appService(subject, realm).search(stringQueryFilter);
432 final Application application = appService(subject, realm).getApplication(resourceId);
496 Application application = appService(subject, realm).saveApplication(applicationWrapper.getApplication());
507 return isNotEmpty(appService(subject, realm).search(QueryFilter.equalTo(NAME_ATTRIBUTE, applicationId)));

Completed in 260 milliseconds