Package org.jboss.wsf.spi.invocation
Interface HandlerCallback
-
public interface HandlerCallbackA handler callback for the EJB21 Invoker- Since:
- 26-Apr-2007
- Author:
- Thomas.Diesler@jboss.org
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancallFaultHandlerChain(Invocation wsInv, UnifiedHandlerMetaData.HandlerType type, Exception ex)Handlers are being called through the HandlerCallback from the EJB interceptorbooleancallRequestHandlerChain(Invocation wsInv, UnifiedHandlerMetaData.HandlerType type)Handlers are being called through the HandlerCallback from the EJB interceptorbooleancallResponseHandlerChain(Invocation wsInv, UnifiedHandlerMetaData.HandlerType type)Handlers are being called through the HandlerCallback from the EJB interceptor
-
-
-
Method Detail
-
callRequestHandlerChain
boolean callRequestHandlerChain(Invocation wsInv, UnifiedHandlerMetaData.HandlerType type)
Handlers are being called through the HandlerCallback from the EJB interceptor- Parameters:
wsInv- invocation handlertype- handler- Returns:
- true success
-
callResponseHandlerChain
boolean callResponseHandlerChain(Invocation wsInv, UnifiedHandlerMetaData.HandlerType type)
Handlers are being called through the HandlerCallback from the EJB interceptor- Parameters:
wsInv- invocation handlertype- handler- Returns:
- true success
-
callFaultHandlerChain
boolean callFaultHandlerChain(Invocation wsInv, UnifiedHandlerMetaData.HandlerType type, Exception ex)
Handlers are being called through the HandlerCallback from the EJB interceptor- Parameters:
wsInv- invocation handlertype- handlerex- exception- Returns:
- true success
-
-