FileDocCategorySizeDatePackage
JDBCConnectionPoolStatsImpl.javaAPI DocGlassfish v2 API3212Fri May 04 22:35:18 BST 2007com.sun.enterprise.resource.monitor

JDBCConnectionPoolStatsImpl

public class JDBCConnectionPoolStatsImpl extends ConnectionPoolStatsImpl implements com.sun.enterprise.admin.monitor.stats.JDBCConnectionPoolStats
This class provides an implementation of the JDBCConnectionPoolStats interface. The implementations of the interface methods primarily delegate the task of statistic gathering to the Pool.
author
Aditya Gore, Sivakumar Thyagarajan

Fields Summary
Constructors Summary
public JDBCConnectionPoolStatsImpl(com.sun.enterprise.resource.MonitorableResourcePool pool)
The constructor for the class

param
pool - The resource pool whose stats we are storing

        super();
        String statsInterface = "com.sun.enterprise.admin.monitor.stats.JDBCConnectionPoolStats";
        pool_ = pool;
        initializeStatistics();
        try {
            gsImpl = new GenericStatsImpl(statsInterface, this );
        } catch( ClassNotFoundException cnfe ) {
            _logger.log( Level.INFO, "poolmon.cnfe", "GenericStatsImpl" );
        }
    
Methods Summary