|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
---|
Classes in org.apache.commons.httpclient that implement HttpMethod | |
---|---|
class |
ConnectMethod
Establishes a tunneled HTTP connection via the CONNECT method. |
class |
HttpMethodBase
An abstract base implementation of HttpMethod. |
Methods in org.apache.commons.httpclient with parameters of type HttpMethod | |
---|---|
int |
HttpClient.executeMethod(HostConfiguration hostConfiguration,
HttpMethod method)
Executes the given HTTP method using custom
host configuration . |
int |
HttpClient.executeMethod(HostConfiguration hostconfig,
HttpMethod method,
HttpState state)
Executes the given HTTP method using the given custom
host configuration with the given custom
HTTP state . |
int |
HttpClient.executeMethod(HttpMethod method)
Executes the given HTTP method . |
boolean |
DefaultMethodRetryHandler.retryMethod(HttpMethod method,
HttpConnection connection,
HttpRecoverableException recoverableException,
int executionCount,
boolean requestSent)
Deprecated. Used retryCount and requestSentRetryEnabled to determine
if the given method should be retried. |
boolean |
MethodRetryHandler.retryMethod(HttpMethod method,
HttpConnection connection,
HttpRecoverableException recoverableException,
int executionCount,
boolean requestSent)
Deprecated. Determines if a method should be retried after an HttpRecoverableException occurs during execution. |
boolean |
HttpMethodRetryHandler.retryMethod(HttpMethod method,
IOException exception,
int executionCount)
Determines if a method should be retried after an HttpRecoverableException occurs during execution. |
boolean |
DefaultHttpMethodRetryHandler.retryMethod(HttpMethod method,
IOException exception,
int executionCount)
Used retryCount and requestSentRetryEnabled to determine
if the given method should be retried. |
Constructors in org.apache.commons.httpclient with parameters of type HttpMethod | |
---|---|
ChunkedInputStream(InputStream in,
HttpMethod method)
ChunkedInputStream constructor that associates the chunked input stream with a HTTP method . |
|
ConnectMethod(HttpMethod method)
Deprecated. the wrapped method is no longer used 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.authenticate(AuthScheme authscheme,
HttpMethod method,
HttpConnection conn,
HttpState state)
Deprecated. use AuthScheme |
String |
BasicScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces basic authorization string for the given set of Credentials . |
String |
DigestScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces a digest authorization string for the given set of Credentials , method name and URI. |
String |
AuthScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces an authorization string for the given set of Credentials . |
String |
NTLMScheme.authenticate(Credentials credentials,
HttpMethod method)
Produces NTLM authorization string for the given set of Credentials . |
static boolean |
HttpAuthenticator.authenticateDefault(HttpMethod method,
HttpConnection conn,
HttpState state)
Deprecated. use AuthScheme |
static boolean |
HttpAuthenticator.authenticateProxy(AuthScheme authscheme,
HttpMethod method,
HttpConnection conn,
HttpState state)
Deprecated. use AuthScheme |
static boolean |
HttpAuthenticator.authenticateProxyDefault(HttpMethod method,
HttpConnection conn,
HttpState state)
Deprecated. use AuthScheme |
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 method. |
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 method. |
class |
HeadMethod
Implements the HTTP HEAD method. |
class |
MultipartPostMethod
Deprecated. Use MultipartRequestEntity
in conjunction with PostMethod instead. |
class |
OptionsMethod
Implements the HTTP OPTIONS method. |
class |
PostMethod
Implements the HTTP POST method. |
class |
PutMethod
Implements the HTTP PUT method. |
class |
TraceMethod
Implements the HTTP TRACE method. |
Uses of HttpMethod in org.apache.commons.httpclient.util |
---|
Constructors in org.apache.commons.httpclient.util with parameters of type HttpMethod | |
---|---|
HttpURLConnection(HttpMethod method,
URL url)
Creates an HttpURLConnection from a HttpMethod . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |