Uses of Interface
org.springframework.http.HttpInputMessage
Packages that use HttpInputMessage Package Description org.springframework.http.client Contains an abstraction over client-side HTTP.org.springframework.http.converter Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.org.springframework.http.converter.feed Provides HttpMessageConverter implementations for handling Atom and RSS feeds.org.springframework.http.converter.json Provides HttpMessageConverter implementations for handling JSON.org.springframework.http.converter.protobuf Provides an HttpMessageConverter implementation for handling Google Protocol Buffers.org.springframework.http.converter.xml Provides HttpMessageConverter implementations for handling XML.org.springframework.http.server Contains an abstraction over server-side HTTP.org.springframework.mock.http Mock implementations of client/server-side HTTP abstractions.org.springframework.mock.http.client Mock implementations of client-side HTTP abstractions.org.springframework.web.multipart.support Support classes for the multipart resolution framework.org.springframework.web.servlet.mvc.method.annotation MVC infrastructure for annotation-based handler method processing, building on theorg.springframework.web.method.annotationpackage.Uses of HttpInputMessage in org.springframework.http.client
Subinterfaces of HttpInputMessage in org.springframework.http.client Modifier and Type Interface Description interfaceClientHttpResponseRepresents a client-side HTTP response.Classes in org.springframework.http.client that implement HttpInputMessage Modifier and Type Class Description classAbstractClientHttpResponseAbstract base forClientHttpResponse.Uses of HttpInputMessage in org.springframework.http.converter
Methods in org.springframework.http.converter that return HttpInputMessage Modifier and Type Method Description HttpInputMessageHttpMessageNotReadableException. getHttpInputMessage()Return the original HTTP message.Methods in org.springframework.http.converter with parameters of type HttpInputMessage Modifier and Type Method Description TAbstractHttpMessageConverter. read(Class<? extends T> clazz, HttpInputMessage inputMessage)This implementation simple delegates toAbstractHttpMessageConverter.readInternal(Class, HttpInputMessage).BufferedImageBufferedImageHttpMessageConverter. read(Class<? extends BufferedImage> clazz, HttpInputMessage inputMessage)MultiValueMap<String,String>FormHttpMessageConverter. read(Class<? extends MultiValueMap<String,?>> clazz, HttpInputMessage inputMessage)TGenericHttpMessageConverter. read(Type type, Class<?> contextClass, HttpInputMessage inputMessage)Read an object of the given type form the given input message, and returns it.THttpMessageConverter. read(Class<? extends T> clazz, HttpInputMessage inputMessage)Read an object of the given type from the given input message, and returns it.ObjectResourceRegionHttpMessageConverter. read(Type type, Class<?> contextClass, HttpInputMessage inputMessage)protected abstract TAbstractHttpMessageConverter. readInternal(Class<? extends T> clazz, HttpInputMessage inputMessage)Abstract template method that reads the actual object.byte[]ByteArrayHttpMessageConverter. readInternal(Class<? extends byte[]> clazz, HttpInputMessage inputMessage)protected ObjectObjectToStringHttpMessageConverter. readInternal(Class<?> clazz, HttpInputMessage inputMessage)protected ResourceResourceHttpMessageConverter. readInternal(Class<? extends Resource> clazz, HttpInputMessage inputMessage)protected ResourceRegionResourceRegionHttpMessageConverter. readInternal(Class<?> clazz, HttpInputMessage inputMessage)protected StringStringHttpMessageConverter. readInternal(Class<? extends String> clazz, HttpInputMessage inputMessage)Constructors in org.springframework.http.converter with parameters of type HttpInputMessage Constructor Description HttpMessageNotReadableException(String msg, Throwable cause, HttpInputMessage httpInputMessage)Create a new HttpMessageNotReadableException.HttpMessageNotReadableException(String msg, HttpInputMessage httpInputMessage)Create a new HttpMessageNotReadableException.Uses of HttpInputMessage in org.springframework.http.converter.feed
Methods in org.springframework.http.converter.feed with parameters of type HttpInputMessage Modifier and Type Method Description protected TAbstractWireFeedHttpMessageConverter. readInternal(Class<? extends T> clazz, HttpInputMessage inputMessage)Uses of HttpInputMessage in org.springframework.http.converter.json
Classes in org.springframework.http.converter.json that implement HttpInputMessage Modifier and Type Class Description classMappingJacksonInputMessageHttpInputMessagethat can eventually stores a Jackson view that will be used to deserialize the message.Methods in org.springframework.http.converter.json with parameters of type HttpInputMessage Modifier and Type Method Description ObjectAbstractJackson2HttpMessageConverter. read(Type type, Class<?> contextClass, HttpInputMessage inputMessage)ObjectAbstractJsonHttpMessageConverter. read(Type type, Class<?> contextClass, HttpInputMessage inputMessage)protected ObjectAbstractJackson2HttpMessageConverter. readInternal(Class<?> clazz, HttpInputMessage inputMessage)protected ObjectAbstractJsonHttpMessageConverter. readInternal(Class<?> clazz, HttpInputMessage inputMessage)Uses of HttpInputMessage in org.springframework.http.converter.protobuf
Methods in org.springframework.http.converter.protobuf with parameters of type HttpInputMessage Modifier and Type Method Description protected com.google.protobuf.MessageProtobufHttpMessageConverter. readInternal(Class<? extends com.google.protobuf.Message> clazz, HttpInputMessage inputMessage)Uses of HttpInputMessage in org.springframework.http.converter.xml
Methods in org.springframework.http.converter.xml with parameters of type HttpInputMessage Modifier and Type Method Description TJaxb2CollectionHttpMessageConverter. read(Type type, Class<?> contextClass, HttpInputMessage inputMessage)TAbstractXmlHttpMessageConverter. readInternal(Class<? extends T> clazz, HttpInputMessage inputMessage)protected TSourceHttpMessageConverter. readInternal(Class<? extends T> clazz, HttpInputMessage inputMessage)Uses of HttpInputMessage in org.springframework.http.server
Subinterfaces of HttpInputMessage in org.springframework.http.server Modifier and Type Interface Description interfaceServerHttpRequestRepresents a server-side HTTP request.Classes in org.springframework.http.server that implement HttpInputMessage Modifier and Type Class Description classServletServerHttpRequestServerHttpRequestimplementation that is based on aHttpServletRequest.Uses of HttpInputMessage in org.springframework.mock.http
Classes in org.springframework.mock.http that implement HttpInputMessage Modifier and Type Class Description classMockHttpInputMessageMock implementation ofHttpInputMessage.Uses of HttpInputMessage in org.springframework.mock.http.client
Classes in org.springframework.mock.http.client that implement HttpInputMessage Modifier and Type Class Description classMockClientHttpResponseMock implementation ofClientHttpResponse.Uses of HttpInputMessage in org.springframework.web.multipart.support
Classes in org.springframework.web.multipart.support that implement HttpInputMessage Modifier and Type Class Description classRequestPartServletServerHttpRequestServerHttpRequestimplementation that accesses one part of a multipart request.Uses of HttpInputMessage in org.springframework.web.servlet.mvc.method.annotation
Methods in org.springframework.web.servlet.mvc.method.annotation that return HttpInputMessage Modifier and Type Method Description HttpInputMessageJsonViewRequestBodyAdvice. beforeBodyRead(HttpInputMessage inputMessage, MethodParameter methodParameter, Type targetType, Class<? extends HttpMessageConverter<?>> selectedConverterType)HttpInputMessageRequestBodyAdvice. beforeBodyRead(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)Invoked second before the request body is read and converted.HttpInputMessageRequestBodyAdviceAdapter. beforeBodyRead(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)The default implementation returns the InputMessage that was passed in.Methods in org.springframework.web.servlet.mvc.method.annotation with parameters of type HttpInputMessage Modifier and Type Method Description ObjectRequestBodyAdvice. afterBodyRead(Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)Invoked third (and last) after the request body is converted to an Object.ObjectRequestBodyAdviceAdapter. afterBodyRead(Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)The default implementation returns the body that was passed in.HttpInputMessageJsonViewRequestBodyAdvice. beforeBodyRead(HttpInputMessage inputMessage, MethodParameter methodParameter, Type targetType, Class<? extends HttpMessageConverter<?>> selectedConverterType)HttpInputMessageRequestBodyAdvice. beforeBodyRead(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)Invoked second before the request body is read and converted.HttpInputMessageRequestBodyAdviceAdapter. beforeBodyRead(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)The default implementation returns the InputMessage that was passed in.ObjectRequestBodyAdvice. handleEmptyBody(Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)Invoked second (and last) if the body is empty.ObjectRequestBodyAdviceAdapter. handleEmptyBody(Object body, HttpInputMessage inputMessage, MethodParameter parameter, Type targetType, Class<? extends HttpMessageConverter<?>> converterType)The default implementation returns the body that was passed in.protected <T> ObjectAbstractMessageConverterMethodArgumentResolver. readWithMessageConverters(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType)Create the method argument value of the expected parameter type by reading from the given HttpInputMessage.