Uses of Interface
org.apache.xmlrpc.XmlRpcRequestConfig
-
Packages that use XmlRpcRequestConfig Package Description org.apache.xmlrpc org.apache.xmlrpc.client org.apache.xmlrpc.common org.apache.xmlrpc.serializer org.apache.xmlrpc.webserver -
-
Uses of XmlRpcRequestConfig in org.apache.xmlrpc
Methods in org.apache.xmlrpc that return XmlRpcRequestConfig Modifier and Type Method Description XmlRpcRequestConfig
XmlRpcRequest. getConfig()
Returns the request configuration. -
Uses of XmlRpcRequestConfig in org.apache.xmlrpc.client
Subinterfaces of XmlRpcRequestConfig in org.apache.xmlrpc.client Modifier and Type Interface Description interface
XmlRpcClientConfig
This interface is being implemented by an Apache XML-RPC clients configuration object.interface
XmlRpcHttpClientConfig
Extension ofXmlRpcClientConfig
for HTTP based transport.interface
XmlRpcLocalClientConfig
Interface of a client configuration for local rpc calls.Classes in org.apache.xmlrpc.client that implement XmlRpcRequestConfig Modifier and Type Class Description class
XmlRpcClientConfigImpl
Default implementation of a clients request configuration.Fields in org.apache.xmlrpc.client declared as XmlRpcRequestConfig Modifier and Type Field Description private XmlRpcRequestConfig
XmlRpcClientRequestImpl. config
Methods in org.apache.xmlrpc.client that return XmlRpcRequestConfig Modifier and Type Method Description XmlRpcRequestConfig
XmlRpcClientRequestImpl. getConfig()
Constructors in org.apache.xmlrpc.client with parameters of type XmlRpcRequestConfig Constructor Description XmlRpcClientRequestImpl(XmlRpcRequestConfig pConfig, java.lang.String pMethodName, java.lang.Object[] pParams)
Creates a new instance.XmlRpcClientRequestImpl(XmlRpcRequestConfig pConfig, java.lang.String pMethodName, java.util.List pParams)
Creates a new instance. -
Uses of XmlRpcRequestConfig in org.apache.xmlrpc.common
Subinterfaces of XmlRpcRequestConfig in org.apache.xmlrpc.common Modifier and Type Interface Description interface
XmlRpcHttpRequestConfig
Extension ofXmlRpcClientConfig
for HTTP based transport.interface
XmlRpcStreamRequestConfig
Interface of a client configuration for a transport, which is implemented by writing to a stream.Classes in org.apache.xmlrpc.common that implement XmlRpcRequestConfig Modifier and Type Class Description class
XmlRpcHttpRequestConfigImpl
Default implementation of a request configuration. -
Uses of XmlRpcRequestConfig in org.apache.xmlrpc.serializer
Methods in org.apache.xmlrpc.serializer with parameters of type XmlRpcRequestConfig Modifier and Type Method Description void
XmlRpcWriter. write(XmlRpcRequestConfig pConfig, int pCode, java.lang.String pMessage)
Writes a servers error message to the output stream.void
XmlRpcWriter. write(XmlRpcRequestConfig pConfig, int pCode, java.lang.String pMessage, java.lang.Throwable pThrowable)
Writes a servers error message to the output stream.void
XmlRpcWriter. write(XmlRpcRequestConfig pConfig, java.lang.Object pResult)
Writes a servers response to the output stream. -
Uses of XmlRpcRequestConfig in org.apache.xmlrpc.webserver
Classes in org.apache.xmlrpc.webserver that implement XmlRpcRequestConfig Modifier and Type Class Description class
RequestData
Web servers extension ofXmlRpcHttpRequestConfig
, which allows to store additional per request data.
-