Uses of Interface
org.springframework.web.client.RequestCallback
Packages that use RequestCallback Package Description org.springframework.web.client Core package of the client-side web support.Uses of RequestCallback in org.springframework.web.client
Methods in org.springframework.web.client that return RequestCallback Modifier and Type Method Description <T> RequestCallbackRestTemplate. acceptHeaderRequestCallback(Class<T> responseType)Return aRequestCallbackthat sets the requestAcceptheader based on the given response type, cross-checked against the configured message converters.<T> RequestCallbackRestTemplate. httpEntityCallback(Object requestBody)Return aRequestCallbackimplementation that writes the given object to the request stream.<T> RequestCallbackRestTemplate. httpEntityCallback(Object requestBody, Type responseType)Return aRequestCallbackimplementation that: Sets the requestAcceptheader based on the given response type, cross-checked against the configured message converters.Methods in org.springframework.web.client with parameters of type RequestCallback Modifier and Type Method Description protected <T> TRestTemplate. doExecute(URI url, HttpMethod method, RequestCallback requestCallback, ResponseExtractor<T> responseExtractor)Execute the given method on the provided URI.<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.