Package org.apache.axis2.jaxws.handler
Interface HandlerInvoker
-
- All Known Implementing Classes:
HandlerInvokerImpl
public interface HandlerInvoker
This interface represents a class that will be called by the JAX-WS EndpointController to handle the invocation of both inbound and outbound handlers. Instances of these will be served up by the HandlerInvokerFactory.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
invokeInboundHandlers(HandlerInvocationContext context)
Invokes all inbound handlers for the incoming request to the endpoint.boolean
invokeOutboundHandlers(HandlerInvocationContext context)
Invokes all inbound handlers for the incoming request to the endpoint.
-
-
-
Method Detail
-
invokeInboundHandlers
boolean invokeInboundHandlers(HandlerInvocationContext context)
Invokes all inbound handlers for the incoming request to the endpoint.
-
invokeOutboundHandlers
boolean invokeOutboundHandlers(HandlerInvocationContext context)
Invokes all inbound handlers for the incoming request to the endpoint.
-
-