Class AbstractSAMLObjectBuilderFactoryBean<T extends SAMLObject>

    • Field Summary

      • Fields inherited from class org.springframework.beans.factory.config.AbstractFactoryBean

        logger
      • Fields inherited from interface org.springframework.beans.factory.FactoryBean

        OBJECT_TYPE_ATTRIBUTE
    • Constructor Detail

      • AbstractSAMLObjectBuilderFactoryBean

        public AbstractSAMLObjectBuilderFactoryBean()
    • Method Detail

      • createInstance

        protected T createInstance()
                            throws Exception
        The default implementation assumes that the object has been set up when elements and attributes were assigned, and simply returns the build object (if this is not a singleton bean, the object is cloned).
        Specified by:
        createInstance in class org.springframework.beans.factory.config.AbstractFactoryBean<T extends SAMLObject>
        Throws:
        Exception
      • toVarArgs

        protected static <V> V[] toVarArgs​(List<V> list,
                                           Class<V> cls)
        Utility method that transforms a list into a varargs array (for usage in calls to builder instances).
        Type Parameters:
        V - the type of objects stored in the array
        Parameters:
        list - the list to transform
        cls - the type of elements in the list
        Returns:
        an array
      • localizedStringListToVarArgs

        protected static LocalizedString[] localizedStringListToVarArgs​(List<LocalizedString> list)
        Utility method that transforms a list of LocalizedString objects into a varargs array (for usage in calls to builder instances).
        Parameters:
        list - the list to transform
        Returns:
        an array
      • stringListToVarArgs

        protected static String[] stringListToVarArgs​(List<String> list)
        Utility method that transforms a list of String objects into a varargs array (for usage in calls to builder instances).
        Parameters:
        list - the list to transform
        Returns:
        an array