com.fasterxml.jackson.module.jsonorg.JSONBaseSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-module-json-org Show documentation
Show all versions of jackson-module-json-org Show documentation
Support for datatypes of "org.json" JSON library (see http://json.org/java),
mainly to make it easier to upgrade code to Jackson, using automated conversions.
The newest version!
package com.fasterxml.jackson.module.jsonorg;
import org.codehaus.jackson.map.ser.SerializerBase;
abstract class JSONBaseSerializer extends SerializerBase
{
protected JSONBaseSerializer(Class cls) { super(cls); }
}