| org.apache.cxf.transport.ConduitInitiatorManager
ConduitInitiatorManager | public interface ConduitInitiatorManager (Code) | | The ConduitInitiatorManager provides an interface to register and retrieve
transport factories.
|
deregisterConduitInitiator | void deregisterConduitInitiator(String name)(Code) | | Unregister a ConduitInitiator .
Parameters: name - A string containing the name of theConduitInitiator . |
getConduitInitiator | ConduitInitiator getConduitInitiator(String name) throws BusException(Code) | | Returns the ConduitInitiator registered with the specified name,
loading the appropriate plugin if necessary.
Parameters: name - the registered ConduitInitiator throws: BusException - |
registerConduitInitiator | void registerConduitInitiator(String name, ConduitInitiator factory)(Code) | | Associates a name, often a URI, with a ConduitInitiator
when registering with the Bus 's TransportRegistry .
Parameters: name - A string containing the name used to identify theConduitInitiator Parameters: factory - The ConduitInitiator to be registered. |
|
|