RosterHome.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package cmpsample;
  2. import javax.ejb.*;
  3. import java.util.*;
  4. public interface RosterHome extends javax.ejb.EJBLocalHome {
  5.   public Roster create(String rosterID) throws CreateException;
  6.   public Roster create(String rosterID, String scheduleID, String studentID) throws CreateException;
  7.   public Collection findByStudentID(String studentID) throws FinderException;
  8.   public Collection findByScheduleID(String scheduleID) throws FinderException;
  9.   public Roster findByPrimaryKey(String rosterID) throws FinderException;
  10. }