|
||||||||
PREV NEXT | FRAMES NO FRAMES |
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 | |
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 |
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 HTTP method . |
int |
HttpClient.executeMethod(HostConfiguration hostConfiguration,
HttpMethod method)
Executes the given HTTP method using custom
host configuration . |
int |
HttpClient.executeMethod(HostConfiguration hostConfiguration,
HttpMethod method,
HttpState state)
Executes the given HTTP method using the given custom
host configuration with the given custom
HTTP state . |
java.io.InputStream |
HttpConnection.getResponseInputStream(HttpMethod method)
Deprecated. Use getResponseInputStream() instead. |
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. |
Constructors in org.apache.commons.httpclient with parameters of type HttpMethod | |
ChunkedInputStream.ChunkedInputStream(java.io.InputStream in,
HttpMethod method)
|
|
ConnectMethod.ConnectMethod(HttpMethod method)
Create a connect method wrapping the existing method |
|
ResponseInputStream.ResponseInputStream(java.io.InputStream stream,
HttpMethod method)
Deprecated. Use ChunkedInputStream; |
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 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
Implements the HTTP multipart POST method. |
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. |
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,
java.net.URL url)
Creates an HttpURLConnection from a HttpMethod . |
|
||||||||
PREV NEXT | FRAMES NO FRAMES |