Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  • nameFormat - this becomes the Format attribute on the created SAML 1 <NameIdentifier> element; defaults to urn:oasis:names:tc:SAML:1.0:nameid-format:unspecified
  • nameQualifier - this becomes the NameQualifier attribute on the created SAML 1 <NameIdentifier> element; this attribute is optional
Code Block
xml
xml
titleSAML 1 String NameIdentifier Encoder, without optional attributes, within a Principal Name Attribute Definitionxml
<resolver:AttributeDefinition id="UNIQUE_ID" xsi:type="ad:PrincipalName">

     <resolver:AttributeEncoder xsi:type="enc:SAML1StringNameIdentifier" />

</resolver:AttributeDefinition>
Code Block
xml
xml
titleSAML 1 String NameIdentifier Encoder, with attributes, within a Principal Name Attribute Definitionxml
<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>

...