Package org.apache.cxf.buslifecycle
Interface BusCreationListener
- 
 public interface BusCreationListenerThe listener interface for receiving notification of whenBusobjects are created. It's a simplified form of BusLifeCycleListener that takes the target Bus as a parameter which is appropriate if the listener needs to be a singleton that works with multiple Bus objects. A common pattern would be to register a full BusLifeCycleListener on the target Bus to receive full Bus events
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbusCreated(Bus b)Invoked to create a BusLifeCycleListener.
 
- 
- 
- 
Method Detail- 
busCreatedvoid busCreated(Bus b) Invoked to create a BusLifeCycleListener.
 
- 
 
-