Example usage for com.fasterxml.jackson.databind.deser.std StdDeserializer subclass-usage

List of usage examples for com.fasterxml.jackson.databind.deser.std StdDeserializer subclass-usage

Introduction

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

Usage

From source file org.wikidata.wdtk.datamodel.json.jackson.datavalues.JacksonValueDeserializer.java

/**
 * Custom Jackson deserializer that maps the JSON representation of Wikibase
 * values to WDTK classes. In most cases, the class to use is defined by the
 * value of the "type" field, but for entities one has to look deeper into the
 * structure to get the "entity-type" field as well. This is not possible using
 * simpler mechanisms.

From source file com.redhat.red.build.koji.model.json.util.SecondsSinceEpochDeserializer.java

/**
 * Created by jdcasey on 2/10/16.
 */
public class SecondsSinceEpochDeserializer extends StdDeserializer<Date> {
    public SecondsSinceEpochDeserializer() {
        super(Date.class);

From source file org.springframework.security.oauth2.common.exceptions.OAuth2ExceptionJackson2Deserializer.java

/**
 * @author Brian Clozel
 * 
 */
@SuppressWarnings("serial")
public class OAuth2ExceptionJackson2Deserializer extends StdDeserializer<OAuth2Exception> {

From source file com.redhat.red.build.koji.model.json.util.MavenGAVDeserializer.java

/**
 * Created by jdcasey on 2/10/16.
 */
public class MavenGAVDeserializer extends StdDeserializer<SimpleProjectVersionRef> {
    public MavenGAVDeserializer(Class<? extends ProjectVersionRef> cls) {
        super(cls);

From source file org.springframework.security.oauth2.common.OAuth2AccessTokenJackson2Deserializer.java

/**
 * <p>
 * Provides the ability to deserialize JSON response into an {@link org.springframework.security.oauth2.common.OAuth2AccessToken} with jackson2 by implementing
 * {@link com.fasterxml.jackson.databind.JsonDeserializer}.
 * </p>
 * <p>

From source file org.apache.unomi.persistence.spi.ItemDeserializer.java

public class ItemDeserializer extends StdDeserializer<Item> {

    private static final long serialVersionUID = -7040054009670771266L;
    private Map<String, Class<? extends Item>> classes = new HashMap<>();

    public ItemDeserializer() {

From source file ca.ualberta.physics.cssdp.util.JSONMnemonicDeserializer.java

public class JSONMnemonicDeserializer extends StdDeserializer<Mnemonic> {

    private static final long serialVersionUID = 1L;
    private static final Logger logger = LoggerFactory.getLogger(JSONMnemonicDeserializer.class);

    public JSONMnemonicDeserializer() {

From source file com.sg2net.utilities.ListaCAP.json.ComuneDeserializer.java

public class ComuneDeserializer extends StdDeserializer<Comune> {

    private static Logger logger = LoggerFactory.getLogger(ComuneDeserializer.class);

    public ComuneDeserializer() {
        super(Comune.class);

From source file de.fraunhofer.iosb.ilt.sta.deserialize.TimeValueDeserializer.java

/**
 * Helper for deserialization of TimeValue objects from JSON. May not work properly in every case as deciding wether
 * input is a TimeInstant or a TimeInterval is based on exceptions while parsing
 *
 * @author jab
 */

From source file org.soulwing.prospecto.jackson.ViewDeserializer.java

/**
 * A Jackson {@link com.fasterxml.jackson.databind.JsonDeserializer} for a
 * Prospecto {@link View}.
 *
 * @author Carl Harris
 */