Package org.apache.cxf.bus.managers
Class BindingFactoryManagerImpl
- java.lang.Object
- 
- org.apache.cxf.bus.managers.BindingFactoryManagerImpl
 
- 
- All Implemented Interfaces:
- BindingFactoryManager
 
 public final class BindingFactoryManagerImpl extends Object implements BindingFactoryManager 
- 
- 
Constructor SummaryConstructors Constructor Description BindingFactoryManagerImpl()BindingFactoryManagerImpl(Bus b)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description BindingFactorygetBindingFactory(String namespace)Retrieves the BindingFactory registered with the given name.voidregisterBindingFactory(String name, BindingFactory factory)Registers a BindingFactory using the provided name.voidsetBus(Bus b)voidunregisterBindingFactory(String name)Deregisters the BindingFactory with the provided name.
 
- 
- 
- 
Constructor Detail- 
BindingFactoryManagerImplpublic BindingFactoryManagerImpl() 
 - 
BindingFactoryManagerImplpublic BindingFactoryManagerImpl(Bus b) 
 
- 
 - 
Method Detail- 
setBuspublic void setBus(Bus b) 
 - 
registerBindingFactorypublic void registerBindingFactory(String name, BindingFactory factory) Description 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.
 
 - 
unregisterBindingFactorypublic void unregisterBindingFactory(String name) Description copied from interface:BindingFactoryManagerDeregisters the BindingFactory with the provided name.- Specified by:
- unregisterBindingFactoryin interface- BindingFactoryManager
- Parameters:
- name- The name of the BindingFactory.
 
 - 
getBindingFactorypublic BindingFactory getBindingFactory(String namespace) throws BusException Description 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.
 
 
- 
 
-