Uses of Interface
org.apache.commons.httpclient.HttpMethod

Packages that use HttpMethod
org.apache.commons.httpclient Classes and interfaces supporting the client side of the HTTP protocol. 
org.apache.commons.httpclient.methods Classes implementing HttpMethod for the base HTTP methods. 
org.apache.commons.httpclient.util Provides some utility classes for use by HttpClient. 
 

Uses of HttpMethod in org.apache.commons.httpclient
 

Subinterfaces of HttpMethod in org.apache.commons.httpclient
 interface HttpUrlMethod
          Deprecated. use HttpMethod
 

Classes in org.apache.commons.httpclient that implement HttpMethod
 class ConnectMethod
          Wraps another method to tunnel through a proxy.
 class HttpMethodBase
           An abstract base implementation of HttpMethod.
 

Methods in org.apache.commons.httpclient with parameters of type HttpMethod
 int HttpClient.executeMethod(HttpMethod method)
          Executes the given method.
 int HttpClient.executeMethod(HostConfiguration hostConfiguration, HttpMethod method)
          Executes the given method.
 java.io.InputStream HttpConnection.getResponseInputStream(HttpMethod method)
          Deprecated. Use getResponseInputStream() instead.
static boolean Authenticator.authenticate(HttpMethod method, HttpState state)
          Add requisite authentication credentials to the given method in the given state if possible.
static boolean Authenticator.authenticateProxy(HttpMethod method, HttpState state)
          Add requisite proxy authentication credentials to the given method in the given state if possible.
 

Constructors in org.apache.commons.httpclient with parameters of type HttpMethod
ResponseInputStream(java.io.InputStream stream, HttpMethod method)
          Construct a servlet input stream associated with the specified Request.
ConnectMethod(HttpMethod method)
          Create a connect method wrapping the existing method
ChunkedInputStream(java.io.InputStream in, HttpMethod method)
           
 

Uses of HttpMethod in org.apache.commons.httpclient.methods
 

Classes in org.apache.commons.httpclient.methods that implement HttpMethod
 class DeleteMethod
          DELETE Method.
 class GetMethod
          GET Method.
 class HeadMethod
          HEAD Method.
 class MultipartPostMethod
          POST Method for Multipart encoded forms.
 class OptionsMethod
          OPTIONS Method.
 class PostMethod
          POST Method.
 class PutMethod
          PUT Method.
 class TraceMethod
          TRACE method.
 class UrlDeleteMethod
          Deprecated. use DeleteMethod
 class UrlGetMethod
          Deprecated. use GetMethod
 class UrlHeadMethod
          Deprecated. use HeadMethod
 class UrlOptionsMethod
          Deprecated. use OptionsMethod
 class UrlPostMethod
          Deprecated. use PostMethod
 class UrlPutMethod
          Deprecated. use PutMethod
 

Uses of HttpMethod in org.apache.commons.httpclient.util
 

Constructors in org.apache.commons.httpclient.util with parameters of type HttpMethod
HttpURLConnection(HttpMethod method, java.net.URL url)
          Creates an HttpURLConnection from a HttpMethod.
 



Copyright © 2001-2003 Apache Software Foundation. All Rights Reserved.