1 23 24 29 30 package com.sun.enterprise.admin.selfmanagement.event; 31 32 import javax.management.ObjectName ; 35 36 42 public interface CounterStatisticMonitorMBean extends StatisticMonitorMBean { 43 44 47 53 @Deprecated 54 public Number getDerivedGauge(); 55 56 62 @Deprecated 63 public long getDerivedGaugeTimeStamp(); 64 65 74 @Deprecated 75 public Number getThreshold(); 76 77 86 @Deprecated 87 public void setThreshold(Number value) throws java.lang.IllegalArgumentException ; 88 89 98 public Number getDerivedGauge(ObjectName object); 99 100 109 public long getDerivedGaugeTimeStamp(ObjectName object); 110 111 122 public Number getThreshold(ObjectName object); 123 124 133 public Number getInitThreshold(); 134 135 146 public void setInitThreshold(Number value) throws java.lang.IllegalArgumentException ; 147 148 155 public Number getOffset(); 156 157 166 public void setOffset(Number value) throws java.lang.IllegalArgumentException ; 167 168 175 public Number getModulus(); 176 177 186 public void setModulus(Number value) throws java.lang.IllegalArgumentException ; 187 188 196 public boolean getNotify(); 197 198 205 public void setNotify(boolean value); 206 207 215 public boolean getDifferenceMode(); 216 217 224 public void setDifferenceMode(boolean value); 225 } 226 | Popular Tags |