SAML1StringNameIdentifierEncoder
SAML 1 String NameIdentifier Attribute Encoder
The SAML 1 string NameIdentifier encoder creates SAML 1 <NameIdentifier>
elements from resolved attributes. The content of the <NameIdentifier>
element is a string created by invoking the Object.toString() method on the first value of the resolved attribute. This encoder is only used for SAML 1 messages and will be ignored when the IdP is answering other protocol messages.
Define the Encoder
Attribute encoders are defined after any dependencies with an <resolver:AttributeDefinition>
. The SAML 1 string NameIdentifier encoders starts with the same <resolver:AttributeEncoder>
element as all other encoders and has a type of xsi:type="SAML1StringNameIdentifier"
. The <resolver:AttributeEncoder>
may also have the following the attributes:
nameFormat
- this becomes theFormat
attribute on the created SAML 1<NameIdentifier>
element; defaults to urn:oasis:names:tc:SAML:1.0:nameid-format:unspecifiednameQualifier
- this becomes theNameQualifier
attribute on the created SAML 1<NameIdentifier>
element; this attribute is optional
<resolver:AttributeDefinition id="UNIQUE_ID" xsi:type="ad:PrincipalName"> <resolver:AttributeEncoder xsi:type="enc:SAML1StringNameIdentifier" /> </resolver:AttributeDefinition>
<resolver:AttributeDefinition id="UNIQUE_ID" xsi:type="ad:PrincipalName"> <resolver:AttributeEncoder xsi:type="enc:SAML1StringNameIdentifier" nameFormat="IDENTIFIER_NAME_FORMAT" nameQualifier="IDENTIFIER_NAME_QUALIFIER" /> </resolver:AttributeDefinition>
Deployers that wish to use the same attribute to support the creation of NameIdentifier of multiple name formats may define multiple SAML 1 NameIdentifier encoders with differing formats.