Student.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package bible.ejb.entity.bmp;
- import javax.ejb.EJBObject;
- import java.rmi.RemoteException;
- public interface Student extends EJBObject
- {
- public String getFirstName() throws RemoteException;
- public void setFirstName(String firstName)
- throws RemoteException;
- public String getLastName() throws RemoteException;
- public void setLastName(String lastName)
- throws RemoteException;
- public String getEMailAddr() throws RemoteException;
- public void setEMailAddr(String eMailAddr)
- throws RemoteException;
- public String getPhone() throws RemoteException;
- public void setPhone(String phone) throws RemoteException;
- public String getSSNum() throws RemoteException;
- public void setSSNum(String ssNum) throws RemoteException;
- public void setStudentData(StudentVO student)
- throws RemoteException;
- public StudentVO getStudentData() throws RemoteException;
- }