| org.apache.cxf.binding.BindingFactoryManager
BindingFactoryManager | public interface BindingFactoryManager (Code) | | The manager interface represents a repository for accessing
BindingFactory s.
Provides methods necessary for registering, deregistering or retrieving of
BindingFactorys.
|
getBindingFactory | BindingFactory getBindingFactory(String name) throws BusException(Code) | | Retrieves the BindingFactory registered with the given name.
Parameters: name - The name of the BindingFactory. BindingFactory The registered BindingFactory. throws: BusException - If there is an error retrieving the BindingFactory. |
registerBindingFactory | void registerBindingFactory(String name, BindingFactory binding)(Code) | | Registers a BindingFactory using the provided name.
Parameters: name - The name of the BindingFactory. Parameters: binding - The instance of the class that implements theBindingFactory interface. |
unregisterBindingFactory | void unregisterBindingFactory(String name)(Code) | | Deregisters the BindingFactory with the provided name.
Parameters: name - The name of the BindingFactory. |
|
|