package org.jboss.management.j2ee.statistics;
import javax.management.j2ee.statistics.EntityBeanStats;
import javax.management.j2ee.statistics.RangeStatistic;
public class EntityBeanStatsImpl extends EJBStatsImpl
implements EntityBeanStats
{
private static final long serialVersionUID = 568715454355570891L;
private RangeStatisticImpl methodReadyCount;
private RangeStatisticImpl pooledCount;
public EntityBeanStatsImpl()
{
methodReadyCount = new RangeStatisticImpl("ReadyCount", "1",
"The count of beans in the ready state");
pooledCount = new RangeStatisticImpl("PooledCount", "1",
"The count of beans in the pooled state");
addStatistic("ReadyCount", methodReadyCount);
addStatistic("PooledCount", pooledCount);
}
public RangeStatistic getReadyCount()
{
return methodReadyCount;
}
public RangeStatistic getPooledCount()
{
return pooledCount;
}
}