01: package org.objectweb.celtix.bus.busimpl;
02:
03: import org.objectweb.celtix.BusEvent;
04:
05: /**
06: * A <code>ComponentEvent</code> indicating that the specified
07: * <code>ManagedComponent</code> needs to be deregistered from the mbean server.
08: */
09: public class ComponentRemovedEvent extends BusEvent {
10: public static final String COMPONENT_REMOVED_EVENT = "COMPONENT_REMOVED_EVENT";
11:
12: /**
13: * Constructs a <code>ManagedComponentRemovedEvent</code> object.
14: *
15: * @param source The managed component object associated with this event.
16: */
17: public ComponentRemovedEvent(Object source) {
18: super(source, COMPONENT_REMOVED_EVENT);
19: }
20: }
|