Class AbstractMetadataProvider

    • Constructor Detail

      • AbstractMetadataProvider

        public AbstractMetadataProvider()
    • Method Detail

      • getLastUpdate

        public Instant getLastUpdate()
        Returns the time the currently available metadata was last updated.
        Specified by:
        getLastUpdate in interface MetadataProvider
        Returns:
        time when the currently metadata was last updated, or null if no metadata has been successfully loaded
      • refresh

        public void refresh()
                     throws ResolverException
        Refresh the metadata handled by the provider.

        An implementation that does not support refresh should implement this operation as a no-op. Implementations that do support refresh of metadata should typically be either synchronized or make use other locking mechanisms to protect against concurrent access.

        Specified by:
        refresh in interface MetadataProvider
        Throws:
        ResolverException - if the refresh operation was unsuccessful
      • createFilter

        protected MetadataFilter createFilter()
        Creates the filter(s) that this instance should be configured with.
        Returns:
        a metadata filter
      • destroyMetadataResolver

        protected abstract void destroyMetadataResolver()
        Destroys the metadata resolver.
      • setRequireValidMetadata

        public void setRequireValidMetadata​(boolean requireValidMetadata)
        Sets whether the metadata returned by queries must be valid.
        Parameters:
        requireValidMetadata - whether the metadata returned by queries must be valid
      • setFailFastInitialization

        public void setFailFastInitialization​(boolean failFast)
        Sets whether problems during initialization should cause the provider to fail or go on without metadata. The assumption being that in most cases a provider will recover at some point in the future.
        Parameters:
        failFast - whether problems during initialization should cause the provider to fail
      • setSignatureVerificationCertificate

        public void setSignatureVerificationCertificate​(X509Certificate signatureVerificationCertificate)
        Assigns the certificate that is to be used when verifying the signature on downloaded metadata. If this attribute is assigned the provider is configured to expect a valid signature on downloaded metadata.
        Parameters:
        signatureVerificationCertificate - the certificate to assign
      • setSignatureVerificationCertificates

        public void setSignatureVerificationCertificates​(List<X509Certificate> signatureVerificationCertificates)
        Assigns the certificates that are to be used when verifying the signature on downloaded metadata. If this attribute is assigned the provider is configured to expect a valid signature on downloaded metadata.

        The reason that more than one certificate may be assigned is that we want to be able to handle signing certificate updates in a smooth way.

        Parameters:
        signatureVerificationCertificates - the certificates to assign
      • getSignatureVerificationCertificates

        public List<X509Certificate> getSignatureVerificationCertificates()
        Gets the certificate that is to be used when verifying the signature on downloaded metadata.
        Returns:
        the certificates or null
      • setPerformSchemaValidation

        public void setPerformSchemaValidation​(boolean performSchemaValidation)
        Assigns whether XML schema validation should be performed on downloaded metadata.
        Parameters:
        performSchemaValidation - whether schema validation should be performed
      • setInclusionPredicates

        public void setInclusionPredicates​(List<Predicate<EntityDescriptor>> inclusionPredicates)
        Assigns a list of inclusion predicates that will be applied to downloaded metadata.
        Parameters:
        inclusionPredicates - predicates
        See Also:
        MetadataProviderPredicates
      • setExclusionPredicates

        public void setExclusionPredicates​(List<Predicate<EntityDescriptor>> exclusionPredicates)
        Assigns a list of exclusion predicates that will be applied to downloaded metadata.
        Parameters:
        exclusionPredicates - predicates
        See Also:
        MetadataProviderPredicates