Example usage for com.fasterxml.jackson.databind.module SimpleModule subclass-usage

List of usage examples for com.fasterxml.jackson.databind.module SimpleModule subclass-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.module SimpleModule subclass-usage.

Usage

From source file org.darkware.wpman.util.serialization.WPObjectTypeModule.java

/**
 * This is a Jackson module for supporting bidirectional serialization for the {@link WPObjectType}
 * enumeration.
 *
 * @author jeff
 * @since 2016-05-18

From source file org.darkware.wpman.util.serialization.TimeWindowModule.java

/**
 * This is a Jackson {@link Module} for handling serialization of {@link TimeWindow} objects.
 *
 * @author jeff
 * @since 2016-03-28
 */

From source file nl.talsmasoftware.enumerables.support.json.jackson2.EnumerableModule.java

/**
 * Mapping module for converting one or more {@link Enumerable} types from and to JSON (or YAML) using the Jackson (v2)
 * library.
 * <p>
 * If a non-<code>null</code> {@link SerializationMethod} is specified in the module, that will be used for serializing
 * {@link Enumerable} objects. Otherwise, {@link SerializationMethod#PLAIN_STRING plain-String} serialization will be

From source file org.darkware.wpman.util.serialization.WPDateModule.java

/**
 * This is a Jackson serialization {@link SimpleModule} which is designed to parse the date formats and
 * conventions used by WordPress. This includes the rather unhelpful practice of returning nonsense dates
 * of year, month, and day set to zero.
 *
 * @author jeff

From source file org.commonjava.aprox.model.core.io.ProjectVersionRefSerializerModule.java

@ApplicationScoped
public class ProjectVersionRefSerializerModule extends SimpleModule {

    private static final long serialVersionUID = 1L;

    public ProjectVersionRefSerializerModule() {

From source file org.darkware.wpman.util.serialization.PluginStatusModule.java

/**
 * This is a Jackson {@link Module} for serializing and deserializing {@link WPPluginStatus} instances.
 *
 * @author jeff
 * @since 2016-03-30
 */

From source file org.lendingclub.mercator.docker.DockerSerializerModule.java

public class DockerSerializerModule extends SimpleModule {

    private static final long serialVersionUID = 1L;
    ObjectMapper vanillaObjectMapper = new ObjectMapper();

    public DockerSerializerModule() {

From source file com.github.jonpeterson.jackson.module.interceptor.JsonInterceptorModule.java

/**
 * Jackson module to load when using {@link JsonInterceptors}.
 */
public class JsonInterceptorModule extends SimpleModule {

    public JsonInterceptorModule() {

From source file org.calrissian.mango.json.MangoModule.java

public class MangoModule extends SimpleModule {

    private final TypeRegistry<String> typeRegistry;

    public MangoModule() {
        this(SIMPLE_TYPES);

From source file org.apache.ode.jacob.soup.jackson.JacobModule.java

/**
 * Jackson Module that can be registered to configure a Jackson ObjectMapper
 * for serialization/deserialization of ExecutionQueues.
 * 
 * @author Tammo van Lessen
 *