AccountHome.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package examples.dualpersistent;
- import javax.ejb.*;
- import java.rmi.RemoteException;
- import java.util.Collection;
- public interface AccountHome extends EJBHome {
- public Account create(String accountId, double initialBalance)
- throws CreateException, RemoteException;
- public Account findByPrimaryKey(String primaryKey)
- throws FinderException, RemoteException;
- public Collection findBigAccounts(double balanceGreaterThan)
- throws FinderException, RemoteException;
- }