01 package com.bea.medrec.admin;
02
03 import java.io.Serializable;
04
05 /**
06 * MBean interface
07 *
08 * @author Copyright (c) 2006 by BEA Systems, Inc. All Rights Reserved.
09 */
10 public interface AdminReportMBean extends Serializable {
11 public int getNewUserCount();
12 }
|