KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > configuration > ConfigurationEvent


1 package org.objectweb.celtix.bus.configuration;
2
3 import org.objectweb.celtix.BusEvent;
4 /**
5  * A <code>ComponentEvent</code> indicating that the specified
6  * <code>ManagedComponent</code> needs to be deregistered from the mbean server.
7  */

8 public class ConfigurationEvent extends BusEvent {
9     public static final String JavaDoc RECONFIGURED = "RECONFIGURED";
10     /**
11      * Constructs a <code>ConfigurationEvent</code> object.
12      *
13      * @param source The managed component object associated with this event.
14      * @param id The event id.
15      */

16     public ConfigurationEvent(Object JavaDoc source, String JavaDoc id) {
17         super(source, id);
18     }
19 }
20
Popular Tags