01 package com.bea.medrec.controller;
02
03 /**
04 * <p>The interface for a standard MBean that keeps track of how many
05 * times RecordSessionEJB writes a prescription to the database.</p>
06 * <p>Because this interface is part of a standard MBean, when the
07 * MBean is registered in an MBean server, the MBean server introspects
08 * the MBean and presents it to JMX clients as having one read-only
09 * attribute named "TotalRx" and one operation named "resetTotalRx".</p>
10 * <p>The implementation for this interface is RecordSessionEJBMBeanImpl.java</p>
11 *
12 * @author Copyright (c) 2006 by BEA Systems. All Rights Reserved.
13 */
14 public interface RecordSessionEJBMBean {
15 public int getTotalRx();
16 public void resetTotalRx();
17 }
|