<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Object... uriVariables) | Deprecated. Asynchronously execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Map<String,?> uriVariables) | Deprecated. Asynchronously execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) | Deprecated. Asynchronously execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String,?> uriVariables) | Deprecated. Asynchronously execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType) | Deprecated. Asynchronously execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) | Deprecated. Asynchronously execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Object... uriVariables) | Deprecated. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Map<String,?> uriVariables) | Deprecated. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) | Deprecated. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String,?> uriVariables) | Deprecated. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType) | Deprecated. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) | Deprecated. |
---|
<T> ResponseEntity<T> | RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Object... uriVariables) | Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ResponseEntity<T> | RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Map<String,?> uriVariables) | Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ResponseEntity<T> | RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) | Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ResponseEntity<T> | RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String,?> uriVariables) | Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ResponseEntity<T> | RestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType) | Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ResponseEntity<T> | RestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) | Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity . |
---|
<T> ResponseEntity<T> | RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Object... uriVariables) | |
---|
<T> ResponseEntity<T> | RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType, Map<String,?> uriVariables) | |
---|
<T> ResponseEntity<T> | RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) | |
---|
<T> ResponseEntity<T> | RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String,?> uriVariables) | |
---|
<T> ResponseEntity<T> | RestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, Class<T> responseType) | |
---|
<T> ResponseEntity<T> | RestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) | |
---|
protected <T> AsyncRequestCallback | AsyncRestTemplate.httpEntityCallback(HttpEntity<T> requestBody) | Deprecated. Returns a request callback implementation that writes the given object to the request stream. |
---|
protected <T> AsyncRequestCallback | AsyncRestTemplate.httpEntityCallback(HttpEntity<T> request, Type responseType) | Deprecated. Returns a request callback implementation that writes the given object to the request stream. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.postForEntity(String url, HttpEntity<?> request, Class<T> responseType, Object... uriVariables) | Deprecated. Create a new resource by POSTing the given object to the URI template, and asynchronously returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.postForEntity(String url, HttpEntity<?> request, Class<T> responseType, Map<String,?> uriVariables) | Deprecated. Create a new resource by POSTing the given object to the URI template, and asynchronously returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestOperations.postForEntity(URI url, HttpEntity<?> request, Class<T> responseType) | Deprecated. Create a new resource by POSTing the given object to the URL, and asynchronously returns the response as ResponseEntity . |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.postForEntity(String url, HttpEntity<?> request, Class<T> responseType, Object... uriVariables) | Deprecated. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.postForEntity(String url, HttpEntity<?> request, Class<T> responseType, Map<String,?> uriVariables) | Deprecated. |
---|
<T> ListenableFuture<ResponseEntity<T>> | AsyncRestTemplate.postForEntity(URI url, HttpEntity<?> request, Class<T> responseType) | Deprecated. |
---|
ListenableFuture<URI> | AsyncRestOperations.postForLocation(String url, HttpEntity<?> request, Object... uriVariables) | Deprecated. Create a new resource by POSTing the given object to the URI template, and asynchronously returns the value of the Location header. |
---|
ListenableFuture<URI> | AsyncRestOperations.postForLocation(String url, HttpEntity<?> request, Map<String,?> uriVariables) | Deprecated. Create a new resource by POSTing the given object to the URI template, and asynchronously returns the value of the Location header. |
---|
ListenableFuture<URI> | AsyncRestOperations.postForLocation(URI url, HttpEntity<?> request) | Deprecated. Create a new resource by POSTing the given object to the URL, and asynchronously returns the value of the Location header. |
---|
ListenableFuture<URI> | AsyncRestTemplate.postForLocation(String url, HttpEntity<?> request, Object... uriVars) | Deprecated. |
---|
ListenableFuture<URI> | AsyncRestTemplate.postForLocation(String url, HttpEntity<?> request, Map<String,?> uriVars) | Deprecated. |
---|
ListenableFuture<URI> | AsyncRestTemplate.postForLocation(URI url, HttpEntity<?> request) | Deprecated. |
---|
ListenableFuture<?> | AsyncRestOperations.put(String url, HttpEntity<?> request, Object... uriVariables) | Deprecated. Create or update a resource by PUTting the given object to the URI. |
---|
ListenableFuture<?> | AsyncRestOperations.put(String url, HttpEntity<?> request, Map<String,?> uriVariables) | Deprecated. Creates a new resource by PUTting the given object to URI template. |
---|
ListenableFuture<?> | AsyncRestOperations.put(URI url, HttpEntity<?> request) | Deprecated. Creates a new resource by PUTting the given object to URL. |
---|
ListenableFuture<?> | AsyncRestTemplate.put(String url, HttpEntity<?> request, Object... uriVars) | Deprecated. |
---|
ListenableFuture<?> | AsyncRestTemplate.put(String url, HttpEntity<?> request, Map<String,?> uriVars) | Deprecated. |
---|
ListenableFuture<?> | AsyncRestTemplate.put(URI url, HttpEntity<?> request) | Deprecated. |
---|