As with other methods, not currently thread-safe

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@756294 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-03-20 01:51:09 +00:00
parent f97f49b471
commit e895b182a5
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,8 @@ package org.apache.http.client.methods;
import java.net.URI;
import net.jcip.annotations.NotThreadSafe;
/**
* HTTP DELETE method
* <p>
@ -48,6 +50,7 @@ import java.net.URI;
*
* @since 4.0
*/
@NotThreadSafe // HttpRequestBase is @NotThreadSafe
public class HttpDelete extends HttpRequestBase {
public final static String METHOD_NAME = "DELETE";