Uses of Interface
org.apache.http.client.methods.HttpUriRequest
| Package | Description |
|---|---|
| org.apache.http.client |
The API for client-side HTTP communication and
entry point to the HttpClient module.
|
| org.apache.http.client.methods |
Request implementations for the various HTTP methods like GET and POST.
|
| org.apache.http.impl.client |
-
Uses of HttpUriRequest in org.apache.http.client
Methods in org.apache.http.client with parameters of type HttpUriRequest Modifier and Type Method Description HttpResponseHttpClient. execute(HttpUriRequest request)Executes a request using the default context.<T> THttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)Executes a request using the default context and processes the response using the given response handler.<T> THttpClient. 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.HttpResponseHttpClient. execute(HttpUriRequest request, HttpContext context)Executes a request using the given context. -
Uses of HttpUriRequest in org.apache.http.client.methods
Classes in org.apache.http.client.methods that implement HttpUriRequest Modifier and Type Class Description classHttpDeleteHTTP DELETE methodclassHttpEntityEnclosingRequestBaseBasic implementation of an HTTP request that can be modified.classHttpGetHTTP GET method.classHttpHeadHTTP HEAD method.classHttpOptionsHTTP OPTIONS method.classHttpPostHTTP POST method.classHttpPutHTTP PUT method.classHttpRequestBaseBasic implementation of an HTTP request that can be modified.classHttpTraceHTTP TRACE method. -
Uses of HttpUriRequest in org.apache.http.impl.client
Classes in org.apache.http.impl.client that implement HttpUriRequest Modifier and Type Class Description classEntityEnclosingRequestWrapperA wrapper class forHttpEntityEnclosingRequests that can be used to change properties of the current request without modifying the original object.classRequestWrapperA wrapper class forHttpRequests 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 Modifier and Type Method Description HttpResponseAbstractHttpClient. execute(HttpUriRequest request)<T> TAbstractHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)<T> TAbstractHttpClient. execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, HttpContext context)HttpResponseAbstractHttpClient. execute(HttpUriRequest request, HttpContext context)Maps toexecute(target, request, context).