1 package javax.management.j2ee;
2
3 /**
4 * Represents the statistics provided by session beans
5 * of both stateful and stateless types
6 *
7 * @author <a href="mailto:marc@jboss.org">Marc Fleury</a>
8 * @author <a href="mailto:andreas@jboss.org">Andreas Schaefer</a>
9 * @version $Revision: 1.1 $
10 *
11 * <p><b>Revisions:</b>
12 *
13 * <p><b>200112009 Andreas Schaefer:</b>
14 * <ul>
15 * <li> Adjustment to the new JBoss guide lines and also adjustments
16 * to the latest JSR-77 specification
17 * </ul>
18 **/
19 public interface SessionBeanStats
20 extends EJBStats
21 {
22 // Constants -----------------------------------------------------
23
24 // Public --------------------------------------------------------
25
26 /**
27 * @return The number of beans in the method-ready state
28 **/
29 public RangeStatistic getMethodReadyCount();
30
31 // Package protected ---------------------------------------------
32
33 // Protected -----------------------------------------------------
34
35 // Static inner classes -------------------------------------------------
36 }