All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cassandraunit.shaded.org.codehaus.jackson.map.deser.std.TimestampDeserializer Maven / Gradle / Ivy

There is a newer version: 4.3.1.0
Show newest version
package org.codehaus.jackson.map.deser.std;

import java.io.IOException;
import java.sql.Timestamp;

import org.codehaus.jackson.JsonProcessingException;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.map.DeserializationContext;

/**
 * Simple deserializer for handling {@link java.sql.Timestamp} values.
 *

* One way to customize Timestamp formats accepted is to override method * {@link DeserializationContext#parseDate} that this basic * deserializer calls. * * @since 1.9 (moved from higher-level package) */ public class TimestampDeserializer extends StdScalarDeserializer { public TimestampDeserializer() { super(Timestamp.class); } @Override public java.sql.Timestamp deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException { return new Timestamp(_parseDate(jp, ctxt).getTime()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy