Example usage for com.fasterxml.jackson.databind.ser.std StdSerializer subclass-usage

List of usage examples for com.fasterxml.jackson.databind.ser.std StdSerializer subclass-usage

Introduction

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

Usage

From source file com.microsoft.rest.serializer.FlatteningSerializer.java

/**
 * Custom serializer for serializing types with wrapped properties.
 * For example, a property with annotation @JsonProperty(value = "properties.name")
 * will be mapped from a top level "name" property in the POJO model to
 * {'properties' : { 'name' : 'my_name' }} in the serialized payload.
 */

From source file aptgraph.server.GraphSerializer.java

/**
 *
 * @author Thibault Debatty
 */
public class GraphSerializer extends StdSerializer<Graph> {

From source file aptgraph.server.NeighborSerializer.java

/**
 *
 * @author Thibault Debatty
 */
public class NeighborSerializer extends StdSerializer<Neighbor> {

From source file net.nullschool.grains.jackson.datatype.GrainSerializer.java

/**
 * 2013-06-07<p/>
 *
 * @author Cameron Beccario
 */
class GrainSerializer extends StdSerializer<Grain> implements ResolvableSerializer {

From source file org.commonjava.maven.atlas.graph.jackson.ProjectRelationshipSerializer.java

/**
 * Created by jdcasey on 8/26/15.
 */
@SuppressWarnings("rawtypes")
public final class ProjectRelationshipSerializer<T extends ProjectRelationship> extends StdSerializer<T> {
    public ProjectRelationshipSerializer(final Class<T> cls) {

From source file org.apache.ode.jacob.soup.jackson.ChannelProxySerializer.java

/**
 * Jackson serializer for Channel Proxies.
 * Serializes only channel id and channel type. Also keeps a
 * list of serialized channels, which is needed for the garbage
 * collection of unused channels in the ExecutionQueue serializer.
 * 

From source file org.apache.ode.jacob.soup.jackson.ChannelRefSerializer.java

/**
 * Jackson serializer for {@link Message} objects.
 * 
 * @author Tammo van Lessen
 *
 */

From source file org.pentaho.metaverse.impl.model.kettle.json.GenericStepOrJobEntryJsonSerializer.java

/**
 * User: RFellows Date: 12/15/14
 */
public abstract class GenericStepOrJobEntryJsonSerializer<T> extends StdSerializer<T> {
    public static final String JSON_PROPERTY_TYPE = "type";
    public static final String JSON_PROPERTY_ATTRIBUTES = "attributes";

From source file de.escalon.hypermedia.spring.hydra.PagedResourcesSerializer.java

/**
 * Serializer for Resources. Created by dschulten on 15.09.2014.
 */
@SuppressWarnings("unused")
public class PagedResourcesSerializer extends StdSerializer<PagedResources> {

From source file nl.talsmasoftware.enumerables.support.json.jackson2.EnumerableSerializer.java

/**
 * Serializer for Jackson-2 to serialize Enumerable Objects with.
 *
 * @author Sjoerd Talsma
 */
public class EnumerableSerializer extends StdSerializer<Enumerable> {