com.basho.riak.client.convert.RiakJacksonModule.java Source code

Java tutorial

Introduction

Here is the source code for com.basho.riak.client.convert.RiakJacksonModule.java

Source

/*
 * This file is provided to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.basho.riak.client.convert;

import com.fasterxml.jackson.core.Version;
import com.fasterxml.jackson.databind.Module;

/**
 * A <a href="">Jackson</a> {@link Module} that customises Jackson's object
 * mapper so we can handle Riak annotations like {@link RiakKey},
 * {@link RiakUsermeta}, and RiakLink correctly.
 * 
 * Adds a {@link RiakBeanSerializerModifier} that removes any RiakXXX annotated
 * fields from the JSON output (since they will be persisted as object meta data
 * and not as part of the object)
 * 
 * @author russell
 * 
 */
public class RiakJacksonModule extends Module {

    private static final String NAME = "RiakJacksonModule";
    // TODO get this from pom, or update it per release?
    private static final Version VERSION = new Version(0, 0, 0, "snapshot");

    /**
     * 
     */
    public RiakJacksonModule() {
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.codehaus.jackson.map.Module#getModuleName()
     */
    @Override
    public String getModuleName() {
        return NAME;
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.codehaus.jackson.map.Module#version()
     */
    @Override
    public Version version() {
        return VERSION;
    }

    /*
     * (non-Javadoc)
     * 
     * @see
     * org.codehaus.jackson.map.Module#setupModule(org.codehaus.jackson.map.
     * Module.SetupContext)
     */
    @Override
    public void setupModule(SetupContext context) {
        context.addBeanSerializerModifier(RiakBeanSerializerModifier.getInstance());
    }

}