Class MappingJacksonInputMessage
java.lang.Object
org.springframework.http.converter.json.MappingJacksonInputMessage
- All Implemented Interfaces:
HttpInputMessage
,HttpMessage
HttpInputMessage
that can eventually stores a Jackson view that will be used
to deserialize the message.- Since:
- 4.2
- Author:
- Sebastien Deleuze
-
Constructor Summary
ConstructorDescriptionMappingJacksonInputMessage
(InputStream body, HttpHeaders headers) MappingJacksonInputMessage
(InputStream body, HttpHeaders headers, Class<?> deserializationView) -
Method Summary
Modifier and TypeMethodDescriptiongetBody()
Return the body of the message as an input stream.Class<?>
Return the headers of this message.void
setDeserializationView
(Class<?> deserializationView)
-
Constructor Details
-
MappingJacksonInputMessage
-
MappingJacksonInputMessage
public MappingJacksonInputMessage(InputStream body, HttpHeaders headers, Class<?> deserializationView)
-
-
Method Details
-
getBody
Description copied from interface:HttpInputMessage
Return the body of the message as an input stream.- Specified by:
getBody
in interfaceHttpInputMessage
- Returns:
- the input stream body (never
null
) - Throws:
IOException
- in case of I/O errors
-
getHeaders
Description copied from interface:HttpMessage
Return the headers of this message.- Specified by:
getHeaders
in interfaceHttpMessage
- Returns:
- a corresponding HttpHeaders object (never
null
)
-
setDeserializationView
-
getDeserializationView
-