Versions Compared

Key

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

...

Code Block
languagexml
titleExample 1: Releasing attributes to R&S SPs registered by InCommon
<!-- for Shibboleth IdP V3.2.0 or later -->
<!-- policy relies on two entity attributes -->

<afp:PolicyRequirementRule xsi:type="AND">

  <Rule xsi:type="EntityAttributeExactMatch"
      attributeName="http://macedir.org/entity-category"
      attributeValue="http://refeds.org/category/research-and-scholarship"/>

  <Rule xsi:type="EntityAttributeExactMatch"
      attributeName="http://macedir.org/entity-category"
      attributeValue="http://id.incommon.org/category/registered-by-incommon"/>

</afp:PolicyRequirementRule>
Code Block
languagexml
titleExample 2: Releasing attributes to R&S SPs registered by InCommon
<!-- for Shibboleth IdP V3.2.0 or later -->

<!-- policy relies on an entity attribute and the RegistrationInfo element -->

<afp:PolicyRequirementRule xsi:type="AND">

  <Rule xsi:type="EntityAttributeExactMatch"
      attributeName="http://macedir.org/entity-category"
      attributeValue="http://refeds.org/category/research-and-scholarship"/>

  <Rule xsi:type="RegistrationAuthority" registrars="https://incommon.org"/>

</afp:PolicyRequirementRule>

...