1 7 8 package javax.management.monitor; 9 10 import javax.management.ObjectName ; 13 14 22 public interface GaugeMonitorMBean extends MonitorMBean { 23 24 27 33 @Deprecated 34 public Number getDerivedGauge(); 35 36 42 @Deprecated 43 public long getDerivedGaugeTimeStamp(); 44 45 54 public Number getDerivedGauge(ObjectName object); 55 56 65 public long getDerivedGaugeTimeStamp(ObjectName object); 66 67 72 public Number getHighThreshold(); 73 74 79 public Number getLowThreshold(); 80 81 90 public void setThresholds(Number highValue, Number lowValue) throws java.lang.IllegalArgumentException ; 91 92 100 public boolean getNotifyHigh(); 101 102 109 public void setNotifyHigh(boolean value); 110 111 119 public boolean getNotifyLow(); 120 121 128 public void setNotifyLow(boolean value); 129 130 138 public boolean getDifferenceMode(); 139 140 147 public void setDifferenceMode(boolean value); 148 } 149 | Popular Tags |