Interface MetadataProvider

    • Method Detail

      • getID

        String getID()
        Returns the identifier for the provider.
        Returns:
        the identifier
      • getLastUpdate

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

        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.

        Throws:
        ResolverException - if the refresh operation was unsuccessful
      • iterator

        Iterable<EntityDescriptor> iterator()
        Returns an iterator for all entity descriptors held by the provider.
        Returns:
        an iterator for all entity descriptors
      • iterator

        Iterable<EntityDescriptor> iterator​(QName role)
        Returns an iterator for all entity descriptors having the given role.

        To list all IdP:s and SP:s do:

        
         idps = provider.iterator(IDPSSODescriptor.DEFAULT_ELEMENT_NAME);
         sps = provider.iterator(SPSSODescriptor.DEFAULT_ELEMENT_NAME);
         
        Parameters:
        role - role descriptor
        Returns:
        an iterator for all matching entity descriptors
        See Also:
        getIdentityProviders(), getServiceProviders()
      • getEntityDescriptor

        EntityDescriptor getEntityDescriptor​(String entityID)
                                      throws ResolverException
        Returns the entity descriptor identified by the given entityID.
        Parameters:
        entityID - the unique entityID for the entry
        Returns:
        an entity descriptor
        Throws:
        ResolverException - for underlying metadata errors
      • getSPSSODescriptor

        SPSSODescriptor getSPSSODescriptor​(String entityID)
                                    throws ResolverException
        A utility method that extracts the SP SSO descriptor from the Entity Descriptor identified by the supplied entityID.
        Parameters:
        entityID - the entityID for the Service Provider
        Returns:
        the SSO descriptor for the SP
        Throws:
        ResolverException - for underlying metadata errors
        See Also:
        getEntityDescriptor(String)
      • getIdentityProviders

        List<EntityDescriptor> getIdentityProviders()
                                             throws ResolverException
        Utility method that returns a list of entity descriptors for Identity Providers found in the metadata.
        Returns:
        a list of entity descriptors
        Throws:
        ResolverException - for metadata errors
      • getServiceProviders

        List<EntityDescriptor> getServiceProviders()
                                            throws ResolverException
        Utility method that returns a list of entity descriptors for Service Providers found in the metadata.
        Returns:
        a list of entity descriptors
        Throws:
        ResolverException - for metadata errors
      • getMetadataResolver

        MetadataResolver getMetadataResolver()
        Returns the underlying OpenSAML metadata resolver.
        Returns:
        OpenSAML metadata resolver