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 com.arpnetworking.configuration.jackson.akka.AkkaLoggingModule.java

/**
 * Jackson module for serializing and deserializing Akka objects.
 *
 * @author Ville Koskela (ville dot koskela at inscopemetrics dot com)
 */
public class AkkaLoggingModule extends SimpleModule {

From source file io.sidecar.event.EventModule.java

public class EventModule extends SimpleModule {

    public EventModule() {
        super("Event Module", new Version(1, 0, 0, "SNAPSHOT", "io.sidecar", "model"));
    }

From source file com.strandls.alchemy.inject.json.DummyAllEnvModule.java

/**
 * A dummy module used for testing module lister.
 *
 * @author Ashish Shinde
 *
 */

From source file com.strandls.alchemy.inject.json.DummyProdModule.java

/**
 * A dummy module used for testing module lister.
 *
 * @author Ashish Shinde
 *
 */

From source file io.sidecar.org.OrgModule.java

public class OrgModule extends SimpleModule {

    public OrgModule() {
        super("Organization Module", new Version(1, 0, 0, "SNAPSHOT", "io.sidecar", "model"));
    }

From source file org.springframework.social.google.api.impl.json.GoogleModule.java

/**
 * Jackson module for setting up mixin annotations on Google model types. This enables the use of Jackson annotations without
 * directly annotating the model classes themselves.
 */
public class GoogleModule extends SimpleModule {

From source file org.gvnix.web.json.DataBinderModule.java

/**
 * Register {@link DataBinderBeanDeserializerModifier} into Jackson desarializer
 * context.
 * 
 * @author gvNIX Team
 * @since TODO: Class version

From source file com.chiralbehaviors.CoRE.json.CoREModule.java

/**
 * A jackson module for registering serializers and deserializers.
 *
 * @author hparry
 *
 */

From source file org.springframework.social.strava.api.impl.json.StravaModule.java

/**
 * Jackson module for setting up mixin annotations on Strava model types.
 */
public class StravaModule extends SimpleModule {

    public StravaModule() {

From source file com.googlecode.wickedcharts.highcharts.jackson.WickedChartsJacksonModule.java

public class WickedChartsJacksonModule extends SimpleModule {

    public WickedChartsJacksonModule() {
        super("wicked-charts", new Version(1, 3, 0, null, "com.googlecode.wicked-charts", "wicked-charts"));
    }