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

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

Introduction

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

Usage

From source file gaffer.serialisation.simple.json.hyperloglogplus.HyperLogLogPlusJsonDeserialiser.java

public class HyperLogLogPlusJsonDeserialiser extends JsonDeserializer<HyperLogLogPlus> {

    // TODO - See 'Can't create HyperLogLogPlus sketches in JSON'
    @Override
    public HyperLogLogPlus deserialize(final JsonParser jsonParser,
            final DeserializationContext deserializationContext) throws IOException, JsonProcessingException {

From source file com.msopentech.odatajclient.engine.data.metadata.edm.AssociationDeserializer.java

public class AssociationDeserializer extends JsonDeserializer<Association> {

    @Override
    public Association deserialize(final JsonParser jp, final DeserializationContext ctxt)
            throws IOException, JsonProcessingException {

From source file com.spotify.ffwd.filter.FilterDeserializer.java

/**
 * A filter deserializer.
 * <p>
 * Filters are represented as array where the first element in the array is the filter identifier,
 * and the rest are arguments to that filter.
 *

From source file org.mycontroller.standalone.api.jaxrs.mixins.deserializers.NodeTypeDeserializer.java

/**
 * @author Jeeva Kandasamy (jkandasa)
 * @since 0.0.2
 */
public class NodeTypeDeserializer extends JsonDeserializer<MESSAGE_TYPE_PRESENTATION> {

From source file craterdog.security.mappers.PrivateKeyDeserializer.java

/**
 * This class handles the unmarshaling of a private key from an encrypted PEM string.
 *
 * @author Derk Norton
 */
public class PrivateKeyDeserializer extends JsonDeserializer<PrivateKey> {

From source file es.logongas.ix3.web.json.impl.DateDeserializer.java

/**
 *
 * @author Lorenzo
 */
public class DateDeserializer extends JsonDeserializer<Date> {

From source file org.basinmc.maven.plugins.minecraft.access.VisibilityJsonDeserializer.java

/**
 * Provides a Jackson deserializer in order to make AT configs a little more human readable.
 *
 * @author <a href="mailto:johannesd@torchmind.com">Johannes Donath</a>
 */
public class VisibilityJsonDeserializer extends JsonDeserializer<Visibility> {

From source file org.springframework.social.betaseries.api.impl.json.BSDateAndTimeDeserializer.java

/**
 * The Class BSDateDeserializer.
 * 
 * @author Guillaume Maka
 */
public class BSDateAndTimeDeserializer extends JsonDeserializer<Date> {

From source file org.springframework.social.betaseries.api.impl.json.BSDateDeserializer.java

/**
 * The Class BSDateDeserializer.
 * 
 * @author Guillaume Maka
 */
public class BSDateDeserializer extends JsonDeserializer<Date> {

From source file com.msopentech.odatajclient.engine.data.metadata.edm.TypeAnnotationDeserializer.java

public class TypeAnnotationDeserializer extends JsonDeserializer<TypeAnnotation> {

    @Override
    public TypeAnnotation deserialize(final JsonParser jp, final DeserializationContext ctxt)
            throws IOException, JsonProcessingException {