Package org.apache.xmlrpc.server
Interface RequestProcessorFactoryFactory.RequestProcessorFactory
-
- Enclosing interface:
- RequestProcessorFactoryFactory
public static interface RequestProcessorFactoryFactory.RequestProcessorFactory
This is the factory for request processors. This factory is itself created by a call toRequestProcessorFactoryFactory.getRequestProcessorFactory(Class)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getRequestProcessor(XmlRpcRequest pRequest)
This method is invoked for any request in order to create and configure the request processor.
-
-
-
Method Detail
-
getRequestProcessor
java.lang.Object getRequestProcessor(XmlRpcRequest pRequest) throws XmlRpcException
This method is invoked for any request in order to create and configure the request processor. The returned object is an instance of the class parameter inRequestProcessorFactoryFactory.getRequestProcessorFactory(Class)
.- Throws:
XmlRpcException
-
-