Example usage for com.fasterxml.jackson.databind ObjectMapper subclass-usage

List of usage examples for com.fasterxml.jackson.databind ObjectMapper subclass-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind ObjectMapper subclass-usage.

Usage

From source file com.tilab.fiware.metaware.dao.impls.mongodb.core.CustomObjectMapper.java

/**
 * Custom version for ObjectMapper to deal with ObjectId serialization.
 *
 * @author Marco Terrinoni marco.terrinoni at consoft.it
 */
public class CustomObjectMapper extends ObjectMapper {

From source file org.craftercms.commons.jackson.CustomSerializationObjectMapper.java

/**
 * Extended {@link com.fasterxml.jackson.databind.ObjectMapper} that lets you provide your own
 * serializers/deserializers.
 */
public class CustomSerializationObjectMapper extends ObjectMapper {

From source file com.netflix.scheduledactions.persistence.cassandra.ScheduledActionsObjectMapper.java

public class ScheduledActionsObjectMapper extends ObjectMapper {

    public ScheduledActionsObjectMapper() {
        configure(DeserializationFeature.READ_ENUMS_USING_TO_STRING, true);
        configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
        configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);

From source file be.dnsbelgium.rdap.jackson.CustomObjectMapper.java

public class CustomObjectMapper extends ObjectMapper {

    public CustomObjectMapper() {
        super.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
        setSerializationInclusion(JsonInclude.Include.NON_NULL);
        configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);

From source file org.zlogic.vogon.web.controller.serialization.JSONMapper.java

/**
 * JSON mapper configuration to not send unnecessary data to client
 *
 * @author Dmitry Zolotukhin [zlogic@gmail.com]
 */
@Service

From source file io.instacount.client.jackson.InstacountClientObjectMapper.java

/**
 * An extension of {@link ObjectMapper} for configuring Jackson with the API.
 */
public class InstacountClientObjectMapper extends ObjectMapper {
    /**
     * No-args Constructor.

From source file org.bonitasoft.web.designer.utils.ObjectMapperExceptField.java

/**
 * Custom jackson mapper that do not serialize property passed in argument
 * <p>Example: if you do not want to serialize "template" property from widget object, create a new ObjectMapperExceptField(Widget.class, "template")</p>
 *
 * @author Colin Puy
 */

From source file org.yamj.core.hibernate.HibernateAwareObjectMapper.java

/**
 * Taken from the Jackson Hibernate module<br>
 * This ensures that the Lazy Instantiated objects are fully instantiated before returning the JSON information to the API
 *
 * https://github.com/FasterXML/jackson-module-hibernate
 *

From source file org.gytheio.messaging.jackson.QpidJsonBodyCleanerObjectMapper.java

/**
 * Extension of ObjectMapper which cleans erroneous characters apparently
 * added by the Qpid library before the start of a JSON object.
 */
public class QpidJsonBodyCleanerObjectMapper extends ObjectMapper {
    private static final long serialVersionUID = 2568701685293341501L;

From source file jp.classmethod.aws.brian.util.BrianClientObjectMapper.java

/**
 * Custom {@link ObjectMapper} implementation for Brian.
 * 
 * @since 1.0
 * @author daisuke
 */