org.apache.axis
Interface Chain

All Superinterfaces:
Handler, java.io.Serializable
All Known Implementing Classes:
SimpleChain

public interface Chain
extends Handler

Author:
Doug Davis (dug@us.ibm.com.com)

Method Summary
 void addHandler(Handler handler)
          Adds a handler to the end of the chain
 void clear()
          Erase the contents of the chain
 boolean contains(Handler handler)
          Is this handler in the chain?
 Handler[] getHandlers()
          Get the list of handlers in the chain - is Handler[] the right form?
 void removeHandler(int index)
          Removes the specified handler from the chain
 
Methods inherited from interface org.apache.axis.Handler
addOption, canHandleBlock, cleanup, generateWSDL, getDeploymentData, getName, getOption, getOptions, init, invoke, setName, setOption, setOptions, undo
 

Method Detail

addHandler

public void addHandler(Handler handler)
Adds a handler to the end of the chain

removeHandler

public void removeHandler(int index)
Removes the specified handler from the chain

contains

public boolean contains(Handler handler)
Is this handler in the chain?

getHandlers

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

clear

public void clear()
Erase the contents of the chain


Copyright © 2001 Apache XML Project. All Rights Reserved.