Class CompositeMetadataResolver
java.lang.Object
net.shibboleth.shared.component.AbstractInitializableComponent
net.shibboleth.shared.component.AbstractIdentifiedInitializableComponent
net.shibboleth.shared.component.AbstractIdentifiableInitializableComponent
org.opensaml.saml.metadata.resolver.impl.CompositeMetadataResolver
- All Implemented Interfaces:
Component,DestructableComponent,IdentifiableComponent,IdentifiedComponent,InitializableComponent,Resolver<EntityDescriptor,,CriteriaSet> ClearableMetadataResolver,MetadataResolver,RefreshableMetadataResolver
public class CompositeMetadataResolver
extends AbstractIdentifiableInitializableComponent
implements MetadataResolver, RefreshableMetadataResolver, ClearableMetadataResolver
A
MetadataResolver implementation that answers requests by composing the answers of child
MetadataResolvers.
Note: This appears to be unused, and contained a number of bugs that may or may not have been fully corrected.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static class -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final org.slf4j.LoggerClass logger.private List<MetadataResolver>Resolvers composed by this resolver.private StringResolver type. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Attempt to clear all data from the internal cache of the resolver.voidAttempt to clear data from the internal cache of the resolver for the specified entityID.Gets the reason the last refresh failed.Gets the time the last refresh cycle occurred.Gets the time the last successful refresh cycle occurred.Get the time that the currently available metadata was last updated.Gets the metadata filter applied to the metadata.Gets an immutable the list of currently registered resolvers.getType()Gets the type of resolver for reporting or logging purposes.booleanGets whether the metadata returned by queries must be valid.voidrefresh()Refresh the data exposed by the resolver.resolve(CriteriaSet criteria) resolveSingle(CriteriaSet criteria) voidsetMetadataFilter(MetadataFilter newFilter) Sets the metadata filter applied to the metadata.voidsetRequireValidMetadata(boolean requireValidMetadata) Sets whether the metadata returned by queries must be valid.voidsetResolvers(List<MetadataResolver> newResolvers) Sets the current set of metadata resolvers.voidSets the type of this resolver for reporting/logging.Gets whether the last refresh cycle was successful.Methods inherited from class net.shibboleth.shared.component.AbstractIdentifiableInitializableComponent
setIdMethods inherited from class net.shibboleth.shared.component.AbstractIdentifiedInitializableComponent
doInitialize, ensureId, getId, ifDestroyedThrowDestroyedComponentException, ifInitializedThrowUnmodifiabledComponentException, ifNotInitializedThrowUninitializedComponentExceptionMethods inherited from class net.shibboleth.shared.component.AbstractInitializableComponent
checkComponentActive, checkSetterPreconditions, destroy, doDestroy, initialize, isDestroyed, isInitializedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.shibboleth.shared.component.IdentifiedComponent
getId
-
Field Details
-
log
@Nonnull private final org.slf4j.Logger logClass logger. -
resolverType
Resolver type. -
resolvers
Resolvers composed by this resolver.
-
-
Constructor Details
-
CompositeMetadataResolver
public CompositeMetadataResolver()Constructor.
-
-
Method Details
-
getResolvers
Gets an immutable the list of currently registered resolvers.- Returns:
- list of currently registered resolvers
-
setResolvers
Sets the current set of metadata resolvers.- Parameters:
newResolvers- the metadata resolvers to use- Throws:
ResolverException- thrown if there is a problem adding the metadata provider
-
getType
Gets the type of resolver for reporting or logging purposes.- Specified by:
getTypein interfaceMetadataResolver- Returns:
- resolver type
-
setType
Sets the type of this resolver for reporting/logging.- Parameters:
type- type to set- Since:
- 5.0.0
-
isRequireValidMetadata
public boolean isRequireValidMetadata()Gets whether the metadata returned by queries must be valid.At a minimum, metadata is valid only if the date expressed in the
validUntilattribute of the element and all its ancestral elements has not passed. Specific implementations may add additional constraints.- Specified by:
isRequireValidMetadatain interfaceMetadataResolver- Returns:
- whether the metadata returned by queries must be valid
-
setRequireValidMetadata
public void setRequireValidMetadata(boolean requireValidMetadata) Sets whether the metadata returned by queries must be valid.- Specified by:
setRequireValidMetadatain interfaceMetadataResolver- Parameters:
requireValidMetadata- whether the metadata returned by queries must be valid
-
getMetadataFilter
Gets the metadata filter applied to the metadata.- Specified by:
getMetadataFilterin interfaceMetadataResolver- Returns:
- the metadata filter applied to the metadata
-
setMetadataFilter
Sets the metadata filter applied to the metadata.- Specified by:
setMetadataFilterin interfaceMetadataResolver- Parameters:
newFilter- the metadata filter applied to the metadata
-
clear
Attempt to clear all data from the internal cache of the resolver.- Specified by:
clearin interfaceClearableMetadataResolver- Throws:
ResolverException- if the clear operation was unsuccessful
-
clear
Attempt to clear data from the internal cache of the resolver for the specified entityID.- Specified by:
clearin interfaceClearableMetadataResolver- Parameters:
entityID- the target entityID- Throws:
ResolverException- if the clear operation was unsuccessful
-
refresh
Refresh the data exposed by the resolver.An implementation of this method should typically be either
synchronizedor make use other locking mechanisms to protect against concurrent access.- Specified by:
refreshin interfaceRefreshableMetadataResolver- Throws:
ResolverException- if the refresh operation was unsuccessful
-
getLastUpdate
Get the time that the currently available metadata was last updated. Note, this may be different than the time retrieved byRefreshableMetadataResolver.getLastRefresh()is the metadata was known not to have changed during the last refresh cycle.- Specified by:
getLastUpdatein interfaceRefreshableMetadataResolver- Returns:
- time when the currently metadata was last updated, null if metadata has never successfully been read in
-
getLastRefresh
Gets the time the last refresh cycle occurred.- Specified by:
getLastRefreshin interfaceRefreshableMetadataResolver- Returns:
- time the last refresh cycle occurred
-
getLastSuccessfulRefresh
Gets the time the last successful refresh cycle occurred.- Specified by:
getLastSuccessfulRefreshin interfaceRefreshableMetadataResolver- Returns:
- time the last successful refresh cycle occurred
-
wasLastRefreshSuccess
Gets whether the last refresh cycle was successful.- Specified by:
wasLastRefreshSuccessin interfaceRefreshableMetadataResolver- Returns:
- true if last refresh cycle was successful, false if not
-
getLastFailureCause
Gets the reason the last refresh failed.- Specified by:
getLastFailureCausein interfaceRefreshableMetadataResolver- Returns:
- reason the last refresh failed or null if the last refresh was successful
-