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

org.apache.xmlrpc.common.XmlRpcRequestProcessor Maven / Gradle / Ivy

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

import org.apache.xmlrpc.XmlRpcException;
import org.apache.xmlrpc.XmlRpcRequest;


/** Interface of an object, which is able to process
 * XML-RPC requests.
 */
public interface XmlRpcRequestProcessor {
	/** Processes the given request and returns a
	 * result object.
	 * @throws XmlRpcException Processing the request failed.
	 */
	Object execute(XmlRpcRequest pRequest) throws XmlRpcException;

	/** Returns the request processors {@link TypeConverterFactory}.
	 */
    TypeConverterFactory getTypeConverterFactory();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy