Package org.apache.cxf.bus.managers
Class BindingFactoryManagerImpl
java.lang.Object
org.apache.cxf.bus.managers.BindingFactoryManagerImpl
- All Implemented Interfaces:
- BindingFactoryManager
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
BindingFactoryManagerImplpublic BindingFactoryManagerImpl()
- 
BindingFactoryManagerImpl
 
- 
- 
Method Details- 
setBus
- 
registerBindingFactoryDescription copied from interface:BindingFactoryManagerRegisters a BindingFactory using the provided name.- Specified by:
- registerBindingFactoryin interface- BindingFactoryManager
- Parameters:
- name- The name of the BindingFactory.
- factory- The instance of the class that implements the BindingFactory interface.
 
- 
unregisterBindingFactoryDescription copied from interface:BindingFactoryManagerDeregisters the BindingFactory with the provided name.- Specified by:
- unregisterBindingFactoryin interface- BindingFactoryManager
- Parameters:
- name- The name of the BindingFactory.
 
- 
getBindingFactoryDescription copied from interface:BindingFactoryManagerRetrieves the BindingFactory registered with the given name.- Specified by:
- getBindingFactoryin interface- BindingFactoryManager
- Parameters:
- namespace- The name of the BindingFactory.
- Returns:
- BindingFactory The registered BindingFactory.
- Throws:
- BusException- If there is an error retrieving the BindingFactory.
 
 
-