View Javadoc

1   package org.codehaus.xfire.handler;
2   
3   import java.util.List;
4   
5   /***
6    * Provides handlers to an invocation.
7    * 
8    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
9    */
10  public interface HandlerSupport
11  {
12      List getInHandlers();
13      
14      List getOutHandlers();
15      
16      List getFaultHandlers();
17  }