javax.management.j2ee.statistics
Interface JDBCConnectionStats

All Superinterfaces:
Stats (src)
All Known Subinterfaces:
JDBCConnectionPoolStats (src)

public interface JDBCConnectionStats
extends Stats (src)

Specifies the statistics provided by all (pooled and non-pooled) JDBC connections.


Method Summary
 java.lang.String getJdbcDataSource()
          Identifies the JDBC driver for the corresponding JDBCConnection.
 TimeStatistic (src) getUseTime()
          Time spent using a connection.
 TimeStatistic (src) getWaitTime()
          Time spent waiting for a connection to be available.
 
Methods inherited from interface javax.management.j2ee.statistics.Stats (src)
getStatistic, getStatisticNames, getStatistics
 

Method Detail

getJdbcDataSource

public java.lang.String getJdbcDataSource()
Identifies the JDBC driver for the corresponding JDBCConnection.


getWaitTime

public TimeStatistic (src)  getWaitTime()
Time spent waiting for a connection to be available.


getUseTime

public TimeStatistic (src)  getUseTime()
Time spent using a connection.