Class IdpEntityDescriptorFactoryBean

    • Constructor Detail

      • IdpEntityDescriptorFactoryBean

        public IdpEntityDescriptorFactoryBean()
        Constructor setting up the factory with no template. This means that the entire EntityDescriptor object is created from data assigned using set methods.
        See Also:
        IdpEntityDescriptorBuilder()
      • IdpEntityDescriptorFactoryBean

        public IdpEntityDescriptorFactoryBean​(org.springframework.core.io.Resource resource)
                                       throws XMLParserException,
                                              UnmarshallingException,
                                              IOException
        Constructor setting up the factory with a template EntityDescriptor that is read from a resource. Users of the bean may now change, add or delete (by using null values), the elements and attributes of the template object using the setter methods.
        Parameters:
        resource - the template resource
        Throws:
        IOException - if the resource can not be read
        UnmarshallingException - for unmarshalling errors
        XMLParserException - for XML parsing errors
      • IdpEntityDescriptorFactoryBean

        public IdpEntityDescriptorFactoryBean​(EntityDescriptor template)
                                       throws UnmarshallingException,
                                              MarshallingException
        Constructor setting up the factory with a template EntityDescriptor. Users of the bean may now change, add or delete (by using null values), the elements and attributes of the template object using the setter methods.
        Parameters:
        template - the template
        Throws:
        UnmarshallingException - for unmarshalling errors
        MarshallingException - for marshalling errors