FileDocCategorySizeDatePackage
Chain.javaAPI DocApache Axis 1.42178Sat Apr 22 18:57:26 BST 2006org.apache.axis

Chain

public interface Chain implements Handler
A Handler that executes a 'chain' of child handlers in order.
author
Doug Davis (dug@us.ibm.com.com)

Fields Summary
Constructors Summary
Methods Summary
public voidaddHandler(Handler handler)
Adds a handler to the end of the chain. May not be called after invoke.

param
handler the Handler to be added

public booleancontains(Handler handler)
Discover if a handler is in this chain.

param
handler the Handler to check
return
true if it is in this chain, false otherwise

public Handler[]getHandlers()
Get the list of handlers in the chain. Is Handler[] the right form?

return
an array of Handlers that have been added