Save This Page
Home » glassfish-v2ur2-b04-src » javax » management » j2ee » [javadoc | source]
    1   package javax.management.j2ee;
    2   
    3   /**
    4    * Represents a deployed Connector (RAR) Module
    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   /**
   19   * Represents the statistics provide by a message driven
   20   * bean
   21   *
   22   * @author <a href="mailto:marc.fleury@jboss.org">Marc Fleury</a>
   23   * @author <a href="mailto:andreas@jboss.org">Andreas Schaefer</a>
   24   **/
   25   public interface MessageDrivenBeanStats
   26      extends EJBStats
   27   {
   28      // Constants -----------------------------------------------------
   29      
   30      // Public --------------------------------------------------------
   31      
   32      /**
   33      * @return The number of messages received
   34      **/
   35      public CountStatistic getMessageCount();
   36      
   37      // Package protected ---------------------------------------------
   38      
   39      // Protected -----------------------------------------------------
   40      
   41      // Static inner classes -------------------------------------------------
   42   }

Save This Page
Home » glassfish-v2ur2-b04-src » javax » management » j2ee » [javadoc | source]