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

Java编程

开发平台:

Java

  1. package bible.ejb.entity.bmp;
  2. import javax.ejb.EJBObject;
  3. import java.rmi.RemoteException;
  4. public interface Student extends EJBObject
  5. {
  6.   public String getFirstName() throws RemoteException;
  7.   public void setFirstName(String firstName)
  8.     throws RemoteException;
  9.   public String getLastName() throws RemoteException;
  10.   public void setLastName(String lastName)
  11.     throws RemoteException;
  12.   public String getEMailAddr() throws RemoteException;
  13.   public void setEMailAddr(String eMailAddr)
  14.     throws RemoteException;
  15.   public String getPhone() throws RemoteException;
  16.   public void setPhone(String phone) throws RemoteException;
  17.   public String getSSNum() throws RemoteException;
  18.   public void setSSNum(String ssNum) throws RemoteException;
  19.   public void setStudentData(StudentVO student)
  20.     throws RemoteException;
  21.   public StudentVO getStudentData() throws RemoteException;
  22. }