spring-android-rest-template
A B C D E F G H I K M N O P Q R S T U V W X

A

AbstractClientHttpRequest - Class in org.springframework.http.client
Abstract base for ClientHttpRequest that makes sure that headers and body are not written multiple times.
AbstractClientHttpRequest() - Constructor for class org.springframework.http.client.AbstractClientHttpRequest
 
AbstractClientHttpRequestFactoryWrapper - Class in org.springframework.http.client
Abstract base class for ClientHttpRequestFactory implementations that decorate another request factory.
AbstractClientHttpRequestFactoryWrapper(ClientHttpRequestFactory) - Constructor for class org.springframework.http.client.AbstractClientHttpRequestFactoryWrapper
Creates a AbstractClientHttpRequestFactoryWrapper wrapping the given request factory.
AbstractClientHttpResponse - Class in org.springframework.http.client
Abstract base for ClientHttpResponse.
AbstractClientHttpResponse() - Constructor for class org.springframework.http.client.AbstractClientHttpResponse
 
AbstractHttpMessageConverter<T> - Class in org.springframework.http.converter
Abstract base class for most HttpMessageConverter implementations.
AbstractHttpMessageConverter() - Constructor for class org.springframework.http.converter.AbstractHttpMessageConverter
Construct an AbstractHttpMessageConverter with no supported media types.
AbstractHttpMessageConverter(MediaType) - Constructor for class org.springframework.http.converter.AbstractHttpMessageConverter
Construct an AbstractHttpMessageConverter with one supported media type.
AbstractHttpMessageConverter(MediaType...) - Constructor for class org.springframework.http.converter.AbstractHttpMessageConverter
Construct an AbstractHttpMessageConverter with multiple supported media type.
AbstractWireFeedHttpMessageConverter<T extends com.google.code.rome.android.repackaged.com.sun.syndication.feed.WireFeed> - Class in org.springframework.http.converter.feed
Abstract base class for Atom and RSS Feed message converters that uses Android ROME Feed Reader, which is a repackaging of java.net's ROME.
AbstractWireFeedHttpMessageConverter(MediaType) - Constructor for class org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter
 
