1 23 24 29 30 package com.sun.enterprise.admin.selfmanagement.event; 31 32 import javax.management.ObjectName ; 35 36 42 public interface GaugeStatisticMonitorMBean extends StatisticMonitorMBean { 43 44 47 53 @Deprecated 54 public Number getDerivedGauge(); 55 56 62 @Deprecated 63 public long getDerivedGaugeTimeStamp(); 64 65 74 public Number getDerivedGauge(ObjectName object); 75 76 85 public long getDerivedGaugeTimeStamp(ObjectName object); 86 87 92 public Number getHighThreshold(); 93 94 99 public Number getLowThreshold(); 100 101 110 public void setThresholds(Number highValue, Number lowValue) throws java.lang.IllegalArgumentException ; 111 112 120 public boolean getNotifyHigh(); 121 122 129 public void setNotifyHigh(boolean value); 130 131 139 public boolean getNotifyLow(); 140 141 148 public void setNotifyLow(boolean value); 149 150 158 public boolean getDifferenceMode(); 159 160 167 public void setDifferenceMode(boolean value); 168 } 169 | Popular Tags |