Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Loading status checks…
Finalized 201.4
John Gasper
committed
Oct 8, 2018
1 parent
5596a21
commit 89b0c2f
Showing
4 changed files
with
73 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
This file is an EXAMPLE policy file. While the policy presented in this | ||
example file is illustrative of some simple cases, it relies on the names of | ||
non-existent example services and the example attributes demonstrated in the | ||
default attribute-resolver.xml file. | ||
Deployers should refer to the documentation for a complete list of components | ||
and their options. | ||
--> | ||
<AttributeFilterPolicyGroup id="ShibbolethFilterPolicy" | ||
xmlns="urn:mace:shibboleth:2.0:afp" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="urn:mace:shibboleth:2.0:afp http://shibboleth.net/schema/idp/shibboleth-afp.xsd"> | ||
|
||
<!-- Release some attributes to an SP. --> | ||
|
||
<AttributeFilterPolicy id="grouper"> | ||
<PolicyRequirementRule xsi:type="Requester" value="https://grouperdemo/shibboleth" /> | ||
|
||
<AttributeRule attributeID="cn"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="eduPersonAffiliation"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="eduPersonPrimaryAffiliation"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="eduPersonEntitlement"> | ||
<PermitValueRule xsi:type="Value" value="http://sp.example.org/wiki" ignoreCase="true" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="eduPersonPrincipalName"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="eduPersonScopedAffiliation"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="employeeNumber"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="givenName"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="mail"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="surname"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
<AttributeRule attributeID="uid"> | ||
<PermitValueRule xsi:type="ANY" /> | ||
</AttributeRule> | ||
|
||
</AttributeFilterPolicy> | ||
</AttributeFilterPolicyGroup> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters