StudentHome.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package bible.ejb.entity.bmp;
- import javax.ejb.*;
- import java.rmi.RemoteException;
- import java.util.Collection;
- public interface StudentHome extends EJBHome
- {
- public Student create(StudentVO student)
- throws CreateException, RemoteException;
- public Student findByPrimaryKey(StudentPK key)
- throws FinderException, RemoteException;
- public Student findBySSNum(String ssNum)
- throws FinderException, RemoteException;
- public java.util.Collection findByLastName(String lastName)
- throws FinderException, RemoteException;
- }