Class Jackson
- java.lang.Object
-
- akka.http.javadsl.marshallers.jackson.Jackson
-
public class Jackson extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Jackson.JacksonUnmarshallingException
INTERNAL API
-
Constructor Summary
Constructors Constructor Description Jackson()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> Unmarshaller<akka.util.ByteString,T>
byteStringUnmarshaller(com.fasterxml.jackson.databind.ObjectMapper mapper, java.lang.Class<T> expectedType)
static <T> Unmarshaller<akka.util.ByteString,T>
byteStringUnmarshaller(java.lang.Class<T> expectedType)
static <T> Marshaller<T,RequestEntity>
marshaller()
static <T> Marshaller<T,RequestEntity>
marshaller(com.fasterxml.jackson.databind.ObjectMapper mapper)
static <T> Unmarshaller<HttpEntity,T>
unmarshaller(com.fasterxml.jackson.databind.ObjectMapper mapper, java.lang.Class<T> expectedType)
static <T> Unmarshaller<HttpEntity,T>
unmarshaller(java.lang.Class<T> expectedType)
-
-
-
Method Detail
-
marshaller
public static <T> Marshaller<T,RequestEntity> marshaller()
-
marshaller
public static <T> Marshaller<T,RequestEntity> marshaller(com.fasterxml.jackson.databind.ObjectMapper mapper)
-
byteStringUnmarshaller
public static <T> Unmarshaller<akka.util.ByteString,T> byteStringUnmarshaller(java.lang.Class<T> expectedType)
-
unmarshaller
public static <T> Unmarshaller<HttpEntity,T> unmarshaller(java.lang.Class<T> expectedType)
-
unmarshaller
public static <T> Unmarshaller<HttpEntity,T> unmarshaller(com.fasterxml.jackson.databind.ObjectMapper mapper, java.lang.Class<T> expectedType)
-
byteStringUnmarshaller
public static <T> Unmarshaller<akka.util.ByteString,T> byteStringUnmarshaller(com.fasterxml.jackson.databind.ObjectMapper mapper, java.lang.Class<T> expectedType)
-
-