Class CustomListConverter

  • All Implemented Interfaces:
    com.thoughtworks.xstream.converters.Converter, com.thoughtworks.xstream.converters.ConverterMatcher

    public class CustomListConverter
    extends com.thoughtworks.xstream.converters.collections.CollectionConverter
    A custom List converter that always uses ArrayList for unmarshalling. This is probably not semantically correct 100% of the time, but it's likely fine for all the cases where we are using marshalling / unmarshalling. The reason for doing this is to avoid XStream causing illegal access issues for internal JDK lists
    • Constructor Detail

      • CustomListConverter

        public CustomListConverter​(com.thoughtworks.xstream.mapper.Mapper mapper)
    • Method Detail

      • canConvert

        public boolean canConvert​(Class type)
        Specified by:
        canConvert in interface com.thoughtworks.xstream.converters.ConverterMatcher
        Overrides:
        canConvert in class com.thoughtworks.xstream.converters.collections.CollectionConverter
      • createCollection

        protected Object createCollection​(Class type)
        Overrides:
        createCollection in class com.thoughtworks.xstream.converters.collections.CollectionConverter