Interface InvocationContext

All Known Subinterfaces:
EndpointInvocationContext
All Known Implementing Classes:
EndpointInvocationContextImpl, InvocationContextImpl

public interface InvocationContext
The InvocationContext encapsulates all of the information relevant to a particular invocation. This ties the context of the request back to the context of the response message (if applicable) through the use of the MessageContext API. There is a separate MessageContext for both the request and the response. *
  • Method Details

    • getHandlers

      List<jakarta.xml.ws.handler.Handler> getHandlers()
    • setHandlers

      void setHandlers(List<jakarta.xml.ws.handler.Handler> list)
    • getRequestMessageContext

      MessageContext getRequestMessageContext()
    • setRequestMessageContext

      void setRequestMessageContext(MessageContext ctx)
    • getResponseMessageContext

      MessageContext getResponseMessageContext()
    • setResponseMessageContext

      void setResponseMessageContext(MessageContext ctx)
    • getExecutor

      Executor getExecutor()
    • setExecutor

      void setExecutor(Executor e)
    • getAsyncResponseListener

      AsyncResponse getAsyncResponseListener()
    • setAsyncResponseListener

      void setAsyncResponseListener(AsyncResponse al)
    • setServiceClient

      void setServiceClient(org.apache.axis2.client.ServiceClient client)
    • getServiceClient

      org.apache.axis2.client.ServiceClient getServiceClient()