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