| org.objectweb.celtix.bindings.BindingManager
All known Subclasses: org.objectweb.celtix.bus.bindings.BindingManagerImpl,
BindingManager | public interface BindingManager (Code) | | The manager interface represents a repository for accessing
BindingFactory s.
Provides methods necessary for registering, deregistering or retrieving of
BindingFactorys.
|
deregisterBinding | void deregisterBinding(String name) throws BusException(Code) | | Deregisters the BindingFactory with the provided name.
Parameters: name - The name of the BindingFactory. throws: BusException - If there is an error deregistering the name. |
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. |
registerBinding | void registerBinding(String name, BindingFactory binding) throws BusException(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. throws: BusException - If there is an error registering the BindingFactory. |
shutdown | void shutdown()(Code) | | Shuts down the BindingManager and do clean up things.
|
|
|