1 7 8 package javax.management.monitor; 9 10 import javax.management.ObjectName ; 13 14 22 public interface StringMonitorMBean extends MonitorMBean { 23 24 27 33 @Deprecated 34 public String getDerivedGauge(); 35 36 42 @Deprecated 43 public long getDerivedGaugeTimeStamp(); 44 45 54 public String getDerivedGauge(ObjectName object); 55 56 65 public long getDerivedGaugeTimeStamp(ObjectName object); 66 67 74 public String getStringToCompare(); 75 76 85 public void setStringToCompare(String value) throws java.lang.IllegalArgumentException ; 86 87 95 public boolean getNotifyMatch(); 96 97 104 public void setNotifyMatch(boolean value); 105 106 114 public boolean getNotifyDiffer(); 115 116 123 public void setNotifyDiffer(boolean value); 124 } 125 | Popular Tags |