exchange | 
 Extension for RestOperations.exchange providing an  fun <T> RestOperations.exchange(url: String, method: HttpMethod, requestEntity: HttpEntity<*>? = null, vararg uriVariables: Any): ResponseEntity<T>fun <T> RestOperations.exchange(url: String, method: HttpMethod, requestEntity: HttpEntity<*>? = null, uriVariables: Map<String, *>): ResponseEntity<T>fun <T> RestOperations.exchange(url: URI, method: HttpMethod, requestEntity: HttpEntity<*>? = null): ResponseEntity<T>fun <T> RestOperations.exchange(requestEntity: RequestEntity<*>): ResponseEntity<T> | 
getForEntity | 
 Extension for RestOperations.getForEntity providing a  fun <T> RestOperations.getForEntity(url: URI): ResponseEntity<T>fun <T> RestOperations.getForEntity(url: String, vararg uriVariables: Any): ResponseEntity<T>fun <T> RestOperations.getForEntity(url: String, uriVariables: Map<String, *>): ResponseEntity<T> | 
getForObject | 
 Extension for RestOperations.getForObject providing a  fun <T> RestOperations.getForObject(url: String, vararg uriVariables: Any): Tfun <T> RestOperations.getForObject(url: String, uriVariables: Map<String, Any?>): Tfun <T> RestOperations.getForObject(url: URI): T | 
patchForObject | 
 Extension for RestOperations.patchForObject providing a  fun <T> RestOperations.patchForObject(url: String, request: Any? = null, vararg uriVariables: Any): Tfun <T> RestOperations.patchForObject(url: String, request: Any? = null, uriVariables: Map<String, *>): Tfun <T> RestOperations.patchForObject(url: URI, request: Any? = null): T | 
postForEntity | 
 Extension for RestOperations.postForEntity providing a  fun <T> RestOperations.postForEntity(url: String, request: Any? = null, vararg uriVariables: Any): ResponseEntity<T>fun <T> RestOperations.postForEntity(url: String, request: Any? = null, uriVariables: Map<String, *>): ResponseEntity<T>fun <T> RestOperations.postForEntity(url: URI, request: Any? = null): ResponseEntity<T> | 
postForObject | 
 Extension for RestOperations.postForObject providing a  fun <T> RestOperations.postForObject(url: String, request: Any? = null, vararg uriVariables: Any): Tfun <T> RestOperations.postForObject(url: String, request: Any? = null, uriVariables: Map<String, *>): Tfun <T> RestOperations.postForObject(url: URI, request: Any? = null): T |