Uses of Interface
org.apache.http.client.methods.HttpUriRequest
-
Packages that use HttpUriRequest Package Description org.apache.http.client Client HTTP communication APIs.org.apache.http.client.fluent Simple facade APIs for HttpClient based on the concept of a fluent interface.org.apache.http.client.methods Standard HTTP method implementations.org.apache.http.impl.client Default HTTP client implementation.org.apache.http.impl.client.cache This package contains a cache module that can be used for HTTP/1.1 client-side caching. -
-
Uses of HttpUriRequest in org.apache.http.client
Methods in org.apache.http.client that return HttpUriRequest Modifier and Type Method 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.Methods in org.apache.http.client with parameters of type HttpUriRequest Modifier and Type Method Description org.apache.http.HttpResponse
HttpClient. execute(HttpUriRequest request)
Executes HTTP request using the default context.<T> T
HttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
Executes HTTP 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 HTTP request using the given context and processes the response using the given response handler.org.apache.http.HttpResponse
HttpClient. execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context)
Executes HTTP request using the given context. -
Uses of HttpUriRequest in org.apache.http.client.fluent
Classes in org.apache.http.client.fluent that implement HttpUriRequest Modifier and Type Class Description (package private) class
InternalEntityEnclosingHttpRequest
(package private) class
InternalHttpRequest
-
Uses of HttpUriRequest in org.apache.http.client.methods
Classes in org.apache.http.client.methods that implement HttpUriRequest Modifier and Type Class Description class
HttpDelete
HTTP DELETE methodclass
HttpEntityEnclosingRequestBase
Basic implementation of an entity enclosing HTTP request that can be modifiedclass
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
Base implementation ofHttpUriRequest
.class
HttpRequestWrapper
A wrapper class forHttpRequest
that can be used to change properties of the current request without modifying the original object.(package private) static class
HttpRequestWrapper.HttpEntityEnclosingRequestWrapper
class
HttpTrace
HTTP TRACE method.(package private) static class
RequestBuilder.InternalEntityEclosingRequest
(package private) static class
RequestBuilder.InternalRequest
Methods in org.apache.http.client.methods that return HttpUriRequest Modifier and Type Method Description HttpUriRequest
RequestBuilder. build()
-
Uses of HttpUriRequest in org.apache.http.impl.client
Classes in org.apache.http.impl.client that implement HttpUriRequest Modifier and Type Class Description class
EntityEnclosingRequestWrapper
Deprecated.(4.3) do not use.class
RequestWrapper
Deprecated.(4.3) do not use.Fields in org.apache.http.impl.client declared as HttpUriRequest Modifier and Type Field Description private HttpUriRequest
HttpRequestFutureTask. request
private HttpUriRequest
HttpRequestTaskCallable. request
Methods in org.apache.http.impl.client that return HttpUriRequest Modifier and Type Method Description HttpUriRequest
DefaultRedirectStrategy. getRedirect(org.apache.http.HttpRequest request, org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context)
HttpUriRequest
DefaultRedirectStrategyAdaptor. getRedirect(org.apache.http.HttpRequest request, org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context)
Deprecated.Methods in org.apache.http.impl.client with parameters of type HttpUriRequest Modifier and Type Method Description private static org.apache.http.HttpHost
CloseableHttpClient. determineTarget(HttpUriRequest request)
org.apache.http.HttpResponse
AutoRetryHttpClient. execute(HttpUriRequest request)
Deprecated.<T> T
AutoRetryHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
Deprecated.<T> T
AutoRetryHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
Deprecated.org.apache.http.HttpResponse
AutoRetryHttpClient. execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context)
Deprecated.CloseableHttpResponse
CloseableHttpClient. execute(HttpUriRequest request)
Executes HTTP request using the default context.<T> T
CloseableHttpClient. 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
CloseableHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
Executes a request using the default context and processes the response using the given response handler.CloseableHttpResponse
CloseableHttpClient. execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context)
Executes HTTP request using the given context.org.apache.http.HttpResponse
DecompressingHttpClient. execute(HttpUriRequest request)
Deprecated.<T> T
DecompressingHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
Deprecated.<T> T
DecompressingHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
Deprecated.org.apache.http.HttpResponse
DecompressingHttpClient. execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context)
Deprecated.<T> HttpRequestFutureTask<T>
FutureRequestExecutionService. execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context, ResponseHandler<T> responseHandler)
Schedule a request for execution.<T> HttpRequestFutureTask<T>
FutureRequestExecutionService. execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context, ResponseHandler<T> responseHandler, org.apache.http.concurrent.FutureCallback<T> callback)
Schedule a request for execution.(package private) org.apache.http.HttpHost
DecompressingHttpClient. getHttpHost(HttpUriRequest request)
Deprecated.Constructors in org.apache.http.impl.client with parameters of type HttpUriRequest Constructor Description HttpRequestFutureTask(HttpUriRequest request, HttpRequestTaskCallable<V> httpCallable)
HttpRequestTaskCallable(HttpClient httpClient, HttpUriRequest request, org.apache.http.protocol.HttpContext context, ResponseHandler<V> responseHandler, org.apache.http.concurrent.FutureCallback<V> callback, FutureRequestExecutionMetrics metrics)
-
Uses of HttpUriRequest in org.apache.http.impl.client.cache
Methods in org.apache.http.impl.client.cache with parameters of type HttpUriRequest Modifier and Type Method Description org.apache.http.HttpResponse
CachingHttpClient. execute(HttpUriRequest request)
Deprecated.<T> T
CachingHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
Deprecated.<T> T
CachingHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
Deprecated.org.apache.http.HttpResponse
CachingHttpClient. execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context)
Deprecated.
-