Spring for Android

Package org.springframework.http.converter

Interface Summary
GenericHttpMessageConverter<T> A specialization of HttpMessageConverter that can convert an HTTP request into a target object of a specified generic type.
HttpMessageConverter<T> Strategy interface that specifies a converter that can convert from and to HTTP requests and responses.
 

Class Summary
AbstractHttpMessageConverter<T> Abstract base class for most HttpMessageConverter implementations.
ByteArrayHttpMessageConverter Implementation of HttpMessageConverter that can read and write byte arrays.
FormHttpMessageConverter Implementation of HttpMessageConverter that can handle form data, including multipart form data (i.e.
ObjectToStringHttpMessageConverter An HttpMessageConverter that uses StringHttpMessageConverter for reading and writing content and a ConversionService for converting the String content to and from the target object type.
ResourceHttpMessageConverter Implementation of HttpMessageConverter that can read and write Resources.
StringHttpMessageConverter Implementation of HttpMessageConverter that can read and write strings.
 

Exception Summary
HttpMessageConversionException Thrown by HttpMessageConverter implementations when the conversion fails.
HttpMessageNotReadableException Thrown by HttpMessageConverter implementations when the read method fails.
HttpMessageNotWritableException Thrown by HttpMessageConverter implementations when the write method fails.
 


Spring for Android