Package org.apache.axis.strategies
Class InvocationStrategy
- java.lang.Object
-
- org.apache.axis.strategies.InvocationStrategy
-
- All Implemented Interfaces:
HandlerIterationStrategy
public class InvocationStrategy extends java.lang.Object implements HandlerIterationStrategy
A Strategy which calls invoke() on the specified Handler, passing it the specified MessageContext.- Author:
- Glen Daniels (gdaniels@apache.org)
-
-
Constructor Summary
Constructors Constructor Description InvocationStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
visit(Handler handler, MessageContext msgContext)
Visit a handler with a message context.
-
-
-
Method Detail
-
visit
public void visit(Handler handler, MessageContext msgContext) throws AxisFault
Description copied from interface:HandlerIterationStrategy
Visit a handler with a message context.- Specified by:
visit
in interfaceHandlerIterationStrategy
- Parameters:
handler
- theHandler
to apply to the contextmsgContext
- theMessageContext
used- Throws:
AxisFault
- if this visit encountered an error
-
-