Class MetadataFilterChain
java.lang.Object
net.shibboleth.shared.component.AbstractInitializableComponent
org.opensaml.saml.metadata.resolver.filter.AbstractMetadataFilter
org.opensaml.saml.metadata.resolver.filter.MetadataFilterChain
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,MetadataFilter
A filter that allows the composition of
MetadataFilters. Filters will be executed on the given metadata
document in the order they were added to the chain.-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate List<MetadataFilter>Registered filters.private org.slf4j.LoggerClass logger. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal XMLObjectfilter(XMLObject xmlObject, MetadataFilterContext context) Filters the given metadata, perhaps to remove elements that are not wanted.Get the list ofMetadataFilters that make up this chain.voidsetFilters(List<MetadataFilter> newFilters) Set the list ofMetadataFilters that make up this chain.Methods inherited from class org.opensaml.saml.metadata.resolver.filter.AbstractMetadataFilter
getType, setTypeMethods inherited from class net.shibboleth.shared.component.AbstractInitializableComponent
checkComponentActive, checkSetterPreconditions, destroy, doDestroy, doInitialize, ifDestroyedThrowDestroyedComponentException, ifInitializedThrowUnmodifiabledComponentException, ifNotInitializedThrowUninitializedComponentException, initialize, isDestroyed, isInitialized
-
Field Details
-
log
@Nonnull private org.slf4j.Logger logClass logger. -
filters
Registered filters.
-
-
Constructor Details
-
MetadataFilterChain
public MetadataFilterChain()Constructor.
-
-
Method Details
-
filter
@Nullable public final XMLObject filter(@Nullable XMLObject xmlObject, @Nonnull MetadataFilterContext context) throws FilterException Filters the given metadata, perhaps to remove elements that are not wanted.- Parameters:
xmlObject- the metadata to be filtered.context- the metadata filter context- Returns:
- the filtered XMLObject, which may or may not be the same as the XMLObject instance passed in to the method. Maybe be null, for example if the top-level element was removed by the filter.
- Throws:
FilterException- thrown if an error occurs during the filtering process
-
getFilters
Get the list ofMetadataFilters that make up this chain.- Returns:
- the filters that make up this chain
-
setFilters
Set the list ofMetadataFilters that make up this chain.- Parameters:
newFilters- list ofMetadataFilters that make up this chain
-