|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HttpUriRequest | |
---|---|
org.apache.http.client | The API for client-side HTTP communication. |
org.apache.http.client.methods | Request implementations for the various HTTP methods like GET and POST. |
org.apache.http.impl.client | Default implementations for interfaces in
org.apache.http.client . |
Uses of HttpUriRequest in org.apache.http.client |
---|
Methods in org.apache.http.client with parameters of type HttpUriRequest | ||
---|---|---|
HttpResponse |
HttpClient.execute(HttpUriRequest request)
Executes a request using the default context. |
|
HttpResponse |
HttpClient.execute(HttpUriRequest request,
HttpContext context)
Executes a request using the given context. |
|
|
HttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler)
Executes a request using the default context and processes the response using the given response handler. |
|
|
HttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
HttpContext context)
Executes a request using the given context and processes the response using the given response handler. |
Uses of HttpUriRequest in org.apache.http.client.methods |
---|
Classes in org.apache.http.client.methods that implement HttpUriRequest | |
---|---|
class |
HttpDelete
HTTP DELETE method |
class |
HttpEntityEnclosingRequestBase
Basic implementation of an entity enclosing HTTP request that can be modified |
class |
HttpGet
HTTP GET method. |
class |
HttpHead
HTTP HEAD method. |
class |
HttpOptions
HTTP OPTIONS method. |
class |
HttpPost
HTTP POST method. |
class |
HttpPut
HTTP PUT method. |
class |
HttpRequestBase
Basic implementation of an HTTP request that can be modified. |
class |
HttpTrace
HTTP TRACE method. |
Uses of HttpUriRequest in org.apache.http.impl.client |
---|
Classes in org.apache.http.impl.client that implement HttpUriRequest | |
---|---|
class |
EntityEnclosingRequestWrapper
A wrapper class for HttpEntityEnclosingRequest s that can
be used to change properties of the current request without
modifying the original object. |
class |
RequestWrapper
A wrapper class for HttpRequest s that can be used to change
properties of the current request without modifying the original
object. |
Methods in org.apache.http.impl.client with parameters of type HttpUriRequest | ||
---|---|---|
HttpResponse |
AbstractHttpClient.execute(HttpUriRequest request)
|
|
HttpResponse |
AbstractHttpClient.execute(HttpUriRequest request,
HttpContext context)
Maps to execute(target, request, context) . |
|
|
AbstractHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler)
|
|
|
AbstractHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
HttpContext context)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |