StudentRemote.java~2~
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:0k
源码类别:
Java编程
开发平台:
Java
- package com.cwj.entitybeandempcmp;
- import javax.ejb.*;
- import java.util.*;
- import java.rmi.*;
- public interface StudentRemote extends javax.ejb.EJBObject {
- public String getStudentID() throws RemoteException;
- public void setFirstname(String firstname) throws RemoteException;
- public String getFirstname() throws RemoteException;
- public void setLastname(String lastname) throws RemoteException;
- public String getLastname() throws RemoteException;
- }