/**
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package javax.management.j2ee.statistics;

// $Id: BoundaryStatistic.java,v 1.6.6.1 2005/04/05 17:41:12 starksm Exp $



/**
 * Specifies standard measurements of the upper and lower limits of the value of an attribute.
 * 
 * @author thomas.diesler@jboss.org
 */
public interface BoundaryStatistic extends Statistic
{
   /**
    * The upper limit of the value of this attribute.
    */
   public long getUpperBound();


   /**
    * The lower limit of the value of this attribute.The upper limit of the value of this attribute.
    */
   public long getLowerBound();

}