|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xmlrpc.XmlRpcConfigImpl org.apache.xmlrpc.common.XmlRpcHttpRequestConfigImpl org.apache.xmlrpc.webserver.RequestData
public class RequestData
Web servers extension of
XmlRpcHttpRequestConfig
,
which allows to store additional per request data.
Field Summary |
---|
Fields inherited from interface org.apache.xmlrpc.common.XmlRpcStreamConfig |
---|
UTF8_ENCODING |
Constructor Summary | |
---|---|
RequestData(Connection pConnection)
Creates a new instance. |
Method Summary | |
---|---|
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. |
Methods inherited from class org.apache.xmlrpc.common.XmlRpcHttpRequestConfigImpl |
---|
getBasicPassword, getBasicUserName, getConnectionTimeout, getReplyTimeout, isEnabledForExceptions, isGzipCompressing, isGzipRequesting, setBasicPassword, setBasicUserName, setConnectionTimeout, setEnabledForExceptions, setGzipCompressing, setGzipRequesting, setReplyTimeout |
Methods inherited from class org.apache.xmlrpc.XmlRpcConfigImpl |
---|
getBasicEncoding, getEncoding, getTimeZone, isContentLengthOptional, isEnabledForExtensions, setBasicEncoding, setContentLengthOptional, setEnabledForExtensions, setEncoding, setTimeZone |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.xmlrpc.common.XmlRpcHttpConfig |
---|
getBasicEncoding, isContentLengthOptional |
Methods inherited from interface org.apache.xmlrpc.common.XmlRpcStreamConfig |
---|
getEncoding |
Methods inherited from interface org.apache.xmlrpc.XmlRpcConfig |
---|
getTimeZone, isEnabledForExtensions |
Constructor Detail |
---|
public RequestData(Connection pConnection)
pConnection
- The connection, which is serving the request.Method Detail |
---|
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.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |