Package org.apache.axis2.jaxws.server
Class AsyncHandlerProxyFactoryImpl
- java.lang.Object
-
- org.apache.axis2.jaxws.server.AsyncHandlerProxyFactoryImpl
-
- All Implemented Interfaces:
AsyncHandlerProxyFactory
public class AsyncHandlerProxyFactoryImpl extends Object implements 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 Constructor Description AsyncHandlerProxyFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AsyncHandler
createAsyncHandlerProxy(AsyncHandler ah)
This method is invoked by the JAX-WS runtime to allow the implementation to provide a proxy for the specified AsyncHandler instance.
-
-
-
Method Detail
-
createAsyncHandlerProxy
public AsyncHandler createAsyncHandlerProxy(AsyncHandler ah) throws Exception
Description copied from interface:AsyncHandlerProxyFactory
This method is invoked by the JAX-WS runtime to allow the implementation to provide a proxy for the specified AsyncHandler instance.- Specified by:
createAsyncHandlerProxy
in interfaceAsyncHandlerProxyFactory
- Parameters:
ah
- the AsyncHandler instance to be wrapped with the new proxy- Returns:
- the proxy which wraps the original AsyncHandler instance
- Throws:
Exception
-
-