Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
public interface XmlRpcMetaDataHandler
extends XmlRpcHandler
Specification of XML-RPC introspection
Method Summary | |
String |
|
String[][] |
|
Methods inherited from interface org.apache.xmlrpc.XmlRpcHandler | |
execute |
public String getMethodHelp() throws XmlRpcException
This method may be used to implementXmlRpcListableHandlerMapping.getMethodHelp(String)
. Typically, the handler mapping will pick up the matching handler, invoke its methodgetMethodHelp()
, and return the result.
public String[][] getSignatures() throws XmlRpcException
This method may be used to implementXmlRpcListableHandlerMapping.getMethodSignature(String)
. Typically, the handler mapping will pick up the matching handler, invoke its methodgetSignatures()
, and return the result. Method handlers, which are created by theAbstractReflectiveHandlerMapping
, will typically return a single signature only.
- Returns:
- An array of arrays. Any element in the outer array is a signature. The elements in the inner array are being concatenated with commas. The inner arrays first element is the return type, followed by the parameter types.