Versions Compared

Key

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

The Include MetadataFilter, identified by type="WhitelistInclude", deletes metadata for any entity not matched inside the plugin's configuration.As of V3.2, this type name is deprecated in favor of Include and the original name

Note

The original name of this filter type was "Whitelist", support for which will be removed in a future release.

Attributes

One attribute may be specified: matcher specifies an EntityMatcher plugin to use to identify the entities to include, allowing more flexible matching. Additional content will be included based on the type of plugin (see associated documentation).

...

Code Block
languagexml
titleSimple Whitelist
<MetadataFilter type="WhitelistInclude">
    <Include>https://idp.goodguy.com/shibboleth</Include>
</MetadataFilter>
Code Block
languagexml
titleExtended Example
<MetadataFilter type="WhitelistInclude" matcher="EntityAttributes">
    <saml:Attribute Name="http://macedir.org/entity-category-support" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:uri">
        <saml:AttributeValue>http://refeds.org/category/research-and-scholarship</saml:AttributeValue>
    </saml:Attribute>
</MetadataFilter>