Package org.apache.http.impl.client
Class EntityEnclosingRequestWrapper
- java.lang.Object
-
- org.apache.http.message.AbstractHttpMessage
-
- org.apache.http.impl.client.RequestWrapper
-
- org.apache.http.impl.client.EntityEnclosingRequestWrapper
-
- All Implemented Interfaces:
HttpUriRequest
,org.apache.http.HttpEntityEnclosingRequest
,org.apache.http.HttpMessage
,org.apache.http.HttpRequest
@Deprecated public class EntityEnclosingRequestWrapper extends RequestWrapper implements org.apache.http.HttpEntityEnclosingRequest
Deprecated.(4.3) do not use.A wrapper class forHttpEntityEnclosingRequest
s 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.
- Since:
- 4.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
EntityEnclosingRequestWrapper.EntityWrapper
Deprecated.
-
Constructor Summary
Constructors Constructor Description EntityEnclosingRequestWrapper(org.apache.http.HttpEntityEnclosingRequest request)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
expectContinue()
Deprecated.org.apache.http.HttpEntity
getEntity()
Deprecated.boolean
isRepeatable()
Deprecated.void
setEntity(org.apache.http.HttpEntity entity)
Deprecated.-
Methods inherited from class org.apache.http.impl.client.RequestWrapper
abort, getExecCount, getMethod, getOriginal, getProtocolVersion, getRequestLine, getURI, incrementExecCount, isAborted, resetHeaders, setMethod, setProtocolVersion, setURI
-
Methods inherited from class org.apache.http.message.AbstractHttpMessage
addHeader, addHeader, containsHeader, getAllHeaders, getFirstHeader, getHeaders, getLastHeader, getParams, headerIterator, headerIterator, removeHeader, removeHeaders, setHeader, setHeader, setHeaders, setParams
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
getEntity
public org.apache.http.HttpEntity getEntity()
Deprecated.- Specified by:
getEntity
in interfaceorg.apache.http.HttpEntityEnclosingRequest
-
setEntity
public void setEntity(org.apache.http.HttpEntity entity)
Deprecated.- Specified by:
setEntity
in interfaceorg.apache.http.HttpEntityEnclosingRequest
-
expectContinue
public boolean expectContinue()
Deprecated.- Specified by:
expectContinue
in interfaceorg.apache.http.HttpEntityEnclosingRequest
-
isRepeatable
public boolean isRepeatable()
Deprecated.- Overrides:
isRepeatable
in classRequestWrapper
-
-