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.greglturnquist.spring.social.ecobee.api.impl.json.EcobeeModule.java

/**
 * @author Greg Turnquist
 */
public class EcobeeModule extends SimpleModule {

    public EcobeeModule() {

From source file com.codepine.api.testrail.internal.UnixTimestampModule.java

/**
 * Jackson module to register serializers and deserializers for unix time stamp in seconds.
 * <p/>
 * INTERNAL ONLY
 */
public class UnixTimestampModule extends SimpleModule {

From source file com.codepine.api.testrail.internal.FieldModule.java

/**
 * Jackson module for {@link com.codepine.api.testrail.model.Field}.
 * <p/>
 * INTERNAL ONLY
 */
public class FieldModule extends SimpleModule {

From source file org.emfjson.jackson.module.EMFModule.java

/**
 * Module implementation that allows serialization and deserialization of
 * EMF objects (EObject and Resource).
 */
public class EMFModule extends SimpleModule {

From source file springfox.documentation.swagger2.configuration.Swagger2JacksonModule.java

public class Swagger2JacksonModule extends SimpleModule implements JacksonModuleRegistrar {

    public void maybeRegisterModule(ObjectMapper objectMapper) {
        if (objectMapper.findMixInClassFor(Swagger.class) == null) {
            objectMapper.registerModule(new Swagger2JacksonModule());
            objectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);

From source file org.springframework.social.twitter.api.impl.TwitterModule.java

/**
 * Jackson module for registering mixin annotations against Twitter model classes.
 */
@SuppressWarnings("serial")
class TwitterModule extends SimpleModule {

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

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

From source file com.codepine.api.testrail.internal.PlanModule.java

/**
 * Jackson module for {@link com.codepine.api.testrail.model.Plan} to set some additional properties on {@link com.codepine.api.testrail.model.Plan.Entry.Run}.
 * <p/>
 * INTERNAL ONLY
 */
public class PlanModule extends SimpleModule {

From source file org.ng200.openolympus.DurationJacksonModule.java

public class DurationJacksonModule extends SimpleModule {
    /**
     * 
     */
    private static final long serialVersionUID = 5894603418971898080L;

From source file org.springframework.data.mongodb.core.geo.GeoJsonModule.java

/**
 * A Jackson {@link Module} to register custom {@link JsonSerializer} and {@link JsonDeserializer}s for GeoJSON types.
 * 
 * @author Christoph Strobl
 * @author Oliver Gierke
 * @since 1.7