StudentLocalHome.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package day21ex.student;
- import javax.ejb.*;
- import java.util.Collection;
- public interface StudentLocalHome extends EJBLocalHome {
- StudentLocal create(String studentID, String name, String password,
- String address, String emailAddress) throws CreateException;
- public StudentLocal findByPrimaryKey(String key) throws FinderException;
- public Collection findByLastName(String lastName) throws FinderException;
- public Collection findByAddress(String address) throws FinderException;
- public Collection findAllStudents() throws FinderException;
- }