Package org.apache.cxf.binding
Interface BindingFactoryManager
- 
- All Known Implementing Classes:
- BindingFactoryManagerImpl
 
 public interface BindingFactoryManagerThe manager interface represents a repository for accessingBindingFactorys. Provides methods necessary for registering, unregistering or retrieving of BindingFactorys.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description BindingFactorygetBindingFactory(String name)Retrieves the BindingFactory registered with the given name.voidregisterBindingFactory(String name, BindingFactory binding)Registers a BindingFactory using the provided name.voidunregisterBindingFactory(String name)Deregisters the BindingFactory with the provided name.
 
- 
- 
- 
Method Detail- 
registerBindingFactoryvoid registerBindingFactory(String name, BindingFactory binding) Registers a BindingFactory using the provided name.- Parameters:
- name- The name of the BindingFactory.
- binding- The instance of the class that implements the BindingFactory interface.
 
 - 
unregisterBindingFactoryvoid unregisterBindingFactory(String name) Deregisters the BindingFactory with the provided name.- Parameters:
- name- The name of the BindingFactory.
 
 - 
getBindingFactoryBindingFactory getBindingFactory(String name) throws BusException Retrieves the BindingFactory registered with the given name.- Parameters:
- name- The name of the BindingFactory.
- Returns:
- BindingFactory The registered BindingFactory.
- Throws:
- BusException- If there is an error retrieving the BindingFactory.
 
 
- 
 
-