Package org.apache.axis2.jaxws.server
Class InvocationListenerBean
- java.lang.Object
-
- org.apache.axis2.jaxws.server.InvocationListenerBean
-
public class InvocationListenerBean extends Object
An instance of this class will be passed to the InvocationListener instances in both the request and response flow. This bean will hold data that allows the InvocationListener to determine the message flow (request vs. response) as well as other context information.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InvocationListenerBean.State
-
Constructor Summary
Constructors Constructor Description InvocationListenerBean()
InvocationListenerBean(EndpointInvocationContext eic, InvocationListenerBean.State state)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EndpointInvocationContext
getEndpointInvocationContext()
InvocationListenerBean.State
getState()
Throwable
getThrowable()
void
setEndpointInvocationContext(EndpointInvocationContext eic)
void
setState(InvocationListenerBean.State state)
void
setThrowable(Throwable throwable)
-
-
-
Constructor Detail
-
InvocationListenerBean
public InvocationListenerBean()
-
InvocationListenerBean
public InvocationListenerBean(EndpointInvocationContext eic, InvocationListenerBean.State state)
-
-
Method Detail
-
getEndpointInvocationContext
public EndpointInvocationContext getEndpointInvocationContext()
-
setEndpointInvocationContext
public void setEndpointInvocationContext(EndpointInvocationContext eic)
-
getState
public InvocationListenerBean.State getState()
-
setState
public void setState(InvocationListenerBean.State state)
-
setThrowable
public void setThrowable(Throwable throwable)
-
getThrowable
public Throwable getThrowable()
-
-