Package org.apache.xmlrpc
Interface XmlRpcHandler
-
- All Known Subinterfaces:
XmlRpcMetaDataHandler
- All Known Implementing Classes:
ReflectiveXmlRpcHandler,ReflectiveXmlRpcMetaDataHandler
public interface XmlRpcHandlerThe XML-RPC server uses this interface to call a method of an RPC handler.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectexecute(XmlRpcRequest pRequest)Performs the request and returns the result object.
-
-
-
Method Detail
-
execute
java.lang.Object execute(XmlRpcRequest pRequest) throws XmlRpcException
Performs the request and returns the result object.- Parameters:
pRequest- The request being performed (method name and parameters.)- Returns:
- The result object.
- Throws:
XmlRpcException- Performing the request failed.
-
-