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

Java编程

开发平台:

Java

  1. package bible.ejb.entity.bmp;
  2. import javax.ejb.*;
  3. import java.rmi.RemoteException;
  4. import java.util.Collection;
  5. public interface StudentHome extends EJBHome
  6. {
  7.   public Student create(StudentVO student)
  8.     throws CreateException, RemoteException;
  9.   public Student findByPrimaryKey(StudentPK key)
  10.     throws FinderException, RemoteException;
  11.   public Student findBySSNum(String ssNum)
  12.     throws FinderException, RemoteException;
  13.   public java.util.Collection findByLastName(String lastName)
  14.     throws FinderException, RemoteException;
  15. }