Class AbstractEntityDescriptorFactoryBean<T extends AbstractEntityDescriptorBuilder<?>>

    • Constructor Detail

      • AbstractEntityDescriptorFactoryBean

        public AbstractEntityDescriptorFactoryBean()
    • Method Detail

      • _builder

        protected abstract T _builder()
        Returns the internal builder of the correct type.
        Returns:
        the builder to use
      • setEntityID

        public void setEntityID​(String entityID)
        Assigns the entityID for the EntityDescriptor.
        Parameters:
        entityID - the entityID
      • setID

        public void setID​(String id)
        Assigns the ID attribute for the EntityDescriptor.
        Parameters:
        id - the ID
      • setCacheDuration

        public void setCacheDuration​(Long cacheDuration)
        Assigns the cacheDuration attribute for the EntityDescriptor.
        Parameters:
        cacheDuration - the cache duration (in milliseconds)
      • setValidUntil

        public void setValidUntil​(Instant time)
        Assigns the valid until time.
        Parameters:
        time - valid until
      • setEntityAttributesExtension

        public void setEntityAttributesExtension​(List<Attribute> attributes)
        Adds attributes to the mdattr:EntityAttributes element that is part of the metadata extension element.
        Parameters:
        attributes - a list of attributes
        See Also:
        setEntityCategories(List)
      • setEntityCategories

        public void setEntityCategories​(List<String> entityCategories)
        Adds a set of entity categories to the entity category attribute (http://macedir.org/entity-category) that is part of the mdattr:EntityAttributes element that is part of the metadata extension element.
        Parameters:
        entityCategories - the entity category values that should be added
        See Also:
        setEntityAttributesExtension(List)
      • setUiInfoExtension

        public void setUiInfoExtension​(UIInfo uiInfo)
        Assigns the mdui:UIInfo element as an extension to the role descriptor.
        Parameters:
        uiInfo - the UIInfo element (will be cloned before assignment)
      • setKeyDescriptors

        public void setKeyDescriptors​(List<KeyDescriptor> keyDescriptors)
        Adds the key descriptor elements.
        Parameters:
        keyDescriptors - the key descriptors
      • setSigningMethodsGlobal

        public void setSigningMethodsGlobal​(List<SigningMethod> signingMethods)
        Adds a ordered list of alg:SigningMethod elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the entity descriptor extensions element.
        Parameters:
        signingMethods - the methods to add
        See Also:
        setSigningMethodsRole(List)
      • setSigningMethodsRole

        public void setSigningMethodsRole​(List<SigningMethod> signingMethods)
        Adds a ordered list of alg:SigningMethod elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the extensions element of the role descriptor. These extensions have precedence over those given as extensions to the entity descriptor (see setSigningMethodsGlobal(List)).
        Parameters:
        signingMethods - the methods to add
      • setDigestMethodsGlobal

        public void setDigestMethodsGlobal​(List<DigestMethod> digestMethods)
        Adds a ordered list of alg:DigestMethod elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the entity descriptor extensions element.
        Parameters:
        digestMethods - the methods to add
        See Also:
        setDigestMethodsRole(List)
      • setDigestMethodsRole

        public void setDigestMethodsRole​(List<DigestMethod> digestMethods)
        Adds a ordered list of alg:DigestMethod elements according to "SAML v2.0 Metadata Profile for Algorithm Support Version 1.0" to the extensions element of the role descriptor. These extensions have precedence over those given as extensions to the entity descriptor (see setDigestMethodsGlobal(List)).
        Parameters:
        digestMethods - the methods to add
      • setNameIDFormats

        public void setNameIDFormats​(List<String> nameIDFormats)
        Assigns the md:NameIDFormat elements.
        Parameters:
        nameIDFormats - the nameID format strings
      • setSingleLogoutServices

        public void setSingleLogoutServices​(List<SingleLogoutService> singleLogoutServices)
        Adds md:SingleLogoutService elements to the SSODescriptor.
        Parameters:
        singleLogoutServices - single logout service objects (cloned before assignment)
      • setOrganization

        public void setOrganization​(Organization organization)
        Assigns the Organization element to the entity descriptor.
        Parameters:
        organization - the organization (will be cloned before assignment)
      • setContactPersons

        public void setContactPersons​(List<ContactPerson> contactPersons)
        Assigns the ContactPerson elements to the entity descriptor.
        Parameters:
        contactPersons - the contact person elements (will be cloned before assignment)
      • getObjectType

        public Class<?> getObjectType()
        Specified by:
        getObjectType in interface org.springframework.beans.factory.FactoryBean<T extends AbstractEntityDescriptorBuilder<?>>
        Specified by:
        getObjectType in class org.springframework.beans.factory.config.AbstractFactoryBean<EntityDescriptor>