Searched refs:mappedAttributes (Results 1 - 18 of 18) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml2/common/
H A DSAML2UtilsTest.java68 Map<String, String> mappedAttributes = SAML2Utils.getMappedAttributes(mappings);
70 assertThat(mappedAttributes).isNotNull().hasSize(5);
71 assertThat(mappedAttributes).containsEntry("name1", "value");
72 assertThat(mappedAttributes).containsEntry("name2", "\"static value\"");
73 assertThat(mappedAttributes).containsEntry("name3", "\"static cn=value\"");
74 assertThat(mappedAttributes).containsEntry("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|urn:mace:dir:attribute-def:name4", "value");
75 assertThat(mappedAttributes).containsEntry("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|name5", "\"static value\"");
/forgerock/openam/openam-federation/openam-federation-library/src/test/java/com/sun/identity/saml2/common/
H A DSAML2UtilsTest.java68 Map<String, String> mappedAttributes = SAML2Utils.getMappedAttributes(mappings);
70 assertThat(mappedAttributes).isNotNull().hasSize(5);
71 assertThat(mappedAttributes).containsEntry("name1", "value");
72 assertThat(mappedAttributes).containsEntry("name2", "\"static value\"");
73 assertThat(mappedAttributes).containsEntry("name3", "\"static cn=value\"");
74 assertThat(mappedAttributes).containsEntry("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|urn:mace:dir:attribute-def:name4", "value");
75 assertThat(mappedAttributes).containsEntry("urn:oasis:names:tc:SAML:2.0:attrname-format:uri|name5", "\"static value\"");
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultAttributeMapper.java113 List mappedAttributes =
116 if(mappedAttributes == null || mappedAttributes.size() == 0) {
125 for(Iterator iter = mappedAttributes.iterator(); iter.hasNext();) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultAttributeMapper.java113 List mappedAttributes =
116 if(mappedAttributes == null || mappedAttributes.size() == 0) {
125 for(Iterator iter = mappedAttributes.iterator(); iter.hasNext();) {
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DCreateHostedIDP.java118 List mappedAttributes = (List)attribConfig.get(
120 mappedAttributes.addAll(attrMapping);
H A DCreateHostedSP.java126 List mappedAttributes = (List) attribConfig.get(
128 mappedAttributes.addAll(attrMapping);
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DCreateHostedIDP.java118 List mappedAttributes = (List)attribConfig.get(
120 mappedAttributes.addAll(attrMapping);
H A DCreateHostedSP.java126 List mappedAttributes = (List) attribConfig.get(
128 mappedAttributes.addAll(attrMapping);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdServicesImpl.java449 Map mappedAttributes = mapAttributeNames(attrMap, cMap);
451 mappedAttributes);
1716 Map mappedAttributes = mapAttributeNames(attributes, cMap);
1720 idRepo.setAttributes(token, type, amsdkDN, mappedAttributes,
1724 mappedAttributes, isAdd);
1728 idRepo.setAttributes(token, type, name, mappedAttributes,
1732 mappedAttributes, isAdd);
1965 Map mappedAttributes= mapAttributeNames(attrMap, cMap);
1969 stype, mappedAttributes);
1972 mappedAttributes);
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdServicesImpl.java423 Map mappedAttributes = mapAttributeNames(attrMap, cMap);
425 mappedAttributes);
1690 Map mappedAttributes = mapAttributeNames(attributes, cMap);
1694 idRepo.setAttributes(token, type, amsdkDN, mappedAttributes,
1698 mappedAttributes, isAdd);
1702 idRepo.setAttributes(token, type, name, mappedAttributes,
1706 mappedAttributes, isAdd);
1939 Map mappedAttributes= mapAttributeNames(attrMap, cMap);
1943 stype, mappedAttributes);
1946 mappedAttributes);
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java3548 List<String> mappedAttributes = attributeConfig.get(SAML2Constants.ATTRIBUTE_MAP);
3550 if (mappedAttributes == null || mappedAttributes.isEmpty()) {
3558 return getMappedAttributes(mappedAttributes);
3569 * @param mappedAttributes a non-null list of strings in the form of name=value or name="static value"
3570 * @return a Map of name value pairs keyed off of the mapping name from the mappedAttributes list
3572 public static Map<String, String> getMappedAttributes(List<String> mappedAttributes) { argument
3574 if (mappedAttributes == null) {
3578 Map<String, String> attributeMap = new HashMap<>(mappedAttributes.size());
3580 for (String entry : mappedAttributes) {
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java3573 List<String> mappedAttributes = attributeConfig.get(SAML2Constants.ATTRIBUTE_MAP);
3575 if (mappedAttributes == null || mappedAttributes.isEmpty()) {
3583 return getMappedAttributes(mappedAttributes);
3594 * @param mappedAttributes a non-null list of strings in the form of name=value or name="static value"
3595 * @return a Map of name value pairs keyed off of the mapping name from the mappedAttributes list
3597 public static Map<String, String> getMappedAttributes(List<String> mappedAttributes) { argument
3599 if (mappedAttributes == null) {
3603 Map<String, String> attributeMap = new HashMap<>(mappedAttributes.size());
3605 for (String entry : mappedAttributes) {
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java427 private final SortedSet<AttributeType> mappedAttributes = new TreeSet<AttributeType>(); field in class:LDAPPassThroughAuthenticationPolicyTestCase.MockPolicyCfg
495 return mappedAttributes;
647 mappedAttributes.add(DirectoryServer.getAttributeType(
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java396 private final SortedSet<AttributeType> mappedAttributes = new TreeSet<AttributeType>(); field in class:LDAPPassThroughAuthenticationPolicyTestCase.MockPolicyCfg
469 return mappedAttributes;
621 mappedAttributes.add(DirectoryServer.getAttributeType(
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java428 private final SortedSet<AttributeType> mappedAttributes = new TreeSet<AttributeType>(); field in class:LDAPPassThroughAuthenticationPolicyTestCase.MockPolicyCfg
501 return mappedAttributes;
653 mappedAttributes.add(DirectoryServer.getAttributeType(
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java396 private final SortedSet<AttributeType> mappedAttributes = new TreeSet<AttributeType>(); field in class:LDAPPassThroughAuthenticationPolicyTestCase.MockPolicyCfg
469 return mappedAttributes;
621 mappedAttributes.add(DirectoryServer.getAttributeType(
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java427 private final SortedSet<AttributeType> mappedAttributes = new TreeSet<AttributeType>(); field in class:LDAPPassThroughAuthenticationPolicyTestCase.MockPolicyCfg
495 return mappedAttributes;
647 mappedAttributes.add(DirectoryServer.getAttributeType(
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java376 private final SortedSet<AttributeType> mappedAttributes = new TreeSet<>(); field in class:LDAPPassThroughAuthenticationPolicyTestCase.MockPolicyCfg
450 return mappedAttributes;
603 mappedAttributes.add(attrType);

Completed in 164 milliseconds