Class CustomMapConverter

java.lang.Object
com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter
com.thoughtworks.xstream.converters.collections.MapConverter
io.quarkus.test.junit.internal.CustomMapConverter
All Implemented Interfaces:
com.thoughtworks.xstream.converters.Converter, com.thoughtworks.xstream.converters.ConverterMatcher

public class CustomMapConverter extends com.thoughtworks.xstream.converters.collections.MapConverter
A custom Map converter that always uses HashMap 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 maps
  • Constructor Summary

    Constructors
    Constructor
    Description
    CustomMapConverter(com.thoughtworks.xstream.mapper.Mapper mapper)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    protected Object
     

    Methods inherited from class com.thoughtworks.xstream.converters.collections.MapConverter

    marshal, populateMap, populateMap, putCurrentEntryIntoMap, unmarshal

    Methods inherited from class com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter

    mapper, readBareItem, readCompleteItem, readItem, writeBareItem, writeCompleteItem, writeItem, writeNullItem

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • CustomMapConverter

      public CustomMapConverter(com.thoughtworks.xstream.mapper.Mapper mapper)
  • Method Details

    • 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.MapConverter
    • createCollection

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