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.auth Provides implementation of various authentication schemes as well as utility classes that can be used to authenticate HTTP requests. 
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
 boolean DefaultMethodRetryHandler.retryMethod(HttpMethod method, HttpConnection connection, HttpRecoverableException recoverableException, int executionCount, boolean requestSent)
          Used retryCount and requestSentRetryEnabled to determine if the given method should be retried.
 int HttpClient.executeMethod(HttpMethod method)
          Executes the given method.
 int HttpClient.executeMethod(HostConfiguration hostConfiguration, HttpMethod method)
          Executes the given method.
 int HttpClient.executeMethod(HostConfiguration hostConfiguration, HttpMethod method, HttpState state)
          Executes the given method.
static boolean Authenticator.authenticate(HttpMethod method, HttpState state)
          Deprecated. use HttpAuthenticator.authenticate(AuthScheme, HttpMethod, HttpConnection, HttpState)
static boolean Authenticator.authenticateProxy(HttpMethod method, HttpState state)
          Deprecated. use HttpAuthenticator.authenticateProxy(AuthScheme, HttpMethod, HttpConnection, HttpState)
 boolean MethodRetryHandler.retryMethod(HttpMethod method, HttpConnection connection, HttpRecoverableException recoverableException, int executionCount, boolean requestSent)
          Determines if a method should be retried after an HttpRecoverableException occurs during execution.
 InputStream HttpConnection.getResponseInputStream(HttpMethod method)
          Deprecated. Use getResponseInputStream() instead.
 

Constructors in org.apache.commons.httpclient with parameters of type HttpMethod
ResponseInputStream.ResponseInputStream(InputStream stream, HttpMethod method)
          Deprecated. Use ChunkedInputStream;
ChunkedInputStream.ChunkedInputStream(InputStream in, HttpMethod method)
           
ConnectMethod.ConnectMethod(HttpMethod method)
          Create a connect method wrapping the existing method
 

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

Methods in org.apache.commons.httpclient.auth with parameters of type HttpMethod
static boolean HttpAuthenticator.authenticateDefault(HttpMethod method, HttpConnection conn, HttpState state)
          Attempt to provide default authentication credentials to the given method in the given context using basic authentication scheme.
static boolean HttpAuthenticator.authenticateProxyDefault(HttpMethod method, HttpConnection conn, HttpState state)
          Attempt to provide default proxy authentication credentials to the given method in the given context using basic authentication scheme.
static boolean HttpAuthenticator.authenticate(AuthScheme authscheme, HttpMethod method, HttpConnection conn, HttpState state)
          Attempt to provide requisite authentication credentials to the given method in the given context using the given authentication scheme.
static boolean HttpAuthenticator.authenticateProxy(AuthScheme authscheme, HttpMethod method, HttpConnection conn, HttpState state)
          Attempt to provide requisite proxy authentication credentials to the given method in the given context using the given authentication scheme.
 

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

Classes in org.apache.commons.httpclient.methods that implement HttpMethod
 class DeleteMethod
          Implements the HTTP DELETE specification.
 class EntityEnclosingMethod
          This abstract class serves as a foundation for all HTTP methods that can enclose an entity within requests
 class ExpectContinueMethod
           This abstract class serves as a foundation for all HTTP methods that support 'Expect: 100-continue' handshake.
 class GetMethod
          Implements the HTTP GET specification.
 class HeadMethod
          Implements the HTTP HEAD specification.
 class MultipartPostMethod
          POST Method for Multipart encoded forms.
 class OptionsMethod
          Implements the HTTP OPTIONS specification.
 class PostMethod
          Implements the HTTP POST specification.
 class PutMethod
          Implements the HTTP PUT specification.
 class TraceMethod
          Implements the HTTP TRACE specification.
 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.HttpURLConnection(HttpMethod method, URL url)
          Creates an HttpURLConnection from a HttpMethod.
 



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