Package | Description |
---|---|
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 . |
Modifier and Type | Method and Description |
---|---|
HttpUriRequest |
RedirectStrategy.getRedirect(org.apache.http.HttpRequest request,
org.apache.http.HttpResponse response,
org.apache.http.protocol.HttpContext context)
Determines the redirect location given the response from the target
server and the current request execution context and generates a new
request to be sent to the location.
|
Modifier and Type | Method and Description |
---|---|
org.apache.http.HttpResponse |
HttpClient.execute(HttpUriRequest request)
Executes a request using the default context.
|
org.apache.http.HttpResponse |
HttpClient.execute(HttpUriRequest request,
org.apache.http.protocol.HttpContext context)
Executes a request using the given context.
|
<T> T |
HttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler)
Executes a request using the default context and processes the
response using the given response handler.
|
<T> T |
HttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context)
Executes a request using the given context and processes the
response using the given response handler.
|
Modifier and Type | Class and Description |
---|---|
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 |
HttpPatch
HTTP PATCH 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.
|
Modifier and Type | Class and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
HttpUriRequest |
DefaultRedirectStrategy.getRedirect(org.apache.http.HttpRequest request,
org.apache.http.HttpResponse response,
org.apache.http.protocol.HttpContext context) |
Modifier and Type | Method and Description |
---|---|
org.apache.http.HttpResponse |
DecompressingHttpClient.execute(HttpUriRequest request) |
org.apache.http.HttpResponse |
AutoRetryHttpClient.execute(HttpUriRequest request) |
org.apache.http.HttpResponse |
AbstractHttpClient.execute(HttpUriRequest request) |
org.apache.http.HttpResponse |
DecompressingHttpClient.execute(HttpUriRequest request,
org.apache.http.protocol.HttpContext context) |
org.apache.http.HttpResponse |
AutoRetryHttpClient.execute(HttpUriRequest request,
org.apache.http.protocol.HttpContext context) |
org.apache.http.HttpResponse |
AbstractHttpClient.execute(HttpUriRequest request,
org.apache.http.protocol.HttpContext context)
Maps to
execute(target, request, context) . |
<T> T |
DecompressingHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler) |
<T> T |
AutoRetryHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler) |
<T> T |
AbstractHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler) |
<T> T |
DecompressingHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context) |
<T> T |
AutoRetryHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context) |
<T> T |
AbstractHttpClient.execute(HttpUriRequest request,
ResponseHandler<? extends T> responseHandler,
org.apache.http.protocol.HttpContext context) |
Copyright © 1999-2013 The Apache Software Foundation. All Rights Reserved.