RosterHome.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package cmpsample;
- import javax.ejb.*;
- import java.util.*;
- public interface RosterHome extends javax.ejb.EJBLocalHome {
- public Roster create(String rosterID) throws CreateException;
- public Roster create(String rosterID, String scheduleID, String studentID) throws CreateException;
- public Collection findByStudentID(String studentID) throws FinderException;
- public Collection findByScheduleID(String scheduleID) throws FinderException;
- public Roster findByPrimaryKey(String rosterID) throws FinderException;
- }