Package org.apache.cxf.bus.managers
Class BindingFactoryManagerImpl
java.lang.Object
org.apache.cxf.bus.managers.BindingFactoryManagerImpl
- All Implemented Interfaces:
 BindingFactoryManager
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptiongetBindingFactory(String namespace) Retrieves the BindingFactory registered with the given name.voidregisterBindingFactory(String name, BindingFactory factory) Registers a BindingFactory using the provided name.voidvoidDeregisters the BindingFactory with the provided name. 
- 
Constructor Details
- 
BindingFactoryManagerImpl
public BindingFactoryManagerImpl() - 
BindingFactoryManagerImpl
 
 - 
 - 
Method Details
- 
setBus
 - 
registerBindingFactory
Description copied from interface:BindingFactoryManagerRegisters a BindingFactory using the provided name.- Specified by:
 registerBindingFactoryin interfaceBindingFactoryManager- Parameters:
 name- The name of the BindingFactory.factory- The instance of the class that implements the BindingFactory interface.
 - 
unregisterBindingFactory
Description copied from interface:BindingFactoryManagerDeregisters the BindingFactory with the provided name.- Specified by:
 unregisterBindingFactoryin interfaceBindingFactoryManager- Parameters:
 name- The name of the BindingFactory.
 - 
getBindingFactory
Description copied from interface:BindingFactoryManagerRetrieves the BindingFactory registered with the given name.- Specified by:
 getBindingFactoryin interfaceBindingFactoryManager- Parameters:
 namespace- The name of the BindingFactory.- Returns:
 - BindingFactory The registered BindingFactory.
 - Throws:
 BusException- If there is an error retrieving the BindingFactory.
 
 -