FileDocCategorySizeDatePackage
ORBCommonStatsImpl.javaAPI DocGlassfish v2 API3009Fri May 04 22:34:54 BST 2007com.sun.enterprise.iiop

ORBCommonStatsImpl

public class ORBCommonStatsImpl extends Object
This is the common base class for the collection of statistics for the threadpool and orb connection manager.
author
Pramod Gopinath

Fields Summary
private com.sun.enterprise.admin.monitor.stats.GenericStatsImpl
genericStatsDelegate
Constructors Summary
protected ORBCommonStatsImpl()

    
Methods Summary
public javax.management.j2ee.statistics.StatisticgetStatistic(java.lang.String statName)

        return genericStatsDelegate.getStatistic(statName);
    
public java.lang.String[]getStatisticNames()

        return genericStatsDelegate.getStatisticNames();
    
public javax.management.j2ee.statistics.Statistic[]getStatistics()

        return genericStatsDelegate.getStatistics();
    
protected voidinitialize(java.lang.String statInterfaceName)

        try {
            genericStatsDelegate =  new GenericStatsImpl(statInterfaceName, this);
        } catch(ClassNotFoundException cnfEx) {
            throw new RuntimeException(statInterfaceName + " not found", cnfEx);
        }