01: package org.objectweb.celtix.bus.busimpl;
02:
03: import org.objectweb.celtix.BusEvent;
04:
05: /**
06: * A ManagedComponent Event that indicates that
07: * the ManagedComponent needs to be registered
08: * as an MBean with the MBean server.
09: */
10: public class ComponentCreatedEvent extends BusEvent {
11: public static final String COMPONENT_CREATED_EVENT = "COMPONENT_CREATED_EVENT";
12:
13: /**
14: * Constructs a <code>ManagedComponentCreatedEvent</code> object.
15: *
16: * @param source The managed component object that to register.
17: */
18: public ComponentCreatedEvent(Object source) {
19: super(source, COMPONENT_CREATED_EVENT);
20: }
21: }
|