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 io.sidecar.ErrorModule.java

public class ErrorModule extends SimpleModule {

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

From source file io.sidecar.access.AccessModule.java

public class AccessModule extends SimpleModule {

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

From source file io.fabric8.cxf.endpoint.BeanValidationAnnotationModule.java

public class BeanValidationAnnotationModule extends SimpleModule {

    public BeanValidationAnnotationModule() {
        super("bean-validation-annotations");
    }

From source file io.sidecar.query.QueryModule.java

public class QueryModule extends SimpleModule {

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

From source file io.sidecar.notification.NotificationModule.java

public class NotificationModule extends SimpleModule {

    public NotificationModule() {
        super("Notification Module", new Version(1, 0, 0, "SNAPSHOT", "io.sidecar", "model"));

    }

From source file craterdog.smart.CensorshipModule.java

/**
 * This class is a Jackson module that can be added to an object mapper to handle the masking of
 * sensitive attributes during string serialization. Any string attributes that are annotated with
 * the <code>@Sensitive(mask="some pattern")</code> annotation will be masked accordingly.
 *
 * @author Yan Ma

From source file org.ambientlight.ws.EntityIdModule.java

/**
 * @author Florian Bornkessel
 * 
 */
public class EntityIdModule extends SimpleModule {

From source file org.eclipse.winery.common.json.TopologyTemplateModule.java

@SuppressWarnings("serial")
public class TopologyTemplateModule extends SimpleModule {

    public TopologyTemplateModule() {
        this.addSerializer(TTopologyTemplate.class, new TTopologyTemplateSerializer());
    }

From source file com.expedia.seiso.web.jackson.hal.HalModule.java

/**
 * @author Willie Wheeler
 */
@SuppressWarnings("serial")
public class HalModule extends SimpleModule {

From source file com.github.gabrielruiu.springsocial.yahoo.module.YahooModule.java

/**
 * Jackson module that maps mixins with Yahoo objects
 *
 * @author Ruiu Gabriel Mihai (gabriel.ruiu@mail.com)
 */
public class YahooModule extends SimpleModule {