1 package org.codehaus.xfire.transport; 2 3 import java.util.Set; 4 5 /*** 6 * Registers transports for the SOAP services. 7 * 8 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> 9 */ 10 public interface TransportManager 11 { 12 String ROLE = TransportManager.class.getName(); 13 14 void register( Transport transport ); 15 16 Set getTransports( String service ); 17 18 void enable( String transport, String service ); 19 20 void disable( String transport, String service ); 21 }