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.springframework.social.gitlab.api.core.impl.json.GitlabModule.java

/**
 *
 * @author p.hoeffling
 */
public class GitlabModule extends SimpleModule {

From source file org.commonjava.maven.atlas.graph.spi.neo4j.io.NeoSpecificProjectVersionRefSerializerModule.java

public class NeoSpecificProjectVersionRefSerializerModule extends SimpleModule {

    private static final long serialVersionUID = 1L;

    private static final Set<Class<? extends ProjectRef>> REF_CLASSES;

From source file org.springframework.data.rest.webmvc.json.JacksonSerializers.java

/**
 * Custom Spring Data REST Jackson serializers.
 * 
 * @author Oliver Gierke
 * @since 2.4
 * @soundtrack Wallis Bird - I Could Be Your Man (Yeah! Wallis Bird Live 2007-2014)

From source file eu.trentorise.opendata.commons.jackson.TodCommonsModule.java

/**
 * A module for handling Tod commons objects with Jackson JSON serialization
 * framework.
 *
 * @author David Leoni <david.leoni@unitn.it>
 */

From source file org.springframework.social.lastfm.api.impl.json.LastFmModule.java

/**
 * Jackson module for setting up mixin annotations on LastFm model types. This
 * enables the use of Jackson annotations without directly annotating the model
 * classes themselves.
 * 
 * @author Michael Lavelle

From source file eu.trentorise.opendata.semtext.jackson.SemTextModule.java

/**
 * A module for handling semtext objects with Jackson JSON serialization
 * framework. In order to work properly the module needs you to register also
 * OdtCommonModule and GuavaModule (both are in separate maven packages). For
 * properly deserializing metadata you also need to register it by calling {@link #registerMetadata(java.lang.Class, java.lang.String, java.lang.Class)
 * }

From source file org.springframework.social.betaseries.api.impl.json.BetaSeriesModule.java

/**
 * The Class BetaSeriesModule.
 * 
 * @author Guillaume Maka
 */
public class BetaSeriesModule extends SimpleModule {

From source file com.samlikescode.stackoverflow.questions.q31009815.Element1Module.java

/**
 * //todo(sb)
 */
public class Element1Module extends SimpleModule {
    private static final String NAME = "Element1Module";

From source file org.agorava.facebook.jackson.FacebookModule.java

/**
 * Jackson module for setting up mixin annotations on Facebook model types. This enables the use of Jackson annotations without
 * directly annotating the model classes themselves.
 *
 * @author Craig Walls
 */

From source file com.samlikescode.stackoverflow.questions.q28255878.CustomIndentationModule.java

public class CustomIndentationModule extends SimpleModule {
    private static final String NAME = "CustomIndentationModule";

    public CustomIndentationModule() {
        super(NAME);
        setSerializerModifier(new BeanSerializerModifier() {