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 no.ssb.jsonstat.JsonStatModule.java

public class JsonStatModule extends SimpleModule {

    private final String NAME = "JsonStatModule";

    @Override
    public void setupModule(SetupContext context) {

From source file com.googlecode.wicketcontinuouscalendar.jackson.ContinuousCalendarJacksonModule.java

/**
* @author Paul Bors (Paul@Bors.ws)
* 
*/
public class ContinuousCalendarJacksonModule extends SimpleModule {
    public ContinuousCalendarJacksonModule() {

From source file org.springframework.social.tripit.api.impl.TripItModule.java

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

    public TripItModule() {

From source file org.springframework.social.xing.api.impl.json.XingModule.java

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

    public XingModule() {

From source file org.lightadmin.core.web.json.LightAdminJacksonModule.java

public class LightAdminJacksonModule extends SimpleModule {

    public LightAdminJacksonModule(GlobalAdministrationConfiguration globalAdministrationConfiguration) {
        super(unknownVersion());

        setSerializerModifier(new DynamicFilePropertyOmittingSerializerModifier(globalAdministrationConfiguration));

From source file org.springframework.social.github.api.impl.json.GitHubModule.java

/**
 * Jackson module for setting up mixin annotations on GitHub model types.
 *
 * @author Andy Wilkinson
 */
public class GitHubModule extends SimpleModule {

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

/**
 * Jackson {@link SimpleModule} which registers
 * {@link ConversionServiceBeanSerializerModifier}
 * 
 * @author gvNIX Team
 * @since TODO: Class version

From source file craterdog.security.mappers.NotaryKeyModule.java

/**
 * This class is a Jackson module that can be added to an object mapper to handle the serialization
 * of a notary key.  The private signing key is password protected.
 *
 * @author Derk Norton
 */

From source file org.springframework.social.wechat.api.impl.json.WechatModule.java

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

From source file com.greglturnquist.embeddablesdr.SystemDependencyJacksonModule.java

public class SystemDependencyJacksonModule extends SimpleModule {

    @Autowired
    public SystemDependencyJacksonModule(EntityLinks entityLinks) {
        super(new Version(2, 0, 0, null, "com.greglturnquist.embeddablesdr", "jackson-module"));