The Shibboleth V2 IdP and SP software have reached End of Life and are no longer supported. This documentation is available for historical purposes only. See the IDP v4 and SP v3 wiki spaces for current documentation on the supported versions.

IdPFilterRequirementAttributeRequesterEntityAttributeRegexMatch

Attribute Requester Entity Attribute Regular Expression Matching Rule

This matching rules evaluates to true if the attribute requester's metadata contains an Entity Attribute that has a value that matches a given regular expression.

This filter requires that the metadata for the attribute issuer is loaded and available.
This filter only operates on Attribute elements within the EntityAttributes, it does not use any Assertion elements.

Define the Rule

This rule is defined by the element <PolicyRequirementRule xsi:type="saml:AttributeRequesterEntityAttributeRegexMatch">, for policy requirements rules, and <PermitValueRule xsi:type="saml:AttributeRequesterEntityAttributeRegexMatch">, for permit value rules, with the following required attributes:

  • attributeName - the name of the entity attribute
  • attributeValueRegex - the regular expression an entity attribute value must match

This rule also supports the following optional attribute:

  • attributeNameFormat - the name format the entity attribute must have; otherwise any format is accepted
Example Policy Requirement Rule using the AttributeRequesterEntityAttributeRegexMatch Function
<PolicyRequirementRule xsi:type="saml:AttributeRequesterEntityAttributeRegexMatch" 
                       attributeName="urn:example.org:policy"
                       attributeValueRegex="^urn:example\.org:policy:[^:]*$" />