Example usage for com.fasterxml.jackson.databind.module SimpleSerializers subclass-usage

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

Introduction

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

Usage

From source file org.mongojack.internal.MongoJacksonSerializers.java

/**
 * Serializers for Mongo Jackson Mapper
 *
 * @author James Roper
 * @since 1.2
 */

From source file org.mongojack.internal.MongoJackSerializers.java

/**
 * Serializers for MongoJack
 * 
 * @author James Roper
 * @since 1.2
 */

From source file org.jongo.marshall.jackson.bson4jackson.BsonSerializers.java

class BsonSerializers extends SimpleSerializers {
    public BsonSerializers() {
        addSerializer(org.bson.types.ObjectId.class, new BsonObjectIdSerializer());
        addSerializer(BSONTimestamp.class, new BSONTimestampSerializer());
        addSerializer(MinKey.class, new MinKeySerializer());
        addSerializer(MaxKey.class, new MaxKeySerializer());