Uses of Interface
org.springframework.web.client.ResponseExtractor
Packages that use ResponseExtractor Package Description org.springframework.web.client Core package of the client-side web support.Uses of ResponseExtractor in org.springframework.web.client
Classes in org.springframework.web.client that implement ResponseExtractor Modifier and Type Class Description classHttpMessageConverterExtractor<T>Response extractor that uses the given entity converters to convert the response into a typeT.Methods in org.springframework.web.client that return ResponseExtractor Modifier and Type Method Description protected ResponseExtractor<HttpHeaders>AsyncRestTemplate. headersExtractor()Deprecated.Returns a response extractor forHttpHeaders.protected ResponseExtractor<HttpHeaders>RestTemplate. headersExtractor()Return a response extractor forHttpHeaders.protected <T> ResponseExtractor<ResponseEntity<T>>AsyncRestTemplate. responseEntityExtractor(Type responseType)Deprecated.Returns a response extractor forResponseEntity.<T> ResponseExtractor<ResponseEntity<T>>RestTemplate. responseEntityExtractor(Type responseType)Return aResponseExtractorthat prepares aResponseEntity.Methods in org.springframework.web.client with parameters of type ResponseExtractor Modifier and Type Method Description protected <T> ListenableFuture<T>AsyncRestTemplate. doExecute(URI url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor)Deprecated.Execute the given method on the provided URI.protected <T> TRestTemplate. doExecute(URI url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor)Execute the given method on the provided URI.<T> ListenableFuture<T>AsyncRestOperations. execute(String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Object... uriVariables)Deprecated.Asynchronously execute the HTTP method to the given URI template, preparing the request with theAsyncRequestCallback, and reading the response with aResponseExtractor.<T> ListenableFuture<T>AsyncRestOperations. execute(String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Map<String,?> uriVariables)Deprecated.Asynchronously execute the HTTP method to the given URI template, preparing the request with theAsyncRequestCallback, and reading the response with aResponseExtractor.<T> ListenableFuture<T>AsyncRestOperations. execute(URI url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor)Deprecated.Asynchronously execute the HTTP method to the given URL, preparing the request with theAsyncRequestCallback, and reading the response with aResponseExtractor.<T> ListenableFuture<T>AsyncRestTemplate. execute(String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Object... uriVariables)Deprecated.<T> ListenableFuture<T>AsyncRestTemplate. execute(String url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Map<String,?> uriVariables)Deprecated.<T> ListenableFuture<T>AsyncRestTemplate. execute(URI url, HttpMethod method, AsyncRequestCallback requestCallback, ResponseExtractor<T> responseExtractor)Deprecated.<T> TRestOperations. execute(String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Object... uriVariables)Execute the HTTP method to the given URI template, preparing the request with theRequestCallback, and reading the response with aResponseExtractor.<T> TRestOperations. execute(String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Map<String,?> uriVariables)Execute the HTTP method to the given URI template, preparing the request with theRequestCallback, and reading the response with aResponseExtractor.<T> TRestOperations. execute(URI url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor)Execute the HTTP method to the given URL, preparing the request with theRequestCallback, and reading the response with aResponseExtractor.<T> TRestTemplate. execute(String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Object... uriVariables)Execute the HTTP method to the given URI template, preparing the request with theRequestCallback, and reading the response with aResponseExtractor.<T> TRestTemplate. execute(String url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor, Map<String,?> uriVariables)Execute the HTTP method to the given URI template, preparing the request with theRequestCallback, and reading the response with aResponseExtractor.<T> TRestTemplate. execute(URI url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor)Execute the HTTP method to the given URL, preparing the request with theRequestCallback, and reading the response with aResponseExtractor.