Searched defs:serviceNames (Results 26 - 50 of 53) sorted by relevance

123

/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMUser.java367 * @param serviceNames
376 public void assignServices(Set serviceNames) throws AMException, argument
H A DAMUserImpl.java447 * @param serviceNames
455 public void assignServices(Set serviceNames) throws AMException, argument
457 if (serviceNames == null || serviceNames.isEmpty()) {
465 Iterator iter = serviceNames.iterator();
H A DAMPeopleContainer.java100 * @param serviceNames
111 public Set createUsers(Map users, Set serviceNames) throws AMException, argument
H A DAMPeopleContainerImpl.java80 Set serviceNames = parentOrg.getOrgTypeAttributes(
83 if ((serviceNames != null) && (!serviceNames.isEmpty())) {
85 serviceNames);
125 Set serviceNames = parentOrg.getOrgTypeAttributes(
127 return createUsers(usersMap, serviceNames);
141 * @param serviceNames
151 public Set createUsers(Map usersMap, Set serviceNames) throws AMException, argument
156 if ((serviceNames != null) && (!serviceNames
[all...]
H A DAMObject.java955 * @param serviceNames
963 public void unassignServices(Set serviceNames) throws AMException, argument
H A DAMOrganizationalUnit.java1998 * @param serviceNames
2006 public void unassignServices(Set serviceNames) throws AMException, argument
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMPeopleContainer.java100 * @param serviceNames
111 public Set createUsers(Map users, Set serviceNames) throws AMException, argument
H A DAMPeopleContainerImpl.java80 Set serviceNames = parentOrg.getOrgTypeAttributes(
83 if ((serviceNames != null) && (!serviceNames.isEmpty())) {
85 serviceNames);
125 Set serviceNames = parentOrg.getOrgTypeAttributes(
127 return createUsers(usersMap, serviceNames);
141 * @param serviceNames
151 public Set createUsers(Map usersMap, Set serviceNames) throws AMException, argument
156 if ((serviceNames != null) && (!serviceNames
[all...]
H A DAMObject.java955 * @param serviceNames
963 public void unassignServices(Set serviceNames) throws AMException, argument
H A DAMOrganizationalUnit.java1998 * @param serviceNames
2006 public void unassignServices(Set serviceNames) throws AMException, argument
H A DAMObjectImpl.java198 Set serviceNames = parentOrg.getRegisteredServiceNames();
199 Iterator iter = serviceNames.iterator();
849 * serviceNames)
1855 * @param serviceNames
1862 public void unassignServices(Set serviceNames) throws AMException, argument
1864 if ((serviceNames == null) || serviceNames.isEmpty()) {
1882 Iterator iter = serviceNames.iterator();
1896 serviceNames);
/forgerock/openam-v13/openam-test/src/test/java/com/sun/identity/cli/schema/
H A DSchemaTest.java122 List<String> serviceNames = new ArrayList<String>();
123 serviceNames.add(TEST_SERVICE);
124 deleteServices(serviceNames);
1672 private void deleteServices(List<String> serviceNames) throws CLIException { argument
1673 String[] args = new String[serviceNames.size() +2];
1677 for (String xml : serviceNames) {
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMTabEntry.java64 private Set serviceNames = new HashSet(); field in class:AMTabEntry
280 return serviceNames;
396 serviceNames = getChildNodeValues(
397 child, "serviceNames", "serviceName");
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DRealmResource.java87 final private static String SERVICE_NAMES = "serviceNames";
238 * @param serviceNames Names of the services available to the organization
242 private JsonValue serviceNamesToJSON(OrganizationConfigManager ocm, Set serviceNames) throws SMSException { argument
245 for (Object service : serviceNames) {
421 Set serviceNames = ocm.getAssignedServices();
422 jval = createJsonMessage(SERVICE_NAMES, serviceNames);
603 * @param serviceNames Map of service names
607 Map serviceNames) throws SMSException {
609 ocm.setAttributes(IdConstants.REPO_SERVICE, (Map) serviceNames.get(IdConstants.REPO_SERVICE));
606 updateConfiguredServices(OrganizationConfigManager ocm, Map serviceNames) argument
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeServiceSchemaStep.java153 private Set<String> listNewServices(Set<String> serviceNames, Set<String> existingServices) { argument
154 Set<String> newServiceNames = new HashSet<String>(serviceNames);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMTabEntry.java64 private Set serviceNames = new HashSet(); field in class:AMTabEntry
280 return serviceNames;
396 serviceNames = getChildNodeValues(
397 child, "serviceNames", "serviceName");
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DRealmResource.java88 final private static String SERVICE_NAMES = "serviceNames";
239 * @param serviceNames Names of the services available to the organization
243 private JsonValue serviceNamesToJSON(OrganizationConfigManager ocm, Set serviceNames) throws SMSException { argument
246 for (Object service : serviceNames) {
422 Set serviceNames = ocm.getAssignedServices();
423 jval = createJsonMessage(SERVICE_NAMES, serviceNames);
604 * @param serviceNames Map of service names
608 Map serviceNames) throws SMSException {
610 ocm.setAttributes(IdConstants.REPO_SERVICE, (Map) serviceNames.get(IdConstants.REPO_SERVICE));
607 updateConfiguredServices(OrganizationConfigManager ocm, Map serviceNames) argument
/forgerock/openam/openam-test/src/test/java/com/sun/identity/cli/schema/
H A DSchemaTest.java122 List<String> serviceNames = new ArrayList<String>();
123 serviceNames.add(TEST_SERVICE);
124 deleteServices(serviceNames);
1672 private void deleteServices(List<String> serviceNames) throws CLIException { argument
1673 String[] args = new String[serviceNames.size() +2];
1677 for (String xml : serviceNames) {
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeServiceSchemaStep.java153 private Set<String> listNewServices(Set<String> serviceNames, Set<String> existingServices) { argument
154 Set<String> newServiceNames = new HashSet<String>(serviceNames);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceManager.java125 protected static CachedSubEntries serviceNames; field in class:ServiceManager
244 if (serviceNames == null) {
245 serviceNames = CachedSubEntries.getInstance(token, serviceDN);
247 return (serviceNames.getSubEntries(token));
450 if (serviceNames == null) {
451 serviceNames = CachedSubEntries.getInstance(token,
454 serviceNames.add(name);
557 if (serviceNames == null) {
558 serviceNames = CachedSubEntries.getInstance(token,
561 serviceNames
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/idm/model/
H A DEntitiesModel.java341 * @param serviceNames Set of service names to be unassigned.
344 void unassignServices(String universalId, Set serviceNames) argument
H A DEntitiesModelImpl.java1322 Set serviceNames = amid.getAssignedServices();
1327 serviceNames.remove(AMAdminConstants.USER_SERVICE);
1328 serviceNames.remove(AMAdminConstants.AUTH_CONFIG_SERVICE);
1331 assigned = getLocalizedServiceNames(serviceNames);
1377 Set serviceNames = amid.getAssignableServices();
1384 serviceNames.remove(AMAdminConstants.USER_SERVICE);
1385 serviceNames.remove(AMAdminConstants.AUTH_CONFIG_SERVICE);
1386 serviceNames.remove(AMAdminConstants.SAML_SERVICE);
1388 discardServicesWithoutAttributeSchema(serviceNames, amid);
1389 assignable = getLocalizedServiceNames(serviceNames);
1408 discardServicesWithoutAttributeSchema( Set serviceNames, AMIdentity amid ) argument
1439 getLocalizedServiceNames(Set serviceNames) argument
1595 unassignServices(String universalId, Set serviceNames) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/idm/model/
H A DEntitiesModel.java341 * @param serviceNames Set of service names to be unassigned.
344 void unassignServices(String universalId, Set serviceNames) argument
H A DEntitiesModelImpl.java1322 Set serviceNames = amid.getAssignedServices();
1327 serviceNames.remove(AMAdminConstants.USER_SERVICE);
1328 serviceNames.remove(AMAdminConstants.AUTH_CONFIG_SERVICE);
1331 assigned = getLocalizedServiceNames(serviceNames);
1377 Set serviceNames = amid.getAssignableServices();
1384 serviceNames.remove(AMAdminConstants.USER_SERVICE);
1385 serviceNames.remove(AMAdminConstants.AUTH_CONFIG_SERVICE);
1386 serviceNames.remove(AMAdminConstants.SAML_SERVICE);
1388 discardServicesWithoutAttributeSchema(serviceNames, amid);
1389 assignable = getLocalizedServiceNames(serviceNames);
1408 discardServicesWithoutAttributeSchema( Set serviceNames, AMIdentity amid ) argument
1439 getLocalizedServiceNames(Set serviceNames) argument
1595 unassignServices(String universalId, Set serviceNames) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DServiceManager.java125 protected static CachedSubEntries serviceNames; field in class:ServiceManager
244 if (serviceNames == null) {
245 serviceNames = CachedSubEntries.getInstance(token, serviceDN);
247 return (serviceNames.getSubEntries(token));
450 if (serviceNames == null) {
451 serviceNames = CachedSubEntries.getInstance(token,
454 serviceNames.add(name);
557 if (serviceNames == null) {
558 serviceNames = CachedSubEntries.getInstance(token,
561 serviceNames
[all...]

Completed in 3646 milliseconds

123