Uses of Interface
org.opensaml.saml.metadata.resolver.index.MetadataIndex
Package | Description |
---|---|
org.opensaml.saml.metadata.resolver.impl |
Classes for retrieving, filtering, and querying metadata.
|
org.opensaml.saml.metadata.resolver.index.impl |
Implementation of the metadata resolver indexes.
|
-
Uses of MetadataIndex in org.opensaml.saml.metadata.resolver.impl
Fields in org.opensaml.saml.metadata.resolver.impl with type parameters of type MetadataIndex Modifier and Type Field Description private Set<MetadataIndex>
AbstractBatchMetadataResolver. indexes
The set of indexes configured.private Set<MetadataIndex>
AbstractDynamicMetadataResolver. indexes
The set of indexes configured.Methods in org.opensaml.saml.metadata.resolver.impl that return types with arguments of type MetadataIndex Modifier and Type Method Description Set<MetadataIndex>
AbstractBatchMetadataResolver. getIndexes()
Get the configured indexes.Set<MetadataIndex>
AbstractDynamicMetadataResolver. getIndexes()
Get the configured indexes.Method parameters in org.opensaml.saml.metadata.resolver.impl with type arguments of type MetadataIndex Modifier and Type Method Description void
AbstractBatchMetadataResolver. setIndexes(Set<MetadataIndex> newIndexes)
Set the configured indexes.void
AbstractDynamicMetadataResolver. setIndexes(Set<MetadataIndex> newIndexes)
Set the configured indexes.Constructor parameters in org.opensaml.saml.metadata.resolver.impl with type arguments of type MetadataIndex Constructor Description BatchEntityBackingStore(Set<MetadataIndex> initIndexes)
Constructor.DynamicEntityBackingStore(Set<MetadataIndex> initIndexes)
Constructor. -
Uses of MetadataIndex in org.opensaml.saml.metadata.resolver.index.impl
Classes in org.opensaml.saml.metadata.resolver.index.impl that implement MetadataIndex Modifier and Type Class Description class
EndpointMetadataIndex
An implementation ofMetadataIndex
which indexes entities by their role endpoint locations.class
FunctionDrivenMetadataIndex
Implementation ofMetadataIndex
which is based on injected strategy functions.class
RoleMetadataIndex
An implementation ofMetadataIndex
which indexes entities by their roles.class
SAMLArtifactMetadataIndex
An implementation ofMetadataIndex
which indexes entities by their artifact SourceID values.Fields in org.opensaml.saml.metadata.resolver.index.impl with type parameters of type MetadataIndex Modifier and Type Field Description private Map<MetadataIndex,MetadataIndexStore<T>>
MetadataIndexManager. indexes
Storage for secondary indexes.Methods in org.opensaml.saml.metadata.resolver.index.impl that return types with arguments of type MetadataIndex Modifier and Type Method Description Set<MetadataIndex>
MetadataIndexManager. getIndexes()
Get the set of allMetadataIndex
instances currently initialized.Methods in org.opensaml.saml.metadata.resolver.index.impl with parameters of type MetadataIndex Modifier and Type Method Description protected MetadataIndexStore<T>
MetadataIndexManager. getStore(MetadataIndex index)
Get theMetadataIndexStore
for the specifiedMetadataIndex
.Constructor parameters in org.opensaml.saml.metadata.resolver.index.impl with type arguments of type MetadataIndex Constructor Description LockableMetadataIndexManager(Set<MetadataIndex> initIndexes, Function<EntityDescriptor,T> extractionFunction)
Constructor.MetadataIndexManager(Set<MetadataIndex> initIndexes, Function<EntityDescriptor,T> extractionFunction)
Constructor.