1 package javax.management.j2ee;
2
3 /**
4 * Represents the statistics provided by a JMS Connection.
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>200112009 Andreas Schaefer:</b>
13 * <ul>
14 * <li> Adjustment to the new JBoss guide lines and also adjustments
15 * to the latest JSR-77 specification
16 * </ul>
17 **/
18 public interface JMSConnectionStats
19 extends Stats
20 {
21 // Constants -----------------------------------------------------
22
23 // Public --------------------------------------------------------
24
25 /**
26 * @return The list of JMSSessionStats that provide statistics about the sessions
27 * associated with the referencing JMSConnectionStats.
28 **/
29 public JMSSessionStats[] getSessions();
30
31 /**
32 * @return The transactional state of this JMS connection. If true, indicates that
33 * this JMS connection is transactional.
34 **/
35 public boolean isTransactional();
36
37 // Package protected ---------------------------------------------
38
39 // Protected -----------------------------------------------------
40
41 // Static inner classes -------------------------------------------------
42 }