Celtix User APIs

org.objectweb.celtix.handlers
Interface HandlerFactoryManager


public interface HandlerFactoryManager

Provides methods for registering and deregistering handler factories.


Method Summary
 void deregisterHandlerFactory(HandlerFactory factory)
          Deregisters a HandlerFactory from the bus.
 void registerHandlerFactory(HandlerFactory factory)
          Registers a HandlerFactory with the bus.
 

Method Detail

registerHandlerFactory

void registerHandlerFactory(HandlerFactory factory)
                            throws BusException
Registers a HandlerFactory with the bus.

Parameters:
factory - - the handler factory to register.
Throws:
BusException

deregisterHandlerFactory

void deregisterHandlerFactory(HandlerFactory factory)
                              throws BusException
Deregisters a HandlerFactory from the bus.

Parameters:
factory - - the handler factory to deregister.
Throws:
BusException

Celtix User APIs