Searched refs:supportedOps (Results 1 - 14 of 14) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/database/
H A DRepoConfigHelper.java121 * --changed to return a Map supportedOps INSTEAD of operate on a
125 * new HashMap(supportedOps);
149 //Map oldSupportedOps = new HashMap(supportedOps);
152 Map supportedOps = new HashMap();
154 //supportedOps.clear(); //I commented this line out
191 supportedOps.put(idTypeRead, opsRead);
194 + " called supportedOps:" + supportedOps
208 Set realmSrv = (Set) supportedOps.get(IdType.REALM);
213 supportedOps
[all...]
H A DDatabaseRepo.java196 private static Map supportedOps = new CaseInsensitiveHashMap(); field in class:DatabaseRepo
340 //RFE: use the supportedOps to see if groups is allowed and if so
470 supportedOps = configHelper.parsedUserSpecifiedOps(userSpecifiedOpsSet);
512 + "\n\tsupportedOps Map Attr: " + supportedOps);
1459 debug.message("DatabaseRepo.getSupportedOperations: supportedOps= "
1460 + supportedOps);
1462 return (Set) supportedOps.get(type);
1474 * When finished it has set this info in the class field Map supportedOps
1484 supportedOps.put(IdType.USER, Collections.unmodifiableSet(opSet));
1485 //supportedOps
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/database/
H A DRepoConfigHelper.java121 * --changed to return a Map supportedOps INSTEAD of operate on a
125 * new HashMap(supportedOps);
149 //Map oldSupportedOps = new HashMap(supportedOps);
152 Map supportedOps = new HashMap();
154 //supportedOps.clear(); //I commented this line out
191 supportedOps.put(idTypeRead, opsRead);
194 + " called supportedOps:" + supportedOps
208 Set realmSrv = (Set) supportedOps.get(IdType.REALM);
213 supportedOps
[all...]
H A DDatabaseRepo.java197 private static Map supportedOps = new CaseInsensitiveHashMap(); field in class:DatabaseRepo
341 //RFE: use the supportedOps to see if groups is allowed and if so
471 supportedOps = configHelper.parsedUserSpecifiedOps(userSpecifiedOpsSet);
513 + "\n\tsupportedOps Map Attr: " + supportedOps);
1460 debug.message("DatabaseRepo.getSupportedOperations: supportedOps= "
1461 + supportedOps);
1463 return (Set) supportedOps.get(type);
1475 * When finished it has set this info in the class field Map supportedOps
1485 supportedOps.put(IdType.USER, Collections.unmodifiableSet(opSet));
1486 //supportedOps
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/files/
H A DFilesRepo.java127 private static Map supportedOps = new CaseInsensitiveHashMap(); field in class:FilesRepo
334 if (supportedOps.keySet().contains(type)) {
1278 return (Set) supportedOps.get(type);
1287 return supportedOps.keySet();
1346 supportedOps.put(IdType.GROUP, Collections.unmodifiableSet(opSet));
1347 supportedOps.put(IdType.AGENT, Collections.unmodifiableSet(opSet));
1350 supportedOps.put(IdType.USER, Collections.unmodifiableSet(nopSet));
1351 supportedOps.put(IdType.ROLE, Collections.unmodifiableSet(nopSet));
1352 supportedOps.put(IdType.REALM, Collections.unmodifiableSet(nopSet));
1355 "\n\tsupportedOps=" + supportedOps
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/files/
H A DFilesRepo.java129 private static Map supportedOps = new CaseInsensitiveHashMap(); field in class:FilesRepo
336 if (supportedOps.keySet().contains(type)) {
1280 return (Set) supportedOps.get(type);
1289 return supportedOps.keySet();
1348 supportedOps.put(IdType.GROUP, Collections.unmodifiableSet(opSet));
1349 supportedOps.put(IdType.AGENT, Collections.unmodifiableSet(opSet));
1352 supportedOps.put(IdType.USER, Collections.unmodifiableSet(nopSet));
1353 supportedOps.put(IdType.ROLE, Collections.unmodifiableSet(nopSet));
1354 supportedOps.put(IdType.REALM, Collections.unmodifiableSet(nopSet));
1357 "\n\tsupportedOps=" + supportedOps
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DSpecialRepo.java114 private Map supportedOps = new HashMap(); field in class:SpecialRepo
835 return (Set) supportedOps.get(type);
845 return supportedOps.keySet();
963 supportedOps.put(IdType.USER, Collections.unmodifiableSet(opSet));
964 supportedOps.put(IdType.AGENT, Collections.unmodifiableSet(opSet));
967 "supportedOps Map = " + supportedOps);
H A DAgentsRepo.java123 private Map supportedOps = new HashMap(); field in class:AgentsRepo
1073 return (Set) supportedOps.get(type);
1082 return supportedOps.keySet();
1178 supportedOps.put(IdType.AGENTONLY, Collections.unmodifiableSet(
1180 supportedOps.put(IdType.AGENTGROUP, Collections.unmodifiableSet(
1182 supportedOps.put(IdType.AGENT, Collections.unmodifiableSet(opSet));
1186 + "supportedOps Map = " + supportedOps);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DAgentsRepo.java111 private Map supportedOps = new HashMap(); field in class:AgentsRepo
1056 return (Set) supportedOps.get(type);
1065 return supportedOps.keySet();
1161 supportedOps.put(IdType.AGENTONLY, Collections.unmodifiableSet(
1163 supportedOps.put(IdType.AGENTGROUP, Collections.unmodifiableSet(
1165 supportedOps.put(IdType.AGENT, Collections.unmodifiableSet(opSet));
1169 + "supportedOps Map = " + supportedOps);
H A DSpecialRepo.java114 private Map supportedOps = new HashMap(); field in class:SpecialRepo
835 return (Set) supportedOps.get(type);
845 return supportedOps.keySet();
963 supportedOps.put(IdType.USER, Collections.unmodifiableSet(opSet));
966 "supportedOps Map = " + supportedOps);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSDKRepo.java87 private Map supportedOps = new HashMap(); field in class:AMSDKRepo
542 return (Set) supportedOps.get(type);
547 return supportedOps.keySet();
1785 supportedOps.put(IdType.USER, Collections.unmodifiableSet(opSet));
1786 supportedOps.put(IdType.ROLE, Collections.unmodifiableSet(opSet));
1787 supportedOps.put(IdType.FILTEREDROLE, Collections
1792 supportedOps.put(IdType.GROUP, Collections.unmodifiableSet(op2Set));
1798 supportedOps.put(IdType.AGENT,
1813 supportedOps.put(IdType.REALM, Collections.unmodifiableSet(op3Set));
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSDKRepo.java87 private Map supportedOps = new HashMap(); field in class:AMSDKRepo
542 return (Set) supportedOps.get(type);
547 return supportedOps.keySet();
1785 supportedOps.put(IdType.USER, Collections.unmodifiableSet(opSet));
1786 supportedOps.put(IdType.ROLE, Collections.unmodifiableSet(opSet));
1787 supportedOps.put(IdType.FILTEREDROLE, Collections
1792 supportedOps.put(IdType.GROUP, Collections.unmodifiableSet(op2Set));
1798 supportedOps.put(IdType.AGENT,
1813 supportedOps.put(IdType.REALM, Collections.unmodifiableSet(op3Set));
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdServicesImpl.java2476 Set supportedOps = repo.getSupportedOperations(type);
2477 if (supportedOps != null && !supportedOps.isEmpty()) {
2478 unionSupportedOps.addAll(supportedOps);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdServicesImpl.java2450 Set supportedOps = repo.getSupportedOperations(type);
2451 if (supportedOps != null && !supportedOps.isEmpty()) {
2452 unionSupportedOps.addAll(supportedOps);

Completed in 187 milliseconds