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

/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/xacml3/
H A DPrivilegeSet.java42 private final List<Application> applications; field in class:PrivilegeSet
51 this.applications = new ArrayList<>();
83 applications.add(application);
120 return Collections.unmodifiableList(applications);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DApplicationManager.java54 * Application Manager handles addition, deletion and listing of applications for each realm.
59 private static Map<String, Set<Application>> applications = new ConcurrentHashMap<String, Set<Application>>(); field in class:ApplicationManager
85 // Delegation to applications is currently not configurable, passing super admin (see AME-4959)
191 Set<Application> appls = applications.get(realm);
199 applications.put(realm, appls);
215 // Delegation to applications is currently not configurable, passing super admin (see AME-4959)
476 * Clears the cached applications. Must be called when notifications are
477 * received for changes to applications.
480 for (String name : applications.keySet()) {
482 applications
[all...]
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/service/
H A DApplicationServiceImpl.java57 private static final Map<String, Set<Application>> applications = new ConcurrentHashMap<>(); field in class:ApplicationServiceImpl
81 Set<Application> applications = adminConfiguration.searchApplications(subject, queryFilter);
84 return applications;
87 return getAccessibleApplications(realm, applications);
145 for (String name : applications.keySet()) {
147 applications.remove(name);
157 // Delegation to applications is currently not configurable, passing super admin (see AME-4959)
168 private Set<Application> getAccessibleApplications(String realm, Set<Application> applications) { argument
169 // Delegation to applications is currently not configurable, passing super admin (see AME-4959)
173 for (Application app : applications) {
[all...]
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/xacml/v3/
H A DImportStepGeneratorTest.java233 private void givenExistingApplicationNames(String... applications) throws EntitlementException { argument
234 given(applicationService.getApplicationNames()).willReturn(new HashSet<>(Arrays.asList(applications)));

Completed in 34 milliseconds