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

...

The <Column> element specifies a mapping from a column in a database table or an attribute in an LDAP result set to an alternative IdPAttribute ID. In most cases this is equivalent to aliasing a result column in a SQL statement, but may be clearer to look at, and in the case of LDAP it provides the missing aliasing capability.

Reference

localtab-live
Localtabgroup
Expand
titleXML Attributes

Each <Column> element MUST have two attributes:

Name

Type

Description

columnName 

string

Column name in the result set coming from the database or attribute coming from LDAP

attributeID 

string

Identifier to give the IdPAttribute representing the column or attribute

Example

Code Block
languagexml
<Column columnName="homephone" attributeID="phonenumber" />
<Column columnName="prenom" attributeID="firstname" />

...