AbstractXmlHttpMessageConverter<T> - Class in org.springframework.http.converter.xml
Abstract base class for HttpMessageConverters that convert from/to XML.
AbstractXmlHttpMessageConverter() - Constructor for class org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter
Protected constructor that sets the supportedMediaTypes to text/xml and application/xml, and application/*-xml.
add(String, String) - Method in class org.springframework.http.HttpHeaders
Add the given, single header value under the given name.
addPartConverter(HttpMessageConverter<?>) - Method in class org.springframework.http.converter.FormHttpMessageConverter
Add a message body converter.
ALL - Static variable in class org.springframework.http.ContentCodingType
Public constant encoding type for *.
ALL - Static variable in class org.springframework.http.MediaType
Public constant media type that includes all media ranges (i.e.
ALL_VALUE - Static variable in class org.springframework.http.ContentCodingType
A String equivalent of ContentCodingType.ALL.
ALL_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.ALL.
APPLICATION_ATOM_XML - Static variable in class org.springframework.http.MediaType
Public constant media type for application/atom+xml.
APPLICATION_ATOM_XML_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_ATOM_XML.
APPLICATION_FORM_URLENCODED - Static variable in class org.springframework.http.MediaType
Public constant media type for application/x-www-form-urlencoded.
APPLICATION_FORM_URLENCODED_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_FORM_URLENCODED.
APPLICATION_JSON - Static variable in class org.springframework.http.MediaType
Public constant media type for application/json.
APPLICATION_JSON_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_JSON.
APPLICATION_OCTET_STREAM - Static variable in class org.springframework.http.MediaType
Public constant media type for application/octet-stream.
APPLICATION_OCTET_STREAM_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_OCTET_STREAM.
APPLICATION_RSS_XML - Static variable in class org.springframework.http.MediaType
Public constant media type for application/rss+xml.
APPLICATION_RSS_XML_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_RSS_XML.
APPLICATION_WILDCARD_XML - Static variable in class org.springframework.http.MediaType
Public constant media type for application/*+xml.
APPLICATION_WILDCARD_XML_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_WILDCARD_XML.
APPLICATION_XHTML_XML - Static variable in class org.springframework.http.MediaType
Public constant media type for application/xhtml+xml.
APPLICATION_XHTML_XML_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_XHTML_XML.
APPLICATION_XML - Static variable in class org.springframework.http.MediaType
Public constant media type for application/xml.
APPLICATION_XML_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.APPLICATION_XML.
AtomFeedHttpMessageConverter - Class in org.springframework.http.converter.feed
Implementation of HttpMessageConverter that can read and write Atom feeds.
AtomFeedHttpMessageConverter() - Constructor for class org.springframework.http.converter.feed.AtomFeedHttpMessageConverter
 

B

BufferingClientHttpRequestFactory - Class in org.springframework.http.client
Wrapper for a ClientHttpRequestFactory that buffers all outgoing and incoming streams in memory.
BufferingClientHttpRequestFactory(ClientHttpRequestFactory) - Constructor for class org.springframework.http.client.BufferingClientHttpRequestFactory
 
build() - Method in class org.springframework.web.util.UriComponentsBuilder
Builds a UriComponents instance from the various components contained in this builder.
build(boolean) - Method in class org.springframework.web.util.UriComponentsBuilder
Builds a UriComponents instance from the various components contained in this builder.
buildAndExpand(Map<String, ?>) - Method in class org.springframework.web.util.UriComponentsBuilder
Builds a UriComponents instance and replaces URI template variables with the values from a map.
buildAndExpand(Object...) - Method in class org.springframework.web.util.UriComponentsBuilder
Builds a UriComponents instance and replaces URI template variables with the values from an array.
ByteArrayHttpMessageConverter - Class in org.springframework.http.converter
Implementation of HttpMessageConverter that can read and write byte arrays.
ByteArrayHttpMessageConverter() - Constructor for class org.springframework.http.converter.ByteArrayHttpMessageConverter
Creates a new instance of the ByteArrayHttpMessageConverter.

C

canRead(Class<?>, MediaType) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
This implementation checks if the given class is supported, and if the supported media types include the given media type.
canRead(MediaType) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Returns true if any of the supported media types include the given media type.
canRead(Class<?>, MediaType) - Method in class org.springframework.http.converter.FormHttpMessageConverter
 
canRead(Class<?>, MediaType) - Method in interface org.springframework.http.converter.HttpMessageConverter
Indicates whether the given class can be read by this converter.
canRead(Class<?>, MediaType) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
canRead(Class<?>, MediaType) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
 
canRead(Class<?>, MediaType) - Method in class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
 
canWrite(Class<?>, MediaType) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
This implementation checks if the given class is supported, and if the supported media types include the given media type.
canWrite(MediaType) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Returns true if the given media type includes any of the supported media types.
canWrite(Class<?>, MediaType) - Method in class org.springframework.http.converter.FormHttpMessageConverter
 
canWrite(Class<?>, MediaType) - Method in interface org.springframework.http.converter.HttpMessageConverter
Indicates whether the given class can be written by this converter.
canWrite(Class<?>, MediaType) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
canWrite(Class<?>, MediaType) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
 
canWrite(Class<?>, MediaType) - Method in class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
 
clear() - Method in class org.springframework.http.HttpHeaders
 
ClientHttpRequest - Interface in org.springframework.http.client
Represents a client-side HTTP request.
ClientHttpRequestExecution - Interface in org.springframework.http.client
Represents the context of a client-side HTTP request execution.
ClientHttpRequestFactory - Interface in org.springframework.http.client
Factory for ClientHttpRequest objects.
ClientHttpRequestInterceptor - Interface in org.springframework.http.client
Intercepts client-side HTTP requests.
ClientHttpResponse - Interface in org.springframework.http.client
Represents a client-side HTTP response.
close() - Method in class org.springframework.http.client.AbstractClientHttpResponse
 
close() - Method in interface org.springframework.http.client.ClientHttpResponse
Closes this response, freeing any resources created.
closeInternal() - Method in class org.springframework.http.client.AbstractClientHttpResponse
Abstract template method that closes the response.
CommonsClientHttpRequestFactory - Class in org.springframework.http.client
Deprecated. In favor of HttpComponentsClientHttpRequestFactory
CommonsClientHttpRequestFactory() - Constructor for class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Create a new instance of the CommonsHttpRequestFactory with a default HttpClient that uses a default MultiThreadedHttpConnectionManager.
CommonsClientHttpRequestFactory(HttpClient) - Constructor for class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Create a new instance of the CommonsHttpRequestFactory with the given HttpClient instance.
compareTo(ContentCodingType) - Method in class org.springframework.http.ContentCodingType
Compares this ContentCodingType to another alphabetically.
compareTo(MediaType) - Method in class org.springframework.http.MediaType
Compares this MediaType to another alphabetically.
containsKey(Object) - Method in class org.springframework.http.HttpHeaders
 
containsValue(Object) - Method in class org.springframework.http.HttpHeaders
 
ContentCodingType - Class in org.springframework.http
Represents a Compression Type, as defined in the HTTP specification.
ContentCodingType(String) - Constructor for class org.springframework.http.ContentCodingType
Create a new ContentCodingType for the given type.
ContentCodingType(String, double) - Constructor for class org.springframework.http.ContentCodingType
Create a new ContentCodingType for the given type and quality value.
ContentCodingType(String, Map<String, String>) - Constructor for class org.springframework.http.ContentCodingType
Create a new ContentCodingType for the given type, and parameters.
createCommonsHttpMethod(HttpMethod, String) - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Create a Commons HttpMethodBase object for the given HTTP method and URI specification.
createHttpContext(HttpMethod, URI) - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Template methods that creates a HttpContext for the given HTTP method and URI.
createHttpRequest(HttpMethod, URI) - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Create a HttpComponents HttpUriRequest object for the given HTTP method and URI specification.
createRequest(URI, HttpMethod) - Method in class org.springframework.http.client.AbstractClientHttpRequestFactoryWrapper
This implementation simply calls AbstractClientHttpRequestFactoryWrapper.createRequest(URI, HttpMethod, ClientHttpRequestFactory) with the wrapped request factory provided to the constructor.
createRequest(URI, HttpMethod, ClientHttpRequestFactory) - Method in class org.springframework.http.client.AbstractClientHttpRequestFactoryWrapper
Create a new ClientHttpRequest for the specified URI and HTTP method by using the passed-on request factory.
createRequest(URI, HttpMethod, ClientHttpRequestFactory) - Method in class org.springframework.http.client.BufferingClientHttpRequestFactory
 
createRequest(URI, HttpMethod) - Method in interface org.springframework.http.client.ClientHttpRequestFactory
Create a new ClientHttpRequest for the specified URI and HTTP method.
createRequest(URI, HttpMethod) - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated.  
createRequest(URI, HttpMethod) - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
 
createRequest(URI, HttpMethod, ClientHttpRequestFactory) - Method in class org.springframework.http.client.InterceptingClientHttpRequestFactory
 
createRequest(URI, HttpMethod) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
 
createRequest(URI, HttpMethod) - Method in class org.springframework.http.client.support.HttpAccessor
Create a new ClientHttpRequest via this template's ClientHttpRequestFactory.

D

decode(String, String) - Static method in class org.springframework.web.util.UriUtils
Decodes the given encoded source String into an URI.
DEFAULT_CHARSET - Static variable in class org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter
 
DEFAULT_CHARSET - Static variable in class org.springframework.http.converter.feed.SyndFeedHttpMessageConverter
 
DEFAULT_CHARSET - Static variable in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
DEFAULT_CHARSET - Static variable in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
 
DEFAULT_CHARSET - Static variable in class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
 
DefaultResponseErrorHandler - Class in org.springframework.web.client
Default implementation of the ResponseErrorHandler interface.
DefaultResponseErrorHandler() - Constructor for class org.springframework.web.client.DefaultResponseErrorHandler
 
delete(String, Object...) - Method in interface org.springframework.web.client.RestOperations
Delete the resources at the specified URI.
delete(String, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Delete the resources at the specified URI.
delete(URI) - Method in interface org.springframework.web.client.RestOperations
Delete the resources at the specified URL.
delete(String, Object...) - Method in class org.springframework.web.client.RestTemplate
 
delete(String, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
delete(URI) - Method in class org.springframework.web.client.RestTemplate
 
destroy() - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Shutdown hook that closes the underlying HttpConnectionManager's connection pool, if any.
destroy() - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Shutdown hook that closes the underlying ClientConnectionManager's connection pool, if any.
doExecute(URI, HttpMethod, RequestCallback, ResponseExtractor<T>) - Method in class org.springframework.web.client.RestTemplate
Execute the given method on the provided URI.
doWithRequest(ClientHttpRequest) - Method in interface org.springframework.web.client.RequestCallback
Gets called by RestTemplate.execute(java.lang.String, org.springframework.http.HttpMethod, org.springframework.web.client.RequestCallback, org.springframework.web.client.ResponseExtractor, java.lang.Object...) with an opened ClientHttpRequest.

E

EMPTY - Static variable in class org.springframework.http.HttpEntity
The empty HttpEntity, with no body or headers.
encode() - Method in class org.springframework.web.util.UriComponents
Encodes all URI components using their specific encoding rules, and returns the result as a new UriComponents instance.
encode(String) - Method in class org.springframework.web.util.UriComponents
Encodes all URI components using their specific encoding rules, and returns the result as a new UriComponents instance.
encodeAuthority(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI authority with the given encoding.
encodeFragment(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI fragment with the given encoding.
encodeHost(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI host with the given encoding.
encodeHttpUrl(String, String) - Static method in class org.springframework.web.util.UriUtils
Deprecated. in favor of UriComponentsBuilder; see note about query param encoding
encodePath(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI path with the given encoding.
encodePathSegment(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI path segment with the given encoding.
encodePort(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI port with the given encoding.
encodeQuery(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI query with the given encoding.
encodeQueryParam(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI query parameter with the given encoding.
encodeScheme(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI scheme with the given encoding.
encodeUri(String) - Method in class org.springframework.web.util.UriTemplate
Deprecated. No longer in use, with no direct replacement
encodeUri(String, String) - Static method in class org.springframework.web.util.UriUtils
Deprecated. in favor of UriComponentsBuilder; see note about query param encoding
encodeUriComponents(String, String, String, String, String, String, String, String, String) - Static method in class org.springframework.web.util.UriUtils
Deprecated. in favor of UriComponentsBuilder
encodeUserInfo(String, String) - Static method in class org.springframework.web.util.UriUtils
Encodes the given URI user info with the given encoding.
entrySet() - Method in class org.springframework.http.HttpHeaders
 
equals(Object) - Method in class org.springframework.http.ContentCodingType
 
equals(Object) - Method in class org.springframework.http.HttpHeaders
 
equals(Object) - Method in class org.springframework.http.MediaType
 
equals(Object) - Method in class org.springframework.web.util.UriComponents
 
exchange(String, HttpMethod, HttpEntity<?>, Class<T>, Object...) - Method in interface org.springframework.web.client.RestOperations
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity.
exchange(String, HttpMethod, HttpEntity<?>, Class<T>, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity.
exchange(URI, HttpMethod, HttpEntity<?>, Class<T>) - Method in interface org.springframework.web.client.RestOperations
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity.
exchange(String, HttpMethod, HttpEntity<?>, Class<T>, Object...) - Method in class org.springframework.web.client.RestTemplate
 
exchange(String, HttpMethod, HttpEntity<?>, Class<T>, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
exchange(URI, HttpMethod, HttpEntity<?>, Class<T>) - Method in class org.springframework.web.client.RestTemplate
 
execute() - Method in class org.springframework.http.client.AbstractClientHttpRequest
 
execute() - Method in interface org.springframework.http.client.ClientHttpRequest
Execute this request, resulting in a ClientHttpResponse that can be read.
execute(HttpRequest, byte[]) - Method in interface org.springframework.http.client.ClientHttpRequestExecution
Execute the request with the given request attributes and body, and return the response.
execute(String, HttpMethod, RequestCallback, ResponseExtractor<T>, Object...) - Method in interface org.springframework.web.client.RestOperations
Execute the HTTP method to the given URI template, preparing the request with the RequestCallback, and reading the response with a ResponseExtractor.
execute(String, HttpMethod, RequestCallback, ResponseExtractor<T>, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Execute the HTTP method to the given URI template, preparing the request with the RequestCallback, and reading the response with a ResponseExtractor.
execute(URI, HttpMethod, RequestCallback, ResponseExtractor<T>) - Method in interface org.springframework.web.client.RestOperations
Execute the HTTP method to the given URL, preparing the request with the RequestCallback, and reading the response with a ResponseExtractor.
execute(String, HttpMethod, RequestCallback, ResponseExtractor<T>, Object...) - Method in class org.springframework.web.client.RestTemplate
 
execute(String, HttpMethod, RequestCallback, ResponseExtractor<T>, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
execute(URI, HttpMethod, RequestCallback, ResponseExtractor<T>) - Method in class org.springframework.web.client.RestTemplate
 
executeInternal(HttpHeaders) - Method in class org.springframework.http.client.AbstractClientHttpRequest
Abstract template method that writes the given headers and content to the HTTP request.
expand(Map<String, ?>) - Method in class org.springframework.web.util.UriComponents
Replaces all URI template variables with the values from a given map.
expand(Object...) - Method in class org.springframework.web.util.UriComponents
Replaces all URI template variables with the values from a given array.
expand(Map<String, ?>) - Method in class org.springframework.web.util.UriTemplate
Given the Map of variables, expands this template into a URI.
expand(Object...) - Method in class org.springframework.web.util.UriTemplate
Given an array of variables, expand this template into a full URI.
extractData(ClientHttpResponse) - Method in class org.springframework.web.client.HttpMessageConverterExtractor
 
extractData(ClientHttpResponse) - Method in interface org.springframework.web.client.ResponseExtractor
Extract data from the given ClientHttpResponse and return it.

F

FormHttpMessageConverter - Class in org.springframework.http.converter
Implementation of HttpMessageConverter that can handle form data, including multipart form data (i.e.
FormHttpMessageConverter() - Constructor for class org.springframework.http.converter.FormHttpMessageConverter
 
fragment(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the URI fragment.
fromHttpUrl(String) - Static method in class org.springframework.web.util.UriComponentsBuilder
Creates a new UriComponents object from the string HTTP URL.
fromPath(String) - Static method in class org.springframework.web.util.UriComponentsBuilder
Returns a builder that is initialized with the given path.
fromUri(URI) - Static method in class org.springframework.web.util.UriComponentsBuilder
Returns a builder that is initialized with the given URI.
fromUriString(String) - Static method in class org.springframework.web.util.UriComponentsBuilder
Returns a builder that is initialized with the given URI string.

G

generateMultipartBoundary() - Method in class org.springframework.http.converter.FormHttpMessageConverter
Generate a multipart boundary.
get(Object) - Method in class org.springframework.http.HttpHeaders
 
getAccept() - Method in class org.springframework.http.HttpHeaders
Return the list of acceptable media types, as specified by the Accept header.
getAcceptCharset() - Method in class org.springframework.http.HttpHeaders
Return the list of acceptable charsets, as specified by the Accept-Charset header.
getAcceptedCharsets() - Method in class org.springframework.http.converter.StringHttpMessageConverter
Return the list of supported Charset.
getAcceptEncoding() - Method in class org.springframework.http.HttpHeaders
Return the list of acceptable coding types, as specified by the Accept-Encoding header.
getAcceptLanguage() - Method in class org.springframework.http.HttpHeaders
Return the accept language, as specified by the Accept-Language header.
getAllow() - Method in class org.springframework.http.HttpHeaders
Return the set of allowed HTTP methods, as specified by the Allow header.
getAuthorization() - Method in class org.springframework.http.HttpHeaders
Returns the value of the Authorization header.
getBody() - Method in class org.springframework.http.client.AbstractClientHttpRequest
 
getBody() - Method in class org.springframework.http.client.AbstractClientHttpResponse
 
getBody() - Method in class org.springframework.http.HttpEntity
Returns the body of this entity.
getBody() - Method in interface org.springframework.http.HttpInputMessage
Return the body of the message as an input stream.
getBody() - Method in interface org.springframework.http.HttpOutputMessage
Return the body of the message as an output stream.
getBodyInternal(HttpHeaders) - Method in class org.springframework.http.client.AbstractClientHttpRequest
Abstract template method that returns the body.
getBodyInternal() - Method in class org.springframework.http.client.AbstractClientHttpResponse
Abstract template method that returns the body.
getCacheControl() - Method in class org.springframework.http.HttpHeaders
Returns the value of the Cache-Control header.
getCharSet() - Method in class org.springframework.http.MediaType
Return the character set, as indicated by a charset parameter, if any.
getContentEncoding() - Method in class org.springframework.http.HttpHeaders
Return the list of content coding types, as specified by the Content-Encoding header.
getContentLength(T, MediaType) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Returns the content length for the given type.
getContentLength(byte[], MediaType) - Method in class org.springframework.http.converter.ByteArrayHttpMessageConverter
 
getContentLength(Resource, MediaType) - Method in class org.springframework.http.converter.ResourceHttpMessageConverter
 
getContentLength(String, MediaType) - Method in class org.springframework.http.converter.StringHttpMessageConverter
 
getContentLength(T, MediaType) - Method in class org.springframework.http.converter.xml.SourceHttpMessageConverter
 
getContentLength() - Method in class org.springframework.http.HttpHeaders
Return the length of the body in bytes, as specified by the Content-Length header.
getContentType() - Method in class org.springframework.http.HttpHeaders
Return the media type of the body, as specified by the Content-Type header.
getDate() - Method in class org.springframework.http.HttpHeaders
Returns the date and time at which the message was created, as specified by the Date header.
getDefaultCharset() - Method in class org.springframework.http.converter.StringHttpMessageConverter
The default Charset is ISO-8859-1.
getDefaultContentType(T) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Returns the default content type for the given type.
getDefaultContentType(Resource) - Method in class org.springframework.http.converter.ResourceHttpMessageConverter
 
getErrorHandler() - Method in class org.springframework.web.client.RestTemplate
Return the error handler.
getETag() - Method in class org.springframework.http.HttpHeaders
Returns the entity tag of the body, as specified by the ETag header.
getExpires() - Method in class org.springframework.http.HttpHeaders
Returns the date and time at which the message is no longer valid, as specified by the Expires header.
getFilename(Object) - Method in class org.springframework.http.converter.FormHttpMessageConverter
Return the filename of the given multipart part.
getFirst(String) - Method in class org.springframework.http.HttpHeaders
Return the first header value for the given header name, if any.
getForEntity(String, Class<T>, Object...) - Method in interface org.springframework.web.client.RestOperations
Retrieve an entity by doing a GET on the specified URL.
getForEntity(String, Class<T>, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Retrieve a representation by doing a GET on the URI template.
getForEntity(URI, Class<T>) - Method in interface org.springframework.web.client.RestOperations
Retrieve a representation by doing a GET on the URL .
getForEntity(String, Class<T>, Object...) - Method in class org.springframework.web.client.RestTemplate
 
getForEntity(String, Class<T>, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
getForEntity(URI, Class<T>) - Method in class org.springframework.web.client.RestTemplate
 
getForObject(String, Class<T>, Object...) - Method in interface org.springframework.web.client.RestOperations
Retrieve a representation by doing a GET on the specified URL.
getForObject(String, Class<T>, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Retrieve a representation by doing a GET on the URI template.
getForObject(URI, Class<T>) - Method in interface org.springframework.web.client.RestOperations
Retrieve a representation by doing a GET on the URL .
getForObject(String, Class<T>, Object...) - Method in class org.springframework.web.client.RestTemplate
 
getForObject(String, Class<T>, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
getForObject(URI, Class<T>) - Method in class org.springframework.web.client.RestTemplate
 
getFragment() - Method in class org.springframework.web.util.UriComponents
Returns the fragment.
getHeaders() - Method in class org.springframework.http.client.AbstractClientHttpRequest
 
getHeaders() - Method in class org.springframework.http.client.support.HttpRequestWrapper
Returns the headers of the wrapped request.
getHeaders() - Method in class org.springframework.http.HttpEntity
Returns the headers of this entity.
getHeaders() - Method in interface org.springframework.http.HttpMessage
Return the headers of this message.
getHeaderValue() - Method in class org.springframework.http.HttpAuthentication
 
getHeaderValue() - Method in class org.springframework.http.HttpBasicAuthentication
 
getHost() - Method in class org.springframework.web.util.UriComponents
Returns the host.
getHttpClient() - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Return the HttpClient used by this factory.
getHttpClient() - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Return the HttpClient used by this factory.
getIfNoneMatch() - Method in class org.springframework.http.HttpHeaders
Returns the value of the If-None-Match header.
getIfNotModifiedSince() - Method in class org.springframework.http.HttpHeaders
Returns the value of the IfModifiedSince header.
getInterceptors() - Method in class org.springframework.http.client.support.InterceptingHttpAccessor
Return the request interceptor that this accessor uses.
getJavaType(Class<?>) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
Return the Jackson JavaType for the specified class.
getJsonEncoding(MediaType) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
Determine the JSON encoding to use for the given content type.
getLastModified() - Method in class org.springframework.http.HttpHeaders
Returns the time the resource was last changed, as specified by the Last-Modified header.
getLocation() - Method in class org.springframework.http.HttpHeaders
Return the (new) location of a resource, as specified by the Location header.
getMessageConverters() - Method in class org.springframework.web.client.RestTemplate
Returns the message body converters.
getMethod() - Method in class org.springframework.http.client.support.HttpRequestWrapper
Returns the method of the wrapped request.
getMethod() - Method in interface org.springframework.http.HttpRequest
Return the HTTP method of the request.
getObjectMapper() - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
Return the underlying ObjectMapper for this view.
getParameter(String) - Method in class org.springframework.http.ContentCodingType
Return a generic parameter value, given a parameter name.
getParameter(String) - Method in class org.springframework.http.MediaType
Return a generic parameter value, given a parameter name.
getParameters() - Method in class org.springframework.http.MediaType
Return all generic parameter values.
getPath() - Method in class org.springframework.web.util.UriComponents
Returns the path.
getPathSegments() - Method in class org.springframework.web.util.UriComponents
Returns the list of path segments.
getPort() - Method in class org.springframework.web.util.UriComponents
Returns the port.
getPragma() - Method in class org.springframework.http.HttpHeaders
Returns the value of the Pragma header.
getQualityValue() - Method in class org.springframework.http.ContentCodingType
Return the quality value, as indicated by a q parameter, if any.
getQualityValue() - Method in class org.springframework.http.MediaType
Return the quality value, as indicated by a q parameter, if any.
getQuery() - Method in class org.springframework.web.util.UriComponents
Returns the query.
getQueryParams() - Method in class org.springframework.web.util.UriComponents
Returns the map of query parameters.
getRawStatusCode() - Method in interface org.springframework.http.client.ClientHttpResponse
Return the HTTP status code of the response as integer
getReasonPhrase() - Method in enum org.springframework.http.HttpStatus
Return the reason phrase of this status code.
getRequest() - Method in class org.springframework.http.client.support.HttpRequestWrapper
Returns the wrapped request.
getRequestFactory() - Method in class org.springframework.http.client.support.HttpAccessor
Return the request factory that this accessor uses for obtaining HttpRequests.
getRequestFactory() - Method in class org.springframework.http.client.support.InterceptingHttpAccessor
 
getResponseBodyAsByteArray() - Method in exception org.springframework.web.client.HttpStatusCodeException
Returns the response body as a byte array.
getResponseBodyAsString() - Method in exception org.springframework.web.client.HttpStatusCodeException
Returns the response body as a string.
getRestTemplate() - Method in class org.springframework.web.client.support.RestGatewaySupport
Returns the RestTemplate for the gateway.
getScheme() - Method in class org.springframework.web.util.UriComponents
Returns the scheme.
getStatusCode() - Method in class org.springframework.http.client.AbstractClientHttpResponse
 
getStatusCode() - Method in interface org.springframework.http.client.ClientHttpResponse
Return the HTTP status code of the response.
getStatusCode() - Method in class org.springframework.http.ResponseEntity
Return the HTTP status code of the response.
getStatusCode() - Method in exception org.springframework.web.client.HttpStatusCodeException
Returns the HTTP status code.
getStatusText() - Method in interface org.springframework.http.client.ClientHttpResponse
Return the HTTP status text of the response.
getStatusText() - Method in exception org.springframework.web.client.HttpStatusCodeException
Returns the HTTP status text.
getSubtype() - Method in class org.springframework.http.MediaType
Return the subtype.
getSupportedMediaTypes() - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
 
getSupportedMediaTypes() - Method in class org.springframework.http.converter.FormHttpMessageConverter
 
getSupportedMediaTypes() - Method in interface org.springframework.http.converter.HttpMessageConverter
Return the list of MediaType objects supported by this converter.
getType() - Method in class org.springframework.http.ContentCodingType
Return the primary type.
getType() - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
getType() - Method in class org.springframework.http.MediaType
Return the primary type.
getURI() - Method in class org.springframework.http.client.support.HttpRequestWrapper
Returns the URI of the wrapped request.
getURI() - Method in interface org.springframework.http.HttpRequest
Return the URI of the request.
getUserAgent() - Method in class org.springframework.http.HttpHeaders
Returns the value of the User-Agent header.
getUserInfo() - Method in class org.springframework.web.util.UriComponents
Returns the user info.
getVariableNames() - Method in class org.springframework.web.util.UriTemplate
Return the names of the variables in the template, in order.
GsonHttpMessageConverter - Class in org.springframework.http.converter.json
 
GsonHttpMessageConverter() - Constructor for class org.springframework.http.converter.json.GsonHttpMessageConverter
Construct a new GsonHttpMessageConverter with a default Gson.
GsonHttpMessageConverter(boolean) - Constructor for class org.springframework.http.converter.json.GsonHttpMessageConverter
Construct a new GsonHttpMessageConverter.
GsonHttpMessageConverter(Gson) - Constructor for class org.springframework.http.converter.json.GsonHttpMessageConverter
Construct a new GsonHttpMessageConverter.
GZIP - Static variable in class org.springframework.http.ContentCodingType
Public constant encoding type for gzip.
GZIP_VALUE - Static variable in class org.springframework.http.ContentCodingType
A String equivalent of ContentCodingType.GZIP.

H

handleError(ClientHttpResponse) - Method in class org.springframework.web.client.DefaultResponseErrorHandler
The default implementation throws a HttpClientErrorException if the response status code is HttpStatus.Series.CLIENT_ERROR, a HttpServerErrorException if it is HttpStatus.Series.SERVER_ERROR, and a RestClientException in other cases.
handleError(ClientHttpResponse) - Method in interface org.springframework.web.client.ResponseErrorHandler
Handles the error in the given response.
hasBody() - Method in class org.springframework.http.HttpEntity
Indicates whether this entity has a body.
hasError(ClientHttpResponse) - Method in class org.springframework.web.client.DefaultResponseErrorHandler
Delegates to DefaultResponseErrorHandler.hasError(HttpStatus) with the response status code.
hasError(HttpStatus) - Method in class org.springframework.web.client.DefaultResponseErrorHandler
Template method called from DefaultResponseErrorHandler.hasError(ClientHttpResponse).
hasError(ClientHttpResponse) - Method in interface org.springframework.web.client.ResponseErrorHandler
Indicates whether the given response has any errors.
hashCode() - Method in class org.springframework.http.ContentCodingType
 
hashCode() - Method in class org.springframework.http.HttpHeaders
 
hashCode() - Method in class org.springframework.http.MediaType
 
hashCode() - Method in class org.springframework.web.util.UriComponents
 
hasMessageBody(ClientHttpResponse) - Method in class org.springframework.web.client.HttpMessageConverterExtractor
Indicates whether the given response has a message body.
headForHeaders(String, Object...) - Method in interface org.springframework.web.client.RestOperations
Retrieve all headers of the resource specified by the URI template.
headForHeaders(String, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Retrieve all headers of the resource specified by the URI template.
headForHeaders(URI) - Method in interface org.springframework.web.client.RestOperations
Retrieve all headers of the resource specified by the URL.
headForHeaders(String, Object...) - Method in class org.springframework.web.client.RestTemplate
 
headForHeaders(String, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
headForHeaders(URI) - Method in class org.springframework.web.client.RestTemplate
 
host(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the URI host.
HttpAccessor - Class in org.springframework.http.client.support
Base class for RestTemplate and other HTTP accessing gateway helpers, defining common properties such as the ClientHttpRequestFactory to operate on.
HttpAccessor() - Constructor for class org.springframework.http.client.support.HttpAccessor
 
HttpAuthentication - Class in org.springframework.http
Represents an abstract HTTP Authentication.
HttpAuthentication() - Constructor for class org.springframework.http.HttpAuthentication
 
HttpBasicAuthentication - Class in org.springframework.http
Represents HTTP Basic Authentication.
HttpBasicAuthentication(String, String) - Constructor for class org.springframework.http.HttpBasicAuthentication
 
HttpClientErrorException - Exception in org.springframework.web.client
Exception thrown when an HTTP 4xx is received.
HttpClientErrorException(HttpStatus) - Constructor for exception org.springframework.web.client.HttpClientErrorException
Construct a new instance of HttpClientErrorException based on a HttpStatus.
HttpClientErrorException(HttpStatus, String) - Constructor for exception org.springframework.web.client.HttpClientErrorException
Construct a new instance of HttpClientErrorException based on a HttpStatus and status text.
HttpClientErrorException(HttpStatus, String, byte[], Charset) - Constructor for exception org.springframework.web.client.HttpClientErrorException
Construct a new instance of HttpClientErrorException based on a HttpStatus, status text, and response body content.
HttpComponentsClientHttpRequestFactory - Class in org.springframework.http.client
ClientHttpRequestFactory implementation that uses Http Components HttpClient to create requests.
HttpComponentsClientHttpRequestFactory() - Constructor for class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Create a new instance of the HttpComponentsClientHttpRequestFactory with a default HttpClient that uses a default ThreadSafeClientConnManager.
HttpComponentsClientHttpRequestFactory(HttpClient) - Constructor for class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Create a new instance of the HttpComponentsClientHttpRequestFactory with the given HttpClient instance.
HttpEntity<T> - Class in org.springframework.http
Represents an HTTP request or response entity, consisting of headers and body.
HttpEntity() - Constructor for class org.springframework.http.HttpEntity
Create a new, empty HttpEntity.
HttpEntity(T) - Constructor for class org.springframework.http.HttpEntity
Create a new HttpEntity with the given body and no headers.
HttpEntity(MultiValueMap<String, String>) - Constructor for class org.springframework.http.HttpEntity
Create a new HttpEntity with the given headers and no body.
HttpEntity(T, MultiValueMap<String, String>) - Constructor for class org.springframework.http.HttpEntity
Create a new HttpEntity with the given body and headers.
HttpHeaders - Class in org.springframework.http
Represents HTTP request and response headers, mapping string header names to list of string values.
HttpHeaders() - Constructor for class org.springframework.http.HttpHeaders
Constructs a new, empty instance of the HttpHeaders object.
HttpInputMessage - Interface in org.springframework.http
Represents an HTTP input message, consisting of headers and a readable body.
HttpMessage - Interface in org.springframework.http
Represents the base interface for HTTP request and response messages.
HttpMessageConversionException - Exception in org.springframework.http.converter
Thrown by HttpMessageConverter implementations when the conversion fails.
HttpMessageConversionException(String) - Constructor for exception org.springframework.http.converter.HttpMessageConversionException
Create a new HttpMessageConversionException.
HttpMessageConversionException(String, Throwable) - Constructor for exception org.springframework.http.converter.HttpMessageConversionException
Create a new HttpMessageConversionException.
HttpMessageConverter<T> - Interface in org.springframework.http.converter
Strategy interface that specifies a converter that can convert from and to HTTP requests and responses.
HttpMessageConverterExtractor<T> - Class in org.springframework.web.client
Response extractor that uses the given entity converters to convert the response into a type T.
HttpMessageConverterExtractor(Class<T>, List<HttpMessageConverter<?>>) - Constructor for class org.springframework.web.client.HttpMessageConverterExtractor
Creates a new instance of the HttpMessageConverterExtractor with the given response type and message converters.
HttpMessageNotReadableException - Exception in org.springframework.http.converter
Thrown by HttpMessageConverter implementations when the read method fails.
HttpMessageNotReadableException(String) - Constructor for exception org.springframework.http.converter.HttpMessageNotReadableException
Create a new HttpMessageNotReadableException.
HttpMessageNotReadableException(String, Throwable) - Constructor for exception org.springframework.http.converter.HttpMessageNotReadableException
Create a new HttpMessageNotReadableException.
HttpMessageNotWritableException - Exception in org.springframework.http.converter
Thrown by HttpMessageConverter implementations when the write method fails.
HttpMessageNotWritableException(String) - Constructor for exception org.springframework.http.converter.HttpMessageNotWritableException
Create a new HttpMessageNotWritableException.
HttpMessageNotWritableException(String, Throwable) - Constructor for exception org.springframework.http.converter.HttpMessageNotWritableException
Create a new HttpMessageNotWritableException.
HttpMethod - Enum in org.springframework.http
Java 5 enumeration of HTTP request methods.
HttpOutputMessage - Interface in org.springframework.http
Represents an HTTP output message, consisting of headers and a writable body.
HttpRequest - Interface in org.springframework.http
Represents an HTTP request message, consisting of method and uri.
HttpRequestWrapper - Class in org.springframework.http.client.support
Provides a convenient implementation of the HttpRequest interface that can be overridden to adapt the request.
HttpRequestWrapper(HttpRequest) - Constructor for class org.springframework.http.client.support.HttpRequestWrapper
Creates a new HttpRequest wrapping the given request object.
HttpServerErrorException - Exception in org.springframework.web.client
Exception thrown when an HTTP 5xx is received.
HttpServerErrorException(HttpStatus) - Constructor for exception org.springframework.web.client.HttpServerErrorException
Construct a new instance of HttpServerErrorException based on a HttpStatus.
HttpServerErrorException(HttpStatus, String) - Constructor for exception org.springframework.web.client.HttpServerErrorException
Construct a new instance of HttpServerErrorException based on a HttpStatus and status text.
HttpServerErrorException(HttpStatus, String, byte[], Charset) - Constructor for exception org.springframework.web.client.HttpServerErrorException
Construct a new instance of HttpServerErrorException based on a HttpStatus, status text, and response body content.
HttpStatus - Enum in org.springframework.http
Java 5 enumeration of HTTP status codes.
HttpStatus.Series - Enum in org.springframework.http
Java 5 enumeration of HTTP status series.
HttpStatusCodeException - Exception in org.springframework.web.client
Abstract base class for exceptions based on an HttpStatus.
HttpStatusCodeException(HttpStatus) - Constructor for exception org.springframework.web.client.HttpStatusCodeException
Construct a new instance of HttpStatusCodeException based on a HttpStatus.
HttpStatusCodeException(HttpStatus, String) - Constructor for exception org.springframework.web.client.HttpStatusCodeException
Construct a new instance of HttpStatusCodeException based on a HttpStatus and status text.
HttpStatusCodeException(HttpStatus, String, byte[], Charset) - Constructor for exception org.springframework.web.client.HttpStatusCodeException
Construct a new instance of HttpStatusCodeException based on a HttpStatus, status text, and response body content.

I

IDENTITY - Static variable in class org.springframework.http.ContentCodingType
Public constant encoding type for identity.
IDENTITY_VALUE - Static variable in class org.springframework.http.ContentCodingType
A String equivalent of ContentCodingType.IDENTITY.
IMAGE_GIF - Static variable in class org.springframework.http.MediaType
Public constant media type for image/gif.
IMAGE_GIF_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.IMAGE_GIF.
IMAGE_JPEG - Static variable in class org.springframework.http.MediaType
Public constant media type for image/jpeg.
IMAGE_JPEG_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.IMAGE_JPEG.
IMAGE_PNG - Static variable in class org.springframework.http.MediaType
Public constant media type for image/png.
IMAGE_PNG_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.IMAGE_PNG.
includes(ContentCodingType) - Method in class org.springframework.http.ContentCodingType
Indicate whether this ContentCodingType includes the given coding type.
includes(MediaType) - Method in class org.springframework.http.MediaType
Indicates whether this MediaType includes the given media type.
intercept(HttpRequest, byte[], ClientHttpRequestExecution) - Method in interface org.springframework.http.client.ClientHttpRequestInterceptor
Intercept the given request, and return a response.
InterceptingClientHttpRequestFactory - Class in org.springframework.http.client
Wrapper for a ClientHttpRequestFactory that has support for ClientHttpRequestInterceptors.
InterceptingClientHttpRequestFactory(ClientHttpRequestFactory, List<ClientHttpRequestInterceptor>) - Constructor for class org.springframework.http.client.InterceptingClientHttpRequestFactory
Creates a new instance of the InterceptingClientHttpRequestFactory with the given parameters.
InterceptingHttpAccessor - Class in org.springframework.http.client.support
Base class for RestTemplate and other HTTP accessing gateway helpers, adding interceptor-related properties to HttpAccessor's common properties.
InterceptingHttpAccessor() - Constructor for class org.springframework.http.client.support.InterceptingHttpAccessor
 
isCompatibleWith(ContentCodingType) - Method in class org.springframework.http.ContentCodingType
Indicate whether this ContentCodingType is compatible with the given coding type.
isCompatibleWith(MediaType) - Method in class org.springframework.http.MediaType
Indicates whether this MediaType is compatible with the given media type.
isConcrete() - Method in class org.springframework.http.MediaType
Indicates whether this media type is concrete, i.e.
isEmpty() - Method in class org.springframework.http.HttpHeaders
 
isWildcardSubtype() - Method in class org.springframework.http.MediaType
Indicates whether the subtype is the wildcard character * or not.
isWildcardType() - Method in class org.springframework.http.ContentCodingType
Indicates whether the type is the wildcard character * or not.
isWildcardType() - Method in class org.springframework.http.MediaType
Indicates whether the type is the wildcard character * or not.

K

keySet() - Method in class org.springframework.http.HttpHeaders
 

M

MappingJacksonHttpMessageConverter - Class in org.springframework.http.converter.json
Implementation of HttpMessageConverter that can read and write JSON using Jackson's ObjectMapper.
MappingJacksonHttpMessageConverter() - Constructor for class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
Construct a new BindingJacksonHttpMessageConverter.
match(String) - Method in class org.springframework.web.util.UriTemplate
Match the given URI to a map of variable values.
matches(String) - Method in class org.springframework.web.util.UriTemplate
Indicate whether the given URI matches this template.
MediaType - Class in org.springframework.http
Represents an Internet Media Type, as defined in the HTTP specification.
MediaType(String) - Constructor for class org.springframework.http.MediaType
Create a new MediaType for the given primary type.
MediaType(String, String) - Constructor for class org.springframework.http.MediaType
Create a new MediaType for the given primary type and subtype.
MediaType(String, String, Charset) - Constructor for class org.springframework.http.MediaType
Create a new MediaType for the given type, subtype, and character set.
MediaType(String, String, double) - Constructor for class org.springframework.http.MediaType
Create a new MediaType for the given type, subtype, and quality value.
MediaType(MediaType, Map<String, String>) - Constructor for class org.springframework.http.MediaType
Copy-constructor that copies the type and subtype of the given MediaType, and allows for different parameter.
MediaType(String, String, Map<String, String>) - Constructor for class org.springframework.http.MediaType
Create a new MediaType for the given type, subtype, and parameters.
MULTIPART_FORM_DATA - Static variable in class org.springframework.http.MediaType
Public constant media type for multipart/form-data.
MULTIPART_FORM_DATA_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.MULTIPART_FORM_DATA.

N

newInstance() - Static method in class org.springframework.web.util.UriComponentsBuilder
Returns a new, empty builder.
normalize() - Method in class org.springframework.web.util.UriComponents
Normalize the path removing sequences like "path/..".

O

openConnection(URL, Proxy) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
Opens and returns a connection to the given URL.
optionsForAllow(String, Object...) - Method in interface org.springframework.web.client.RestOperations
Return the value of the Allow header for the given URI.
optionsForAllow(String, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Return the value of the Allow header for the given URI.
optionsForAllow(URI) - Method in interface org.springframework.web.client.RestOperations
Return the value of the Allow header for the given URL.
optionsForAllow(String, Object...) - Method in class org.springframework.web.client.RestTemplate
 
optionsForAllow(String, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
optionsForAllow(URI) - Method in class org.springframework.web.client.RestTemplate
 
org.springframework.http - package org.springframework.http
 
org.springframework.http.client - package org.springframework.http.client
 
org.springframework.http.client.support - package org.springframework.http.client.support
 
org.springframework.http.converter - package org.springframework.http.converter
 
org.springframework.http.converter.feed - package org.springframework.http.converter.feed
 
org.springframework.http.converter.json - package org.springframework.http.converter.json
 
org.springframework.http.converter.xml - package org.springframework.http.converter.xml
 
org.springframework.web.client - package org.springframework.web.client
 
org.springframework.web.client.support - package org.springframework.web.client.support
 
org.springframework.web.util - package org.springframework.web.util
 

P

parseCodingType(String) - Static method in class org.springframework.http.ContentCodingType
Parse the given String into a single ContentCodingType.
parseCodingTypes(String) - Static method in class org.springframework.http.ContentCodingType
Parse the given, comma-separated string into a list of ContentCodingType objects.
parseMediaType(String) - Static method in class org.springframework.http.MediaType
Parse the given String into a single MediaType.
parseMediaTypes(String) - Static method in class org.springframework.http.MediaType
Parse the given, comma-separated string into a list of MediaType objects.
path(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Appends the given path to the existing path of this builder.
pathSegment(String...) - Method in class org.springframework.web.util.UriComponentsBuilder
Appends the given path segments to the existing path of this builder.
port(int) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the URI port.
postForEntity(String, Object, Class<T>, Object...) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URI template, and returns the response as ResponseEntity.
postForEntity(String, Object, Class<T>, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URI template, and returns the response as HttpEntity.
postForEntity(URI, Object, Class<T>) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URL, and returns the response as ResponseEntity.
postForEntity(String, Object, Class<T>, Object...) - Method in class org.springframework.web.client.RestTemplate
 
postForEntity(String, Object, Class<T>, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
postForEntity(URI, Object, Class<T>) - Method in class org.springframework.web.client.RestTemplate
 
postForLocation(String, Object, Object...) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URI template, and returns the value of the Location header.
postForLocation(String, Object, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URI template, and returns the value of the Location header.
postForLocation(URI, Object) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URL, and returns the value of the Location header.
postForLocation(String, Object, Object...) - Method in class org.springframework.web.client.RestTemplate
 
postForLocation(String, Object, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
postForLocation(URI, Object) - Method in class org.springframework.web.client.RestTemplate
 
postForObject(String, Object, Class<T>, Object...) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URI template, and returns the representation found in the response.
postForObject(String, Object, Class<T>, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URI template, and returns the representation found in the response.
postForObject(URI, Object, Class<T>) - Method in interface org.springframework.web.client.RestOperations
Create a new resource by POSTing the given object to the URL, and returns the representation found in the response.
postForObject(String, Object, Class<T>, Object...) - Method in class org.springframework.web.client.RestTemplate
 
postForObject(String, Object, Class<T>, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
postForObject(URI, Object, Class<T>) - Method in class org.springframework.web.client.RestTemplate
 
postProcessCommonsHttpMethod(HttpMethodBase) - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Template method that allows for manipulating the HttpMethodBase before it is returned as part of a CommonsClientHttpRequest.
postProcessHttpRequest(HttpUriRequest) - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Template method that allows for manipulating the HttpUriRequest before it is returned as part of a HttpComponentsClientHttpRequest.
prepareConnection(HttpURLConnection, String) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
Template method for preparing the given HttpURLConnection.
put(String, List<String>) - Method in class org.springframework.http.HttpHeaders
 
put(String, Object, Object...) - Method in interface org.springframework.web.client.RestOperations
Create or update a resource by PUTting the given object to the URI.
put(String, Object, Map<String, ?>) - Method in interface org.springframework.web.client.RestOperations
Creates a new resource by PUTting the given object to URI template.
put(URI, Object) - Method in interface org.springframework.web.client.RestOperations
Creates a new resource by PUTting the given object to URL.
put(String, Object, Object...) - Method in class org.springframework.web.client.RestTemplate
 
put(String, Object, Map<String, ?>) - Method in class org.springframework.web.client.RestTemplate
 
put(URI, Object) - Method in class org.springframework.web.client.RestTemplate
 
putAll(Map<? extends String, ? extends List<String>>) - Method in class org.springframework.http.HttpHeaders
 

Q

QUALITY_VALUE_COMPARATOR - Static variable in class org.springframework.http.ContentCodingType
Comparator used by ContentCodingType.sortByQualityValue(List).
QUALITY_VALUE_COMPARATOR - Static variable in class org.springframework.http.MediaType
Comparator used by MediaType.sortByQualityValue(List).
query(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Appends the given query to the existing query of this builder.
queryParam(String, Object...) - Method in class org.springframework.web.util.UriComponentsBuilder
Appends the given query parameter to the existing query parameters.

R

read(Class<? extends T>, HttpInputMessage) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
This implementation simple delegates to AbstractHttpMessageConverter.readInternal(Class, HttpInputMessage).
read(Class<? extends MultiValueMap<String, ?>>, HttpInputMessage) - Method in class org.springframework.http.converter.FormHttpMessageConverter
 
read(Class<? extends T>, HttpInputMessage) - Method in interface org.springframework.http.converter.HttpMessageConverter
Read an object of the given type form the given input message, and returns it.
readFromSource(Class<? extends T>, HttpHeaders, Source) - Method in class org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter
Abstract template method called from AbstractHttpMessageConverter.read(Class, HttpInputMessage).
readFromSource(Class<? extends T>, HttpHeaders, Source) - Method in class org.springframework.http.converter.xml.SourceHttpMessageConverter
 
readInternal(Class<? extends T>, HttpInputMessage) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Abstract template method that reads the actualy object.
readInternal(Class<? extends byte[]>, HttpInputMessage) - Method in class org.springframework.http.converter.ByteArrayHttpMessageConverter
 
readInternal(Class<? extends T>, HttpInputMessage) - Method in class org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter
 
readInternal(Class<? extends SyndFeed>, HttpInputMessage) - Method in class org.springframework.http.converter.feed.SyndFeedHttpMessageConverter
 
readInternal(Class<?>, HttpInputMessage) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
readInternal(Class<?>, HttpInputMessage) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
 
readInternal(Class<? extends Resource>, HttpInputMessage) - Method in class org.springframework.http.converter.ResourceHttpMessageConverter
 
readInternal(Class<? extends String>, HttpInputMessage) - Method in class org.springframework.http.converter.StringHttpMessageConverter
 
readInternal(Class<? extends T>, HttpInputMessage) - Method in class org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter
 
readInternal(Class<? extends Object>, HttpInputMessage) - Method in class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
 
readOnlyHttpHeaders(HttpHeaders) - Static method in class org.springframework.http.HttpHeaders
Returns HttpHeaders object that can only be read, not written to.
remove(Object) - Method in class org.springframework.http.HttpHeaders
 
replacePath(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the path of this builder overriding all existing path and path segment values.
replaceQuery(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the query of this builder overriding all existing query parameters.
replaceQueryParam(String, Object...) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the query parameter values overriding all existing query values for the same parameter.
RequestCallback - Interface in org.springframework.web.client
Callback interface for code that operates on a ClientHttpRequest.
ResourceAccessException - Exception in org.springframework.web.client
Exception thrown when an I/O error occurs.
ResourceAccessException(String) - Constructor for exception org.springframework.web.client.ResourceAccessException
Construct a new HttpIOException with the given message.
ResourceAccessException(String, IOException) - Constructor for exception org.springframework.web.client.ResourceAccessException
Construct a new HttpIOException with the given message and IOException.
ResourceHttpMessageConverter - Class in org.springframework.http.converter
Implementation of HttpMessageConverter that can read and write Resources.
ResourceHttpMessageConverter() - Constructor for class org.springframework.http.converter.ResourceHttpMessageConverter
 
ResponseEntity<T> - Class in org.springframework.http
Extension of HttpEntity that adds a HttpStatus status code.
ResponseEntity(HttpStatus) - Constructor for class org.springframework.http.ResponseEntity
Create a new ResponseEntity with the given status code, and no body nor headers.
ResponseEntity(T, HttpStatus) - Constructor for class org.springframework.http.ResponseEntity
Create a new ResponseEntity with the given body and status code, and no headers.
ResponseEntity(MultiValueMap<String, String>, HttpStatus) - Constructor for class org.springframework.http.ResponseEntity
Create a new HttpEntity with the given headers and status code, and no body.
ResponseEntity(T, MultiValueMap<String, String>, HttpStatus) - Constructor for class org.springframework.http.ResponseEntity
Create a new HttpEntity with the given body, headers, and status code.
ResponseErrorHandler - Interface in org.springframework.web.client
Strategy interface used by the RestTemplate to determine whether a particular response has an error or not.
ResponseExtractor<T> - Interface in org.springframework.web.client
Generic callback interface used by RestTemplate's retrieval methods Implementations of this interface perform the actual work of extracting data from a ClientHttpResponse, but don't need to worry about exception handling or closing resources.
RestClientException - Exception in org.springframework.web.client
Base class for exceptions thrown by RestTemplate whenever it encounters client-side HTTP errors.
RestClientException(String) - Constructor for exception org.springframework.web.client.RestClientException
Construct a new instance of HttpClientException with the given message.
RestClientException(String, Throwable) - Constructor for exception org.springframework.web.client.RestClientException
Construct a new instance of HttpClientException with the given message and exception.
RestGatewaySupport - Class in org.springframework.web.client.support
Convenient super class for application classes that need REST access.
RestGatewaySupport() - Constructor for class org.springframework.web.client.support.RestGatewaySupport
Construct a new instance of the RestGatewaySupport, with default parameters.
RestGatewaySupport(ClientHttpRequestFactory) - Constructor for class org.springframework.web.client.support.RestGatewaySupport
Construct a new instance of the RestGatewaySupport, with the given ClientHttpRequestFactory.
RestOperations - Interface in org.springframework.web.client
Interface specifying a basic set of RESTful operations.
RestTemplate - Class in org.springframework.web.client
The central class for client-side HTTP access. It simplifies communication with HTTP servers, and enforces RESTful principles.
RestTemplate() - Constructor for class org.springframework.web.client.RestTemplate
Create a new instance of RestTemplate.
RestTemplate(boolean) - Constructor for class org.springframework.web.client.RestTemplate
Create a new instance of RestTemplate.
RestTemplate(ClientHttpRequestFactory) - Constructor for class org.springframework.web.client.RestTemplate
Create a new instance of RestTemplate based on the given ClientHttpRequestFactory.
RestTemplate(boolean, ClientHttpRequestFactory) - Constructor for class org.springframework.web.client.RestTemplate
Create a new instance of RestTemplate based on the given ClientHttpRequestFactory.
RssChannelHttpMessageConverter - Class in org.springframework.http.converter.feed
Implementation of HttpMessageConverter that can read and write RSS feeds.
RssChannelHttpMessageConverter() - Constructor for class org.springframework.http.converter.feed.RssChannelHttpMessageConverter
 

S

scheme(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the URI scheme.
series() - Method in enum org.springframework.http.HttpStatus
Returns the HTTP status series of this status code.
set(String, String) - Method in class org.springframework.http.HttpHeaders
Set the given, single header value under the given name.
setAccept(List<MediaType>) - Method in class org.springframework.http.HttpHeaders
Set the list of acceptable media types, as specified by the Accept header.
setAcceptCharset(List<Charset>) - Method in class org.springframework.http.HttpHeaders
Set the list of acceptable charsets, as specified by the Accept-Charset header.
setAcceptEncoding(List<ContentCodingType>) - Method in class org.springframework.http.HttpHeaders
Set the list of acceptable coding types, as specified by the Accept-Encoding header.
setAcceptEncoding(ContentCodingType) - Method in class org.springframework.http.HttpHeaders
Set the acceptable coding type, as specified by the Accept-Encoding header.
setAcceptLanguage(String) - Method in class org.springframework.http.HttpHeaders
Set the accept language, as specified by the Accept-Language header.
setAll(Map<String, String>) - Method in class org.springframework.http.HttpHeaders
 
setAllow(Set<HttpMethod>) - Method in class org.springframework.http.HttpHeaders
Set the set of allowed HTTP methods, as specified by the Allow header.
setAuthorization(HttpAuthentication) - Method in class org.springframework.http.HttpHeaders
Sets a value for the Authorization header.
setBufferRequestBody(boolean) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
Indicates whether this request factory should buffer the request body internally.
setCacheControl(String) - Method in class org.springframework.http.HttpHeaders
Sets the (new) value of the Cache-Control header.
setCharset(Charset) - Method in class org.springframework.http.converter.FormHttpMessageConverter
Sets the character set used for writing form data.
setChunkSize(int) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
Sets the number of bytes to write in each chunk when not buffering request bodies locally.
setConnectTimeout(int) - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Set the connection timeout for the underlying HttpClient.
setConnectTimeout(int) - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Set the connection timeout for the underlying HttpClient.
setConnectTimeout(int) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
Set the underlying URLConnection's connect timeout (in milliseconds).
setContentDispositionFormData(String, String) - Method in class org.springframework.http.HttpHeaders
Sets the (new) value of the Content-Disposition header for form-data.
setContentEncoding(List<ContentCodingType>) - Method in class org.springframework.http.HttpHeaders
Set the list of content coding types, as specified by the Content-Encoding header.
setContentEncoding(ContentCodingType) - Method in class org.springframework.http.HttpHeaders
Set the content coding type, as specified by the Content-Encoding header.
setContentLength(long) - Method in class org.springframework.http.HttpHeaders
Set the length of the body in bytes, as specified by the Content-Length header.
setContentType(MediaType) - Method in class org.springframework.http.HttpHeaders
Set the media type of the body, as specified by the Content-Type header.
setDate(long) - Method in class org.springframework.http.HttpHeaders
Sets the date and time at which the message was created, as specified by the Date header.
setErrorHandler(ResponseErrorHandler) - Method in class org.springframework.web.client.RestTemplate
Set the error handler.
setETag(String) - Method in class org.springframework.http.HttpHeaders
Sets the (new) entity tag of the body, as specified by the ETag header.
setExpires(long) - Method in class org.springframework.http.HttpHeaders
Sets the date and time at which the message is no longer valid, as specified by the Expires header.
setGson(Gson) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
Sets the Gson for this view.
setHttpClient(HttpClient) - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Set the HttpClient used by this factory.
setHttpClient(HttpClient) - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Set the HttpClient used by this factory.
setIfModifiedSince(long) - Method in class org.springframework.http.HttpHeaders
Sets the (new) value of the If-Modified-Since header.
setIfNoneMatch(String) - Method in class org.springframework.http.HttpHeaders
Sets the (new) value of the If-None-Match header.
setIfNoneMatch(List<String>) - Method in class org.springframework.http.HttpHeaders
Sets the (new) values of the If-None-Match header.
setInterceptors(List<ClientHttpRequestInterceptor>) - Method in class org.springframework.http.client.support.InterceptingHttpAccessor
Sets the request interceptors that this accessor should use.
setLastModified(long) - Method in class org.springframework.http.HttpHeaders
Sets the time the resource was last changed, as specified by the Last-Modified header.
setLocation(URI) - Method in class org.springframework.http.HttpHeaders
Set the (new) location of a resource, as specified by the Location header.
setMessageConverters(List<HttpMessageConverter<?>>) - Method in class org.springframework.web.client.RestTemplate
Set the message body converters to use.
setObjectMapper(ObjectMapper) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
Set the ObjectMapper for this view.
setPartConverters(List<HttpMessageConverter<?>>) - Method in class org.springframework.http.converter.FormHttpMessageConverter
Set the message body converters to use.
setPragma(String) - Method in class org.springframework.http.HttpHeaders
Sets the (new) value of the Pragma header.
setPrefixJson(boolean) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
Indicates whether the JSON output by this view should be prefixed with "{} &&".
setPrefixJson(boolean) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
Indicate whether the JSON output by this view should be prefixed with "{} &&".
setProxy(Proxy) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
Sets the Proxy to use for this request factory.
setReadTimeout(int) - Method in class org.springframework.http.client.CommonsClientHttpRequestFactory
Deprecated. Set the socket read timeout for the underlying HttpClient.
setReadTimeout(int) - Method in class org.springframework.http.client.HttpComponentsClientHttpRequestFactory
Set the socket read timeout for the underlying HttpClient.
setReadTimeout(int) - Method in class org.springframework.http.client.SimpleClientHttpRequestFactory
Set the underlying URLConnection's read timeout (in milliseconds).
setRequestFactory(ClientHttpRequestFactory) - Method in class org.springframework.http.client.support.HttpAccessor
Set the request factory that this accessor uses for obtaining HttpRequests.
setRestTemplate(RestTemplate) - Method in class org.springframework.web.client.support.RestGatewaySupport
Sets the RestTemplate for the gateway.
setSerializer(Serializer) - Method in class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
Sets the Serializer for this view.
setSupportedMediaTypes(List<MediaType>) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Set the list of MediaType objects supported by this converter.
setSupportedMediaTypes(List<MediaType>) - Method in class org.springframework.http.converter.FormHttpMessageConverter
Set the list of MediaType objects supported by this converter.
setType(Type) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
setUserAgent(String) - Method in class org.springframework.http.HttpHeaders
Sets the (new) value of the User-Agent header.
setWriteAcceptCharset(boolean) - Method in class org.springframework.http.converter.StringHttpMessageConverter
Indicates whether the Accept-Charset should be written to any outgoing request.
shouldBuffer(URI, HttpMethod) - Method in class org.springframework.http.client.BufferingClientHttpRequestFactory
Indicates whether the request/response exchange for the given URI and method should be buffered in memory.
SimpleClientHttpRequestFactory - Class in org.springframework.http.client
ClientHttpRequestFactory implementation that uses standard J2SE facilities.
SimpleClientHttpRequestFactory() - Constructor for class org.springframework.http.client.SimpleClientHttpRequestFactory
 
SimpleXmlHttpMessageConverter - Class in org.springframework.http.converter.xml
Implementation of HttpMessageConverter that can read and write XML using Simple's Serializer abstraction.
SimpleXmlHttpMessageConverter() - Constructor for class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
Construct a new SimpleXmlHttpMessageConverter with a default Serializer.
SimpleXmlHttpMessageConverter(Serializer) - Constructor for class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
Construct a new SimpleXmlHttpMessageConverter with a customized Serializer.
size() - Method in class org.springframework.http.HttpHeaders
 
sortByQualityValue(List<ContentCodingType>) - Static method in class org.springframework.http.ContentCodingType
Sorts the given list of ContentCodingType objects by quality value.
sortByQualityValue(List<MediaType>) - Static method in class org.springframework.http.MediaType
Sorts the given list of MediaType objects by quality value.
sortBySpecificity(List<MediaType>) - Static method in class org.springframework.http.MediaType
Sorts the given list of MediaType objects by specificity.
SourceHttpMessageConverter<T extends javax.xml.transform.Source> - Class in org.springframework.http.converter.xml
Implementation of HttpMessageConverter that can read and write Source objects.
SourceHttpMessageConverter() - Constructor for class org.springframework.http.converter.xml.SourceHttpMessageConverter
 
SPECIFICITY_COMPARATOR - Static variable in class org.springframework.http.MediaType
Comparator used by MediaType.sortBySpecificity(List).
StringHttpMessageConverter - Class in org.springframework.http.converter
Implementation of HttpMessageConverter that can read and write strings.
StringHttpMessageConverter() - Constructor for class org.springframework.http.converter.StringHttpMessageConverter
Create a new StringHttpMessageConverter instance with a default Charset of ISO-8859-1, and default list of available Charset's from Charset.availableCharsets().
StringHttpMessageConverter(Charset) - Constructor for class org.springframework.http.converter.StringHttpMessageConverter
Create a new StringHttpMessageConverter instance with a default Charset, and default list of available Charset's from Charset.availableCharsets().
StringHttpMessageConverter(Charset, List<Charset>) - Constructor for class org.springframework.http.converter.StringHttpMessageConverter
Create a new StringHttpMessageConverter instance with a default Charset, and list of available Charset's.
supports(Class<?>) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Indicates whether the given class is supported by this converter.
supports(Class<?>) - Method in class org.springframework.http.converter.ByteArrayHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.feed.AtomFeedHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.feed.RssChannelHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.feed.SyndFeedHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.ResourceHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.StringHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
 
supports(Class<?>) - Method in class org.springframework.http.converter.xml.SourceHttpMessageConverter
 
SyndFeedHttpMessageConverter - Class in org.springframework.http.converter.feed
Implementation of HttpMessageConverter that can read and write RSS and ATOM feeds.
SyndFeedHttpMessageConverter() - Constructor for class org.springframework.http.converter.feed.SyndFeedHttpMessageConverter
Constructor that sets the supportedMediaTypes to application/rss+xml and application/atom+xml.

T

TEXT_HTML - Static variable in class org.springframework.http.MediaType
Public constant media type for text/html.
TEXT_HTML_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.TEXT_HTML.
TEXT_PLAIN - Static variable in class org.springframework.http.MediaType
Public constant media type for text/plain.
TEXT_PLAIN_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.TEXT_PLAIN.
TEXT_XML - Static variable in class org.springframework.http.MediaType
Public constant media type for text/xml.
TEXT_XML_VALUE - Static variable in class org.springframework.http.MediaType
A String equivalent of MediaType.TEXT_XML.
toSingleValueMap() - Method in class org.springframework.http.HttpHeaders
 
toString() - Method in class org.springframework.http.ContentCodingType
 
toString(Collection<ContentCodingType>) - Static method in class org.springframework.http.ContentCodingType
Return a string representation of the given list of ContentCodingType objects.
toString() - Method in class org.springframework.http.HttpBasicAuthentication
 
toString() - Method in class org.springframework.http.HttpEntity
 
toString() - Method in class org.springframework.http.HttpHeaders
 
toString() - Method in enum org.springframework.http.HttpStatus
Return a string representation of this status code.
toString() - Method in class org.springframework.http.MediaType
 
toString(Collection<MediaType>) - Static method in class org.springframework.http.MediaType
Return a string representation of the given list of MediaType objects.
toString() - Method in class org.springframework.http.ResponseEntity
 
toString() - Method in class org.springframework.web.util.UriComponents
 
toString() - Method in class org.springframework.web.util.UriTemplate
 
toUri() - Method in class org.springframework.web.util.UriComponents
Returns a URI from this UriComponents instance.
toUriString() - Method in class org.springframework.web.util.UriComponents
Returns a URI string from this UriComponents instance.
transform(Source, Result) - Method in class org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter
Transforms the given Source to the Result.

U

uri(URI) - Method in class org.springframework.web.util.UriComponentsBuilder
Initializes all components of this URI builder with the components of the given URI.
UriComponents - Class in org.springframework.web.util
Represents an immutable collection of URI components, mapping component type to string values.
UriComponentsBuilder - Class in org.springframework.web.util
Builder for UriComponents.
UriComponentsBuilder() - Constructor for class org.springframework.web.util.UriComponentsBuilder
Default constructor.
UriTemplate - Class in org.springframework.web.util
Represents a URI template.
UriTemplate(String) - Constructor for class org.springframework.web.util.UriTemplate
Construct a new UriTemplate with the given URI String.
UriUtils - Class in org.springframework.web.util
Utility class for URI encoding and decoding based on RFC 3986.
UriUtils() - Constructor for class org.springframework.web.util.UriUtils
 
userInfo(String) - Method in class org.springframework.web.util.UriComponentsBuilder
Sets the URI user info.

V

value() - Method in enum org.springframework.http.HttpStatus.Series
Return the integer value of this status series.
value() - Method in enum org.springframework.http.HttpStatus
Return the integer value of this status code.
valueOf(String) - Static method in class org.springframework.http.ContentCodingType
Parse the given String value into a ContentCodingType object.
valueOf(String) - Static method in enum org.springframework.http.HttpMethod
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.http.HttpStatus.Series
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.springframework.http.HttpStatus
Returns the enum constant of this type with the specified name.
valueOf(int) - Static method in enum org.springframework.http.HttpStatus
Return the enum constant of this type with the specified numeric value.
valueOf(String) - Static method in class org.springframework.http.MediaType
Parse the given String value into a MediaType object.
values() - Method in class org.springframework.http.HttpHeaders
 
values() - Static method in enum org.springframework.http.HttpMethod
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.springframework.http.HttpStatus.Series
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.springframework.http.HttpStatus
Returns an array containing the constants of this enum type, in the order they are declared.

W

write(T, MediaType, HttpOutputMessage) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
This implementation delegates to AbstractHttpMessageConverter.getDefaultContentType(Object) if a content type was not provided, calls AbstractHttpMessageConverter.getContentLength(T, org.springframework.http.MediaType), and sets the corresponding headers on the output message.
write(MultiValueMap<String, ?>, MediaType, HttpOutputMessage) - Method in class org.springframework.http.converter.FormHttpMessageConverter
 
write(T, MediaType, HttpOutputMessage) - Method in interface org.springframework.http.converter.HttpMessageConverter
Write an given object to the given output message.
writeInternal(T, HttpOutputMessage) - Method in class org.springframework.http.converter.AbstractHttpMessageConverter
Abstract template method that writes the actual body.
writeInternal(byte[], HttpOutputMessage) - Method in class org.springframework.http.converter.ByteArrayHttpMessageConverter
 
writeInternal(T, HttpOutputMessage) - Method in class org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter
 
writeInternal(SyndFeed, HttpOutputMessage) - Method in class org.springframework.http.converter.feed.SyndFeedHttpMessageConverter
 
writeInternal(Object, HttpOutputMessage) - Method in class org.springframework.http.converter.json.GsonHttpMessageConverter
 
writeInternal(Object, HttpOutputMessage) - Method in class org.springframework.http.converter.json.MappingJacksonHttpMessageConverter
 
writeInternal(Resource, HttpOutputMessage) - Method in class org.springframework.http.converter.ResourceHttpMessageConverter
 
writeInternal(String, HttpOutputMessage) - Method in class org.springframework.http.converter.StringHttpMessageConverter
 
writeInternal(T, HttpOutputMessage) - Method in class org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter
 
writeInternal(Object, HttpOutputMessage) - Method in class org.springframework.http.converter.xml.SimpleXmlHttpMessageConverter
 
writeToResult(T, HttpHeaders, Result) - Method in class org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter
Abstract template method called from AbstractXmlHttpMessageConverter.writeInternal(Object, HttpOutputMessage).
writeToResult(T, HttpHeaders, Result) - Method in class org.springframework.http.converter.xml.SourceHttpMessageConverter
 

X

XmlAwareFormHttpMessageConverter - Class in org.springframework.http.converter.xml
Extension of FormHttpMessageConverter, adding support for XML-based parts through a SourceHttpMessageConverter.
XmlAwareFormHttpMessageConverter() - Constructor for class org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter
 

A B C D E F G H I K M N O P Q R S T U V W X
spring-android-rest-template