All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.xmlrpc.metadata.XmlRpcMetaDataHandler Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
package org.apache.xmlrpc.metadata;

import org.apache.xmlrpc.XmlRpcException;
import org.apache.xmlrpc.XmlRpcHandler;
import org.apache.xmlrpc.server.AbstractReflectiveHandlerMapping;


/** A metadata handler is able to provide metadata about
 * itself, as specified
 * 
 * here.
* * @see * Specification of XML-RPC introspection */ public interface XmlRpcMetaDataHandler extends XmlRpcHandler { /**

This method may be used to implement * {@link XmlRpcListableHandlerMapping#getMethodSignature(String)}. * Typically, the handler mapping will pick up the * matching handler, invoke its method * {@link #getSignatures()}, and return the result.

*

Method handlers, which are created by the * {@link AbstractReflectiveHandlerMapping}, will typically * return a single signature only.

* @return 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. */ String[][] getSignatures() throws XmlRpcException; /**

This method may be used to implement * {@link XmlRpcListableHandlerMapping#getMethodHelp(String)}. * Typically, the handler mapping will pick up the * matching handler, invoke its method * {@link #getMethodHelp()}, and return the result.

*/ String getMethodHelp() throws XmlRpcException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy