1 7 8 package javax.management.monitor; 9 10 import javax.management.ObjectName ; 13 14 22 public interface CounterMonitorMBean extends MonitorMBean { 23 24 27 33 @Deprecated 34 public Number getDerivedGauge(); 35 36 42 @Deprecated 43 public long getDerivedGaugeTimeStamp(); 44 45 54 @Deprecated 55 public Number getThreshold(); 56 57 66 @Deprecated 67 public void setThreshold(Number value) throws java.lang.IllegalArgumentException ; 68 69 78 public Number getDerivedGauge(ObjectName object); 79 80 89 public long getDerivedGaugeTimeStamp(ObjectName object); 90 91 102 public Number getThreshold(ObjectName object); 103 104 113 public Number getInitThreshold(); 114 115 126 public void setInitThreshold(Number value) throws java.lang.IllegalArgumentException ; 127 128 135 public Number getOffset(); 136 137 146 public void setOffset(Number value) throws java.lang.IllegalArgumentException ; 147 148 155 public Number getModulus(); 156 157 166 public void setModulus(Number value) throws java.lang.IllegalArgumentException ; 167 168 176 public boolean getNotify(); 177 178 185 public void setNotify(boolean value); 186 187 195 public boolean getDifferenceMode(); 196 197 204 public void setDifferenceMode(boolean value); 205 } 206 | Popular Tags |