Class JsonResponseProcessor

  • All Implemented Interfaces:
    ITraverseProcessor

    public class JsonResponseProcessor
    extends jadex.transformation.jsonserializer.processors.AbstractJsonProcessor
    jax.rs.Response processor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected boolean isApplicable​(java.lang.Object object, java.lang.reflect.Type type, java.lang.ClassLoader targetcl, jadex.transformation.jsonserializer.processors.JsonReadContext context)
      Test if the processor is applicable for reading.
      protected boolean isApplicable​(java.lang.Object object, java.lang.reflect.Type type, java.lang.ClassLoader targetcl, jadex.transformation.jsonserializer.processors.JsonWriteContext context)
      Test if the processor is applicable for writing.
      protected java.lang.Object readObject​(java.lang.Object object, java.lang.reflect.Type type, Traverser traverser, java.util.List<ITraverseProcessor> conversionprocessors, java.util.List<ITraverseProcessor> processors, IStringConverter converter, Traverser.MODE mode, java.lang.ClassLoader targetcl, jadex.transformation.jsonserializer.processors.JsonReadContext context)
      Read an object.
      protected java.lang.Object writeObject​(java.lang.Object object, java.lang.reflect.Type type, Traverser traverser, java.util.List<ITraverseProcessor> conversionprocessors, java.util.List<ITraverseProcessor> processors, IStringConverter converter, Traverser.MODE mode, java.lang.ClassLoader targetcl, jadex.transformation.jsonserializer.processors.JsonWriteContext context)
      Write an object.
      • Methods inherited from class jadex.transformation.jsonserializer.processors.AbstractJsonProcessor

        isApplicable, process
      • Methods inherited from class java.lang.Object

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

      • JsonResponseProcessor

        public JsonResponseProcessor()
    • Method Detail

      • isApplicable

        protected boolean isApplicable​(java.lang.Object object,
                                       java.lang.reflect.Type type,
                                       java.lang.ClassLoader targetcl,
                                       jadex.transformation.jsonserializer.processors.JsonReadContext context)
        Test if the processor is applicable for reading.
        Specified by:
        isApplicable in class jadex.transformation.jsonserializer.processors.AbstractJsonProcessor
        Parameters:
        object - The object.
        targetcl - If not null, the traverser should make sure that the result object is compatible with the class loader, e.g. by cloning the object using the class loaded from the target class loader.
        Returns:
        True, if is applicable.
      • isApplicable

        protected boolean isApplicable​(java.lang.Object object,
                                       java.lang.reflect.Type type,
                                       java.lang.ClassLoader targetcl,
                                       jadex.transformation.jsonserializer.processors.JsonWriteContext context)
        Test if the processor is applicable for writing.
        Specified by:
        isApplicable in class jadex.transformation.jsonserializer.processors.AbstractJsonProcessor
        Parameters:
        object - The object.
        targetcl - If not null, the traverser should make sure that the result object is compatible with the class loader, e.g. by cloning the object using the class loaded from the target class loader.
        Returns:
        True, if is applicable.
      • readObject

        protected java.lang.Object readObject​(java.lang.Object object,
                                              java.lang.reflect.Type type,
                                              Traverser traverser,
                                              java.util.List<ITraverseProcessor> conversionprocessors,
                                              java.util.List<ITraverseProcessor> processors,
                                              IStringConverter converter,
                                              Traverser.MODE mode,
                                              java.lang.ClassLoader targetcl,
                                              jadex.transformation.jsonserializer.processors.JsonReadContext context)
        Read an object.
        Specified by:
        readObject in class jadex.transformation.jsonserializer.processors.AbstractJsonProcessor
        Parameters:
        object - The object.
        targetcl - If not null, the traverser should make sure that the result object is compatible with the class loader, e.g. by cloning the object using the class loaded from the target class loader.
        Returns:
        The processed object.
      • writeObject

        protected java.lang.Object writeObject​(java.lang.Object object,
                                               java.lang.reflect.Type type,
                                               Traverser traverser,
                                               java.util.List<ITraverseProcessor> conversionprocessors,
                                               java.util.List<ITraverseProcessor> processors,
                                               IStringConverter converter,
                                               Traverser.MODE mode,
                                               java.lang.ClassLoader targetcl,
                                               jadex.transformation.jsonserializer.processors.JsonWriteContext context)
        Write an object.
        Specified by:
        writeObject in class jadex.transformation.jsonserializer.processors.AbstractJsonProcessor
        Parameters:
        object - The object.
        targetcl - If not null, the traverser should make sure that the result object is compatible with the class loader, e.g. by cloning the object using the class loaded from the target class loader.
        Returns:
        The processed object.