1 8 9 package mx4j.monitor; 10 11 import javax.management.ObjectName ; 12 13 16 public interface MX4JStringMonitorMBean extends MX4JMonitorMBean 17 { 18 public String getDerivedGauge(ObjectName objectName); 19 20 public long getDerivedGaugeTimeStamp(ObjectName objectName); 21 22 public String getStringToCompare(); 23 24 public void setStringToCompare(String value) throws IllegalArgumentException ; 25 26 public boolean getNotifyMatch(); 27 28 public void setNotifyMatch(boolean value); 29 30 public boolean getNotifyDiffer(); 31 32 public void setNotifyDiffer(boolean value); 33 } 34 | Popular Tags |