@NotThreadSafe @Deprecated public class RequestWrapper extends AbstractHttpMessage implements HttpUriRequest
HttpRequests that can be used to change
properties of the current request without modifying the original
object.
This class is also capable of resetting the request headers to the state of the original request.
headergroup, params| Constructor and Description |
|---|
RequestWrapper(HttpRequest request)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
abort()
Deprecated.
Aborts execution of the request.
|
int |
getExecCount()
Deprecated.
|
java.lang.String |
getMethod()
Deprecated.
Returns the HTTP method this request uses, such as
GET,
PUT, POST, or other. |
HttpRequest |
getOriginal()
Deprecated.
|
ProtocolVersion |
getProtocolVersion()
Deprecated.
Returns the protocol version this message is compatible with.
|
RequestLine |
getRequestLine()
Deprecated.
Returns the request line of this request.
|
java.net.URI |
getURI()
Deprecated.
Returns the URI this request uses, such as
http://example.org/path/to/file. |
void |
incrementExecCount()
Deprecated.
|
boolean |
isAborted()
Deprecated.
Tests if the request execution has been aborted.
|
boolean |
isRepeatable()
Deprecated.
|
void |
resetHeaders()
Deprecated.
|
void |
setMethod(java.lang.String method)
Deprecated.
|
void |
setProtocolVersion(ProtocolVersion version)
Deprecated.
|
void |
setURI(java.net.URI uri)
Deprecated.
|
addHeader, addHeader, containsHeader, getAllHeaders, getFirstHeader, getHeaders, getLastHeader, getParams, headerIterator, headerIterator, removeHeader, removeHeaders, setHeader, setHeader, setHeaders, setParamsclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitaddHeader, addHeader, containsHeader, getAllHeaders, getFirstHeader, getHeaders, getLastHeader, getParams, headerIterator, headerIterator, removeHeader, removeHeaders, setHeader, setHeader, setHeaders, setParamspublic RequestWrapper(HttpRequest request) throws ProtocolException
ProtocolExceptionpublic void resetHeaders()
public java.lang.String getMethod()
HttpUriRequestGET,
PUT, POST, or other.getMethod in interface HttpUriRequestpublic void setMethod(java.lang.String method)
public ProtocolVersion getProtocolVersion()
HttpMessagegetProtocolVersion in interface HttpMessagepublic void setProtocolVersion(ProtocolVersion version)
public java.net.URI getURI()
HttpUriRequesthttp://example.org/path/to/file.
Note that the URI may be absolute URI (as above) or may be a relative URI.
Implementations are encouraged to return the URI that was initially requested.
To find the final URI after any redirects have been processed, please see the section entitled HTTP execution context in the HttpClient Tutorial
getURI in interface HttpUriRequestpublic void setURI(java.net.URI uri)
public RequestLine getRequestLine()
HttpRequestgetRequestLine in interface HttpRequestpublic void abort()
throws java.lang.UnsupportedOperationException
HttpUriRequestabort in interface HttpUriRequestjava.lang.UnsupportedOperationException - if the abort operation
is not supported / cannot be implemented.public boolean isAborted()
HttpUriRequestisAborted in interface HttpUriRequesttrue if the request execution has been aborted,
false otherwise.public HttpRequest getOriginal()
public boolean isRepeatable()
public int getExecCount()
public void incrementExecCount()