Package org.apache.xmlrpc.common
Interface XmlRpcRequestProcessor
-
- All Known Subinterfaces:
XmlRpcStreamRequestProcessor
- All Known Implementing Classes:
ConnectionServer
,XmlRpcHttpServer
,XmlRpcLocalStreamServer
,XmlRpcServer
,XmlRpcServletServer
,XmlRpcStreamServer
public interface XmlRpcRequestProcessor
Interface of an object, which is able to process XML-RPC requests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
execute(XmlRpcRequest pRequest)
Processes the given request and returns a result object.TypeConverterFactory
getTypeConverterFactory()
Returns the request processorsTypeConverterFactory
.
-
-
-
Method Detail
-
execute
java.lang.Object execute(XmlRpcRequest pRequest) throws XmlRpcException
Processes the given request and returns a result object.- Throws:
XmlRpcException
- Processing the request failed.
-
getTypeConverterFactory
TypeConverterFactory getTypeConverterFactory()
Returns the request processorsTypeConverterFactory
.
-
-