Class StringToXMLObjectConverter<T extends SAMLObject>

  • Type Parameters:
    T - the XML type
    All Implemented Interfaces:
    org.springframework.core.convert.converter.Converter<String,​T>

    public abstract class StringToXMLObjectConverter<T extends SAMLObject>
    extends Object
    implements org.springframework.core.convert.converter.Converter<String,​T>
    An abstract Spring converter class for transforming string values into OpenSAML objects.
    Author:
    Martin Lindström (martin.lindstrom@litsec.se)
    • Constructor Detail

      • StringToXMLObjectConverter

        public StringToXMLObjectConverter​(Class<T> clazz)
        Constructor.
        Parameters:
        clazz - the class name of the OpenSAML object to convert to
    • Method Detail

      • convert

        public T convert​(String source)
        Specified by:
        convert in interface org.springframework.core.convert.converter.Converter<String,​T extends SAMLObject>
      • assign

        protected abstract void assign​(T obj,
                                       String value)
        Assigns the given value to the OpenSAML object (after conversion).
        Parameters:
        obj - the OpenSAML object that we should assign the value to
        value - the value to assign