public abstract class JacksonMediaTypeCodec extends java.lang.Object implements MediaTypeCodec
MediaTypeCodec
Jackson based implementations.Modifier and Type | Field and Description |
---|---|
protected java.util.List<MediaType> |
additionalTypes |
protected ApplicationConfiguration |
applicationConfiguration |
protected CodecConfiguration |
codecConfiguration |
protected MediaType |
mediaType |
Constructor and Description |
---|
JacksonMediaTypeCodec(com.fasterxml.jackson.databind.ObjectMapper objectMapper,
ApplicationConfiguration applicationConfiguration,
CodecConfiguration codecConfiguration,
MediaType mediaType) |
JacksonMediaTypeCodec(javax.inject.Provider<com.fasterxml.jackson.databind.ObjectMapper> objectMapperProvider,
ApplicationConfiguration applicationConfiguration,
CodecConfiguration codecConfiguration,
MediaType mediaType) |
Modifier and Type | Method and Description |
---|---|
abstract JacksonMediaTypeCodec |
cloneWithFeatures(JacksonFeatures jacksonFeatures)
Create a new codec with the provided features.
|
<T> T |
decode(Argument<T> type,
ByteBuffer<?> buffer)
Decode the given type from the given buffer.
|
<T> T |
decode(Argument<T> type,
java.io.InputStream inputStream)
Decode the given type from the given
InputStream . |
<T> T |
decode(Argument<T> type,
com.fasterxml.jackson.databind.JsonNode node)
Decodes the given JSON node.
|
<T> T |
decode(Argument<T> type,
java.lang.String data)
Decode the given type from the given bytes.
|
<T> byte[] |
encode(T object)
Encode the given type returning the object as a byte[].
|
<T,B> ByteBuffer<B> |
encode(T object,
ByteBufferFactory<?,B> allocator)
Encode the given type returning the object as a
ByteBuffer . |
<T> void |
encode(T object,
java.io.OutputStream outputStream)
Encode the given type to the given
OutputStream . |
java.util.Collection<MediaType> |
getMediaTypes() |
com.fasterxml.jackson.databind.ObjectMapper |
getObjectMapper() |
boolean |
supportsType(java.lang.Class<?> type)
Whether the codec can decode the given type.
|
protected final ApplicationConfiguration applicationConfiguration
protected final java.util.List<MediaType> additionalTypes
protected final CodecConfiguration codecConfiguration
protected final MediaType mediaType
public JacksonMediaTypeCodec(javax.inject.Provider<com.fasterxml.jackson.databind.ObjectMapper> objectMapperProvider, ApplicationConfiguration applicationConfiguration, CodecConfiguration codecConfiguration, MediaType mediaType)
objectMapperProvider
- To read/write JSONapplicationConfiguration
- The common application configurationscodecConfiguration
- The configuration for the codecmediaType
- Client request/response media typepublic JacksonMediaTypeCodec(com.fasterxml.jackson.databind.ObjectMapper objectMapper, ApplicationConfiguration applicationConfiguration, CodecConfiguration codecConfiguration, MediaType mediaType)
objectMapper
- To read/write JSONapplicationConfiguration
- The common application configurationscodecConfiguration
- The configuration for the codecmediaType
- Client request/response media typepublic com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()
public abstract JacksonMediaTypeCodec cloneWithFeatures(JacksonFeatures jacksonFeatures)
jacksonFeatures
- The jackson featurespublic java.util.Collection<MediaType> getMediaTypes()
getMediaTypes
in interface MediaTypeCodec
public boolean supportsType(java.lang.Class<?> type)
MediaTypeCodec
supportsType
in interface MediaTypeCodec
type
- The typepublic <T> T decode(Argument<T> type, java.io.InputStream inputStream) throws CodecException
MediaTypeCodec
InputStream
.decode
in interface MediaTypeCodec
T
- The generic typetype
- The typeinputStream
- The input streamCodecException
- When the result cannot be decodedpublic <T> T decode(Argument<T> type, com.fasterxml.jackson.databind.JsonNode node) throws CodecException
T
- The generic typetype
- The typenode
- The Json NodeCodecException
- When object cannot be decodedpublic <T> T decode(Argument<T> type, ByteBuffer<?> buffer) throws CodecException
MediaTypeCodec
ByteBuffer
instances
should override this method.decode
in interface MediaTypeCodec
T
- The decoded typetype
- The typebuffer
- the bufferCodecException
- When the result cannot be decodedpublic <T> T decode(Argument<T> type, java.lang.String data) throws CodecException
MediaTypeCodec
decode
in interface MediaTypeCodec
T
- The decoded typetype
- The typedata
- The data as a stringCodecException
- When the result cannot be decodedpublic <T> void encode(T object, java.io.OutputStream outputStream) throws CodecException
MediaTypeCodec
OutputStream
.encode
in interface MediaTypeCodec
T
- The generic typeobject
- The object to encodeoutputStream
- The output streamCodecException
- When the result cannot be encodedpublic <T> byte[] encode(T object) throws CodecException
MediaTypeCodec
encode
in interface MediaTypeCodec
T
- The generic typeobject
- The object to encodeCodecException
- When the result cannot be encodedpublic <T,B> ByteBuffer<B> encode(T object, ByteBufferFactory<?,B> allocator) throws CodecException
MediaTypeCodec
ByteBuffer
.encode
in interface MediaTypeCodec
T
- The generic typeB
- The buffer typeobject
- The object to encodeallocator
- The allocatorCodecException
- When the result cannot be encoded