Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Namespace: urn:mace:shibboleth:2.0:resolver
Schema: http://shibboleth.net/schema/idp/shibboleth-attribute-resolver.xsd

Table of Contents
maxLevel3

Overview

The Prescoped attribute definition AttributeDefinition turns a simple string-valued attribute input into a two-part scoped attribute values by splitting the input attribute values into three parts, the value, a (fixed) delimiter, and the scope/suffix.  Such attributes can be used as input to the SAML2ScopedStringEncoder and SAML1ScopedStringAttributeEncoder  attribute encoders.The prescoped attribute The resulting attribute's values are of type ScopedStringAttributeValue.

This definition is useful when a data connector DataConnector returns attributes with values which already have an appropriate delimiter and scope appended in the source system.toc

Reference

...

Expand

...

Configuration Reference

Attributes

...

titleSpecific XML Attributes

Name

Type

Default

Description

scopeDelimiter

String

@

Defines the delimiter which separates the value from the scope

...

Child Elements

...

within the input data

Expand
titleCommon XML Attributes
Include Page
AttributeDefinitionCommonAttributes
AttributeDefinitionCommonAttributes

Expand
titleCommon XML Elements
Include Page
AttributeDefinitionCommonChildElements
AttributeDefinitionCommonChildElements

Example

Code Block
languagexml
<AttributeDefinition xsi:type="Prescoped" id="eduPersonPrincipalName">
    <InputDataConnector ref="myLDAP" attributeNames="eduPersonPrincipalName" />
    <AttributeEncoder xsi:type="SAML1ScopedString" name="urn:mace:dir:attribute-def:eduPersonPrincipalName" encodeType="false" />
    <AttributeEncoder xsi:type="SAML2ScopedString" name="urn:oid:1.3.6.1.4.1.5923.1.1.1.6" friendlyName="eduPersonPrincipalName" encodeType="false" />
</AttributeDefinition>

...