public class RequestData
extends XmlRpcHttpRequestConfigImpl
org.apache.xmlrpc.common.XmlRpcHttpRequestConfig
,
which allows to store additional per request data.Constructor and Description |
---|
RequestData(Connection pConnection)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
Connection |
getConnection()
Returns the connection, which is serving the request.
|
int |
getContentLength()
Returns the requests content length.
|
java.lang.String |
getHttpVersion()
Returns the requests HTTP version.
|
java.lang.String |
getMethod()
Returns the request method.
|
boolean |
isByteArrayRequired()
Returns, whether a byte array for buffering the output is
required.
|
boolean |
isKeepAlive()
Returns, whether HTTP keepAlive is enabled for this
connection.
|
boolean |
isSuccess()
Returns, whether the request was executed successfull.
|
void |
setContentLength(int pContentLength)
Sets the requests content length.
|
void |
setHttpVersion(java.lang.String pHttpVersion)
Sets the requests HTTP version.
|
void |
setKeepAlive(boolean pKeepAlive)
Sets, whether HTTP keepAlive is enabled for this
connection.
|
void |
setMethod(java.lang.String pMethod)
Sets the request method.
|
void |
setSuccess(boolean pSuccess)
Sets, whether the request was executed successfull.
|
public RequestData(Connection pConnection)
pConnection
- The connection, which is serving the request.public Connection getConnection()
public boolean isKeepAlive()
public void setKeepAlive(boolean pKeepAlive)
pKeepAlive
- True, if keepAlive is enabled, false otherwise.public java.lang.String getHttpVersion()
public void setHttpVersion(java.lang.String pHttpVersion)
pHttpVersion
- HTTP version, for example "1.0"public int getContentLength()
public void setContentLength(int pContentLength)
pContentLength
- Content length, if known, or -1, if unknown.public boolean isByteArrayRequired()
public java.lang.String getMethod()
public void setMethod(java.lang.String pMethod)
pMethod
- The request method, should be "POST".public boolean isSuccess()
public void setSuccess(boolean pSuccess)
pSuccess
- True for success, false, if an error occurred.