Package org.apache.axis2.jaxws.core
Class InvocationContextImpl
- java.lang.Object
-
- org.apache.axis2.jaxws.core.InvocationContextImpl
-
- All Implemented Interfaces:
InvocationContext
- Direct Known Subclasses:
EndpointInvocationContextImpl
public class InvocationContextImpl extends Object implements InvocationContext
An implementation of the InvocationContext interface.- See Also:
InvocationContext
-
-
Constructor Summary
Constructors Constructor Description InvocationContextImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AsyncResponse
getAsyncResponseListener()
Executor
getExecutor()
List<Handler>
getHandlers()
MessageContext
getRequestMessageContext()
MessageContext
getResponseMessageContext()
ServiceClient
getServiceClient()
void
setAsyncResponseListener(AsyncResponse ar)
void
setExecutor(Executor e)
void
setHandlers(List<Handler> handlers)
Sets the list of hanlders for this InvocationContextvoid
setRequestMessageContext(MessageContext ctx)
void
setResponseMessageContext(MessageContext ctx)
void
setServiceClient(ServiceClient client)
-
-
-
Method Detail
-
getHandlers
public List<Handler> getHandlers()
- Specified by:
getHandlers
in interfaceInvocationContext
- See Also:
InvocationContext.getHandlers()
-
setHandlers
public void setHandlers(List<Handler> handlers)
Sets the list of hanlders for this InvocationContext- Specified by:
setHandlers
in interfaceInvocationContext
- Parameters:
list
-
-
setRequestMessageContext
public void setRequestMessageContext(MessageContext ctx)
- Specified by:
setRequestMessageContext
in interfaceInvocationContext
- See Also:
InvocationContext.setRequestMessageContext(MessageContext)
-
setResponseMessageContext
public void setResponseMessageContext(MessageContext ctx)
- Specified by:
setResponseMessageContext
in interfaceInvocationContext
- See Also:
InvocationContext.setResponseMessageContext(MessageContext)
-
getResponseMessageContext
public MessageContext getResponseMessageContext()
- Specified by:
getResponseMessageContext
in interfaceInvocationContext
- See Also:
InvocationContext.getResponseMessageContext()
-
getRequestMessageContext
public MessageContext getRequestMessageContext()
- Specified by:
getRequestMessageContext
in interfaceInvocationContext
- See Also:
InvocationContext.getRequestMessageContext()
-
getExecutor
public Executor getExecutor()
- Specified by:
getExecutor
in interfaceInvocationContext
-
setExecutor
public void setExecutor(Executor e)
- Specified by:
setExecutor
in interfaceInvocationContext
-
getAsyncResponseListener
public AsyncResponse getAsyncResponseListener()
- Specified by:
getAsyncResponseListener
in interfaceInvocationContext
-
setAsyncResponseListener
public void setAsyncResponseListener(AsyncResponse ar)
- Specified by:
setAsyncResponseListener
in interfaceInvocationContext
-
getServiceClient
public ServiceClient getServiceClient()
- Specified by:
getServiceClient
in interfaceInvocationContext
-
setServiceClient
public void setServiceClient(ServiceClient client)
- Specified by:
setServiceClient
in interfaceInvocationContext
-
-