Versions Compared

Key

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

...

Expand
titleAttribute Checking Examples
Code Block
languagexml
<!-- Check for a particular entitlement -->
<bean classparent="net.shibboleth.idp.profile.logic.SimpleAttributePredicateConditions.SimpleAttribute" p:useUnfilteredAttributes="true">
  <property name="attributeValueMap">
    <map>
      <entry key="entitlement">
        <list>
          <value>urn:mace:dir:entitlement:common-lib-terms</value>
        </list>
      </entry>
    </map>
  </property>
</bean>

<!-- Check that an eduPersonPrincipalName exists -->
<bean classparent="net.shibboleth.idp.profile.logic.SimpleAttributePredicateConditions.SimpleAttribute">
  <property name="attributeValueMap">
    <map>
      <entry key="eppn">
        <list>
          <value>*</value>
        </list>
      </entry>
    </map>
  </property>
</bean>

...