Searched defs:attributeValues (Results 76 - 79 of 79) sorted by relevance

1234

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DAgentConfiguration.java259 Map attributeValues = parseAttributeMap(agentType, attrValues);
261 if (attributeValues.containsKey(ATTR_NAME_PWD)) {
268 attributeValues.put(IdConstants.AGENT_TYPE, setAgentType);
271 inheritedValues.putAll(attributeValues);
434 Map attributeValues = parseAttributeMap(agentType, attrValues);
437 attributeValues.put(IdConstants.AGENT_TYPE, setAgentType);
440 inheritedValues.putAll(attributeValues);
447 tagswapAttributeValues(attributeValues, map);
455 tagswapAttributeValues(attributeValues, map);
538 * For the given map of user supplied attributeValues, us
550 removeDefaultDuplicates(Map<String, Set<String>> attributeValues, Map<String, Set<String>> finalAttributes) argument
567 tagswapAttributeValues( Map attributeValues, String agentType, FQDNUrl serverURL, FQDNUrl agentURL ) argument
652 tagswapAttributeValues( Map attributeValues, Map tagswapInfo) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/
H A DAssuredReplicationPluginTest.java74 private Map<String, Long> attributeValues = new HashMap<>(); field in class:AssuredReplicationPluginTest.MonitorAssertions
87 attributeValues.put(attribute, getMonitorAttrValue(baseDN, attribute));
93 assertEquals(attributeValues.remove(attribute), (Long) expected);
100 while (!(keySet = attributeValues.keySet()).isEmpty())
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DAgentConfiguration.java264 Map attributeValues = parseAttributeMap(agentType, attrValues);
266 if (attributeValues.containsKey(ATTR_NAME_PWD)) {
273 attributeValues.put(IdConstants.AGENT_TYPE, setAgentType);
276 inheritedValues.putAll(attributeValues);
439 Map attributeValues = parseAttributeMap(agentType, attrValues);
442 attributeValues.put(IdConstants.AGENT_TYPE, setAgentType);
445 inheritedValues.putAll(attributeValues);
464 tagswapAttributeValues(attributeValues, map);
547 * For the given map of user supplied attributeValues, use the keys to find duplicate default
556 * @param attributeValues
559 removeDefaultDuplicates(Map<String, Set<String>> attributeValues, Map<String, Set<String>> finalAttributes) argument
576 tagswapAttributeValues( Map attributeValues, String agentType, FQDNUrl serverURL, FQDNUrl agentURL ) argument
661 tagswapAttributeValues( Map attributeValues, Map tagswapInfo) argument
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsServerPropertiesResource.java937 Map<String, String> attributeValues = new HashMap<>();
939 addAttributeValues(content, attributeValues);
940 removeUnusedAdvancedAttributes(token, attributeValues.keySet(), SERVER_DEFAULT_NAME);
943 addAttributeValues(content.get(sectionName), attributeValues);
948 setServerInstance(token, SERVER_DEFAULT_NAME, attributeValues);
994 Map<String, String> attributeValues = new HashMap<>();
998 addAttributeValues(content, attributeValues);
999 removeUnusedAdvancedAttributes(token, attributeValues.keySet(), serverUrl);
1002 addAttributesAndInheritanceValues(content.get(sectionName), attributeValues, inheritedAttributeNames);
1009 setServerInstance(token, serverUrl, attributeValues);
1022 addAttributeValues(JsonValue attributes, Map<String, String> attributeValues) argument
1028 addAttributesAndInheritanceValues(JsonValue attributes, Map<String, String> attributeValues, Set<String> inheritedAttributeNames) argument
[all...]

Completed in 37 milliseconds

1234