Package org.apache.axis2.jaxws.server
Class AsyncHandlerProxyFactoryImpl
java.lang.Object
org.apache.axis2.jaxws.server.AsyncHandlerProxyFactoryImpl
- All Implemented Interfaces:
AsyncHandlerProxyFactory
This class is the default implementation of the AsyncHandlerProxyFactory
plug-point which is supported by the JAX-WS runtime.
This default implementation bypasses the creation of the actual proxy
and simply returns the passed-in AsyncHandler instance as-is.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjakarta.xml.ws.AsyncHandlercreateAsyncHandlerProxy(jakarta.xml.ws.AsyncHandler ah) This method is invoked by the JAX-WS runtime to allow the implementation to provide a proxy for the specified AsyncHandler instance.
-
Constructor Details
-
AsyncHandlerProxyFactoryImpl
public AsyncHandlerProxyFactoryImpl()
-
-
Method Details
-
createAsyncHandlerProxy
public jakarta.xml.ws.AsyncHandler createAsyncHandlerProxy(jakarta.xml.ws.AsyncHandler ah) throws Exception Description copied from interface:AsyncHandlerProxyFactoryThis method is invoked by the JAX-WS runtime to allow the implementation to provide a proxy for the specified AsyncHandler instance.- Specified by:
createAsyncHandlerProxyin interfaceAsyncHandlerProxyFactory- Parameters:
ah- the AsyncHandler instance to be wrapped with the new proxy- Returns:
- the proxy which wraps the original AsyncHandler instance
- Throws:
Exception
-