| EJBStats.java |
/**
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management.j2ee.statistics;
// $Id: EJBStats.java,v 1.6.6.1 2005/04/05 17:41:15 starksm Exp $
/**
* Specifies statistics provided by all EJB component types.
*
* @author thomas.diesler@jboss.org
*/
public interface EJBStats extends Stats
{
/**
* Number of times create was called.
*/
public CountStatistic getCreateCount();
/**
* Number of times remove was called.
*/
public CountStatistic getRemoveCount();
}
| EJBStats.java |