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.agorava.linkedin.jackson.LinkedInModule.java

/**
 * Jackson module for registering mixin annotations against LinkedIn model classes.
 *
 * @author Antoine Sabot-Durand
 */
@LinkedIn

From source file com.example.common.MoneyJacksonAutoConfiguration.java

@SuppressWarnings("serial")
class SubtypeModule extends SimpleModule {
    private Class<?>[] subtypes;

    public SubtypeModule(Class<?>... subtypes) {
        this.subtypes = subtypes;

From source file org.springframework.social.linkedin.api.impl.json.LinkedInModule.java

/**
 * Jackson module for registering mixin annotations against LinkedIn model classes.
 */
public class LinkedInModule extends SimpleModule {

    private static final long serialVersionUID = 1L;

From source file org.springframework.hateoas.hal.Jackson2HalModule.java

/**
 * Jackson 2 module implementation to render {@link Link} and
 * {@link ResourceSupport} instances in HAL compatible JSON.
 *
 * @author Alexander Baetz
 * @author Oliver Gierke

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

/**
 * Jackson 2 module to serialize and deserialize {@link PersistentEntityResource}s.
 * 
 * @author Jon Brisbin
 * @author Oliver Gierke
 * @author Greg Turnquist