View Javadoc

1   package org.codehaus.xfire.transport;
2   
3   import org.codehaus.xfire.fault.FaultHandlerPipeline;
4   import org.codehaus.xfire.handler.HandlerPipeline;
5   
6   /***
7    * Transport
8    * 
9    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
10   */
11  public interface Transport
12  {
13      String getName();
14  
15      HandlerPipeline getRequestPipeline();
16      
17      HandlerPipeline getResponsePipeline();
18      
19      FaultHandlerPipeline getFaultPipeline();
20  }