Java org.springframework.web.client RestOperations fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.client RestOperations fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.client RestOperations.

The text is from its open source code.

Implementation

org.springframework.web.client.RestOperations has the following implementations.
Click this link to see all its implementation.

Method

voiddelete(String url, Object... uriVariables)
Delete the resources at the specified URI.
voiddelete(String url, Map uriVariables)
Delete the resources at the specified URI.
ResponseEntityexchange(String url, HttpMethod method, @Nullable HttpEntity requestEntity, Class 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 .
ResponseEntityexchange(String url, HttpMethod method, @Nullable HttpEntity requestEntity, Class responseType, Map uriVariables)
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity .
ResponseEntityexchange(String url, HttpMethod method, @Nullable HttpEntity requestEntity, ParameterizedTypeReference 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 .
ResponseEntityexchange(String url, HttpMethod method, @Nullable HttpEntity requestEntity, ParameterizedTypeReference responseType, Map uriVariables)
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity .
ResponseEntityexchange(URI url, HttpMethod method, @Nullable HttpEntity requestEntity, Class responseType)
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity .
ResponseEntityexchange(URI url, HttpMethod method, @Nullable HttpEntity requestEntity, ParameterizedTypeReference responseType)
Execute the HTTP method to the given URI template, writing the given request entity to the request, and returns the response as ResponseEntity .
ResponseEntitygetForEntity(URI url, Class responseType)
Retrieve a representation by doing a GET on the URL .
ResponseEntitygetForEntity(String url, Class responseType, Object... uriVariables)
Retrieve an entity by doing a GET on the specified URL.
ResponseEntitygetForEntity(String url, Class responseType, Map uriVariables)
Retrieve a representation by doing a GET on the URI template.
TgetForObject(URI url, Class responseType)
Retrieve a representation by doing a GET on the URL .
ResponseEntitypostForEntity(URI url, @Nullable Object request, Class responseType)
Create a new resource by POSTing the given object to the URL, and returns the response as ResponseEntity .
ResponseEntitypostForEntity(String url, @Nullable Object request, Class responseType, Object... uriVariables)
Create a new resource by POSTing the given object to the URI template, and returns the response as ResponseEntity .
ResponseEntitypostForEntity(String url, @Nullable Object request, Class responseType, Map uriVariables)
Create a new resource by POSTing the given object to the URI template, and returns the response as HttpEntity .
TpostForObject(URI url, @Nullable Object request, Class responseType)
Create a new resource by POSTing the given object to the URL, and returns the representation found in the response.