Package io.quarkus.amazon.lambda.runtime
Class DateModule
java.lang.Object
com.fasterxml.jackson.databind.Module
com.fasterxml.jackson.databind.module.SimpleModule
io.quarkus.amazon.lambda.runtime.DateModule
- All Implemented Interfaces:
com.fasterxml.jackson.core.Versioned,Serializable
class DateModule
extends com.fasterxml.jackson.databind.module.SimpleModule
Copied from: here
The AWS API represents a date as a double, which specifies the fractional
number of seconds since the epoch. Java's Date, however, represents a date as
a long, which specifies the number of milliseconds since the epoch. This
class is used to translate between these two formats.
This class is copied from LambdaEventBridgeservice
com.amazon.aws.lambda.stream.ddb.DateModule
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classstatic final classNested classes/interfaces inherited from class com.fasterxml.jackson.databind.Module
com.fasterxml.jackson.databind.Module.SetupContext -
Field Summary
Fields inherited from class com.fasterxml.jackson.databind.module.SimpleModule
_abstractTypes, _deserializerModifier, _deserializers, _hasExplicitName, _keyDeserializers, _keySerializers, _mixins, _name, _namingStrategy, _serializerModifier, _serializers, _subtypes, _valueInstantiators, _version -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.fasterxml.jackson.databind.module.SimpleModule
_checkNotNull, addAbstractTypeMapping, addDeserializer, addKeyDeserializer, addKeySerializer, addSerializer, addSerializer, addValueInstantiator, getModuleName, getTypeId, registerSubtypes, registerSubtypes, registerSubtypes, setAbstractTypes, setDeserializerModifier, setDeserializers, setKeyDeserializers, setKeySerializers, setMixInAnnotation, setNamingStrategy, setSerializerModifier, setSerializers, setupModule, setValueInstantiators, versionMethods inherited from class com.fasterxml.jackson.databind.Module
getDependencies
-
Constructor Details
-
DateModule
public DateModule()
-