Description
The LDAP claim handler generates only a single value element for a claim with delimited values, even thou a claim also supports multiple distinct values.
This task is about to improve this behavior.
Old behavior sample: memberOf attribute from LDAP would be generated like this in the SAML token:
<saml2:AttributeStatement> <saml2:Attribute Name=".../05/identity/claims/role" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified"> <saml2:AttributeValue xsi:type="xs:string">admin;user;manager</saml2:AttributeValue> </saml2:Attribute> </saml2:AttributeStatement>
New behavior sample: memberOf attribute from LDAP would be generated like this in the SAML token:
<saml2:AttributeStatement> <saml2:Attribute Name=".../05/identity/claims/role" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified"> <saml2:AttributeValue xsi:type="xs:string">admin</saml2:AttributeValue> <saml2:AttributeValue xsi:type="xs:string">user</saml2:AttributeValue> <saml2:AttributeValue xsi:type="xs:string">manager</saml2:AttributeValue> </saml2:Attribute> </saml2:AttributeStatement>
Attachments
Issue Links
- is related to
-
CXF-4543 Encode multi value claims as multi-value saml attribute
- Closed