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

Java编程

开发平台:

Java

  1. package day21ex.student;
  2. import javax.ejb.*;
  3. import java.util.Collection;
  4. public interface StudentLocalHome extends EJBLocalHome {
  5.    StudentLocal create(String studentID, String name, String password, 
  6.           String address, String emailAddress) throws CreateException;
  7.    public StudentLocal findByPrimaryKey(String key) throws FinderException;
  8.    public Collection findByLastName(String lastName) throws FinderException;
  9.    public Collection findByAddress(String address) throws FinderException;
  10.    public Collection findAllStudents() throws FinderException;
  11. }