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

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

Introduction

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

Usage

From source file org.n52.io.geojson.FeatureOutputSerializer.java

public class FeatureOutputSerializer extends JsonSerializer<GeoJSONFeature> {

    private static final Logger LOGGER = LoggerFactory.getLogger(FeatureOutputSerializer.class);

    @Override
    public void serialize(GeoJSONFeature value, JsonGenerator gen, SerializerProvider serializers)

From source file org.n52.tamis.core.json.serialize.processes.ProcessesSerializer.java

/**
 * Class to serialize and inctance of {@link Processes_Tamis}.
 * 
 * @author Christian Danowski (contact: c.danowski@52north.org)
 *
 */

From source file com.github.hateoas.forms.spring.halforms.ValueSuggestSerializer.java

class ValueSuggestSerializer extends JsonSerializer<ValueSuggest<?>> implements ContextualSerializer {

    private final RelProvider relProvider;

    private final EmbeddedMapper mapper;

From source file org.n52.tamis.core.json.serialize.processes.execute.ExecuteInputSerializer.java

/**
 * Serializes the simple JSON HTTP POST input element of the request body.
 * 
 * Inputs are distuingished by their value parameter. If value contains an HTTP
 * address, the value will be converted to a "Reference"-WPS-input element.
 * Otherwise the input will be converted to a "Data"-WPS-input element.

From source file gr.abiss.calipso.uischema.serializer.UiSchemaSerializer.java

public class UiSchemaSerializer extends JsonSerializer<UiSchema> {

    private static final Logger LOGGER = LoggerFactory.getLogger(UiSchemaSerializer.class);

    private static final char quote = '\"';
    private static final char space = ' ';

From source file de.terrestris.shogun.serializer.WKTSerializer.java

/**
 * A serializer that can handle JTS geometries.
 *
 * @author terrestris GmbH & Co. KG
 *
 */

From source file de.terrestris.shogun.serializer.SimpleUserSerializer.java

/**
 * A serializer that takes the user object of a model
 * and returns an id of the corresponding user.
 *
 * @author terrestris GmbH & Co. KG
 *

From source file de.terrestris.shogun.serializer.DateSerializer.java

/**
 * A serializer that can handle java.util.Date-instances.
 *
 * @author terrestris GmbH & Co. KG
 *
 */

From source file de.terrestris.shogun.serializer.LeanBaseModelSetSerializer.java

/**
 * A serializer that takes sets of instances of {@link BaseModelInterface}
 * and returns a an array of the ids of the instances as serialisation value.
 *
 * @author terrestris GmbH & Co. KG
 *

From source file de.terrestris.shogun.serializer.LeanBaseModelListSerializer.java

/**
 * A serializer that takes lists of instances of {@link BaseModelInterface}
 * and returns a an array of the ids of the instances as serialisation value.
 *
 * @author terrestris GmbH & Co. KG
 *