01: package vicazh.hyperpool;
02:
03: import javax.management.*;
04:
05: /**
06: * The in service notification
07: *
08: * @author Victor Zhigunov
09: * @version 0.4.0
10: */
11: public class AttributeNotification extends Notification {
12:
13: public long sourceID;
14:
15: public Object value;
16:
17: public AttributeNotification(String type, Object source,
18: long sequenceNumber, long sourceID, Object value) {
19: super(type, source, sequenceNumber);
20: this.sourceID = sourceID;
21: this.value = value;
22: }
23: }
|