From bc670a06777593639667e9562fffc8cc1d2c8cd9 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Mon, 29 Mar 2010 11:21:55 +0000 Subject: [PATCH] javadoc git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3181 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../springframework/web/client/RestTemplate.java | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/org.springframework.web/src/main/java/org/springframework/web/client/RestTemplate.java b/org.springframework.web/src/main/java/org/springframework/web/client/RestTemplate.java index 19fa94c4164..ceb2444e6fc 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/client/RestTemplate.java +++ b/org.springframework.web/src/main/java/org/springframework/web/client/RestTemplate.java @@ -53,11 +53,17 @@ import org.springframework.web.util.UriUtils; * enforces RESTful principles. It handles HTTP connections, leaving application code to provide URLs (with possible * template variables) and extract results. * - *

The main entry points of this template are the methods named after the six main HTTP methods: - * - * - * + *

The main entry points of this template are the methods named after the six main HTTP methods: + *

HTTP - * methodRestTemplate methods
DELETE{@link #delete}
GET{@link #getForObject}
HEAD{@link #headForHeaders}
OPTIONS{@link #optionsForAllow}
POST{@link #postForLocation}
{@link #postForObject}
PUT{@link #put}
+ * + * + * + * + * + * + * + * + * * *
HTTP methodRestTemplate methods
DELETE{@link #delete}
GET{@link #getForObject}
{@link #getForEntity}
HEAD{@link #headForHeaders}
OPTIONS{@link #optionsForAllow}
POST{@link #postForLocation}
{@link #postForObject}
PUT{@link #put}
any{@link #exchange}
{@link #execute}
*