null
+ * @param responseType the type of the return value
* @param uriVariables the variables to expand the template
* @return the converted object
* @see HttpEntity
@@ -195,6 +196,7 @@ public interface RestOperations {
* add additional HTTP headers to the request.
* @param url the URL
* @param request the Object to be POSTed, may be null
+ * @param responseType the type of the return value
* @param uriVariables the variables to expand the template
* @return the converted object
* @see HttpEntity
@@ -209,6 +211,7 @@ public interface RestOperations {
* add additional HTTP headers to the request.
* @param url the URL
* @param request the Object to be POSTed, may be null
+ * @param responseType the type of the return value
* @return the converted object
* @see HttpEntity
*/
@@ -347,11 +350,56 @@ public interface RestOperations {
*/
SetURI Template variables are expanded using the given URI variables, if any.
+ * @param url the URL
+ * @param method the HTTP method (GET, POST, etc)
+ * @param requestEntity the entity (headers and/or body) to write to the request, may be {@code null}
+ * @param responseType the type of the return value
+ * @param uriVariables the variables to expand in the template
+ * @return the response as entity
+ * @since 3.0.2
+ */
+ URI Template variables are expanded using the given URI variables, if any.
+ * @param url the URL
+ * @param method the HTTP method (GET, POST, etc)
+ * @param requestEntity the entity (headers and/or body) to write to the request, may be {@code null}
+ * @param responseType the type of the return value
+ * @param uriVariables the variables to expand in the template
+ * @return the response as entity
+ * @since 3.0.2
+ */
+ URI Template variables are expanded using the given URI variables, if any.
* @param url the URL
* @param method the HTTP method (GET, POST, etc)
@@ -364,7 +412,7 @@ public interface RestOperations {
ResponseExtractor URI Template variables are expanded using the given URI variables map.
* @param url the URL
@@ -378,7 +426,7 @@ public interface RestOperations {
ResponseExtractor