1 package javax.management.j2ee;
2
3 /**
4 * Represents the statistics provided by a JCA resource.
5 *
6 * @author <a href="mailto:marc@jboss.org">Marc Fleury</a>
7 * @author <a href="mailto:andreas@jboss.org">Andreas Schaefer</a>
8 * @version $Revision: 1.1 $
9 *
10 * <p><b>Revisions:</b>
11 *
12 * <p><b>20020307 Andreas Schaefer:</b>
13 * <ul>
14 * <li> Creation
15 * </ul>
16 **/
17 public interface JCAStats
18 extends Stats
19 {
20 // Constants -----------------------------------------------------
21
22 // Public --------------------------------------------------------
23
24 /**
25 * @return The list of JCAConnectionStats that provide statistics about the nonpooled
26 * connections associated with the referencing JCA resource statistics.
27 **/
28 public JCAConnectionStats[] getConnections();
29
30 /**
31 * @return The list of JCAConnectionPoolStats that provide statistics about the
32 * connection pools associated with the referencing JCA resource statistics.
33 **/
34 public JCAConnectionPoolStats[] getConnectionPools();
35
36 // Package protected ---------------------------------------------
37
38 // Protected -----------------------------------------------------
39
40 // Static inner classes -------------------------------------------------
41 }