1 25 package org.objectweb.jonas.management; 26 27 import javax.management.Notification ; 29 30 33 public class AttributeRemoveNotification extends Notification { 34 35 static String ATTRIBUTE_ADD = "jonas.management.attribute.remove"; 36 37 String attributeName = null; 38 String removedValue = null; 39 40 43 public AttributeRemoveNotification(Object source, long sequenceNumber, long timeStamp, String message, String attributeName, String removedValue) { 44 super(ATTRIBUTE_ADD, source, sequenceNumber, timeStamp, message); 45 this.attributeName = attributeName; 46 this.removedValue = removedValue; 47 } 48 } 49 50 | Popular Tags |