StringThresholdMonitorMBean.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.monitor; import javax.management.ObjectName; /** * Comment * * @author <a href="mailto:bill@jboss.org">Bill Burke</a> * @version $Revision: 1.2 $ * **/ public interface StringThresholdMonitorMBean extends JBossMonitorMBean { boolean getEqualityTriggersAlert(); void setEqualityTriggersAlert(boolean compareEqual); }
StringThresholdMonitorMBean.java |