01: package org.objectweb.celtix.bus.configuration;
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 ConfigurationEvent extends BusEvent {
10: public static final String RECONFIGURED = "RECONFIGURED";
11:
12: /**
13: * Constructs a <code>ConfigurationEvent</code> object.
14: *
15: * @param source The managed component object associated with this event.
16: * @param id The event id.
17: */
18: public ConfigurationEvent(Object source, String id) {
19: super(source, id);
20: }
21: }
|