enrollhome.java
来自「java EJB 编程源代码。」· Java 代码 · 共 18 行
JAVA
18 行
package enroll.welfareejb;
import java.util.*;
import java.rmi.RemoteException;
import javax.ejb.*;
public interface EnrollHome extends EJBHome
{
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//这是一个基于Entity Bean的Home接口,这个Entity Bean是基于
//Bean-Managed Persistence的Entity Bean,用来对EnrollTBL表进行操作
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public Enroll create(String employee_id, ArrayList welfareItems) throws RemoteException, CreateException;
public Enroll findByPrimaryKey(String employee_id) throws ObjectNotFoundException, FinderException, RemoteException;
public Collection findAll() throws FinderException, RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?