Interface JsonSerializer<T,S>

All Known Implementing Classes:
AbstractJsonSerializerBean, DefaultJsonSerializer, ExceptionJsonSerializer

public interface JsonSerializer<T,S>
An interface for converting objects of a specified type (T) into a serialized Json format (of type S).
Author:
Nick Smith
  • Method Summary

    Modifier and Type
    Method
    Description
    deserialize(S object)
     
    serialize(T object)
     
  • Method Details

    • serialize

      S serialize(T object)
    • deserialize

      T deserialize(S object)