| EntityBeanStats.java |
/**
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management.j2ee.statistics;
// $Id: EntityBeanStats.java,v 1.6.6.1 2005/04/05 17:41:15 starksm Exp $
/**
* Specifies statistics provided by entity beans.
*
* @author thomas.diesler@jboss.org
*/
public interface EntityBeanStats extends EJBStats
{
/**
* Number of beans in the ready state.
*/
public RangeStatistic getReadyCount();
/**
* Number of beans in the pooled state.
*/
public RangeStatistic getPooledCount();
}
| EntityBeanStats.java |