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

Java编程

开发平台:

Java

  1. package examples.dualpersistent;
  2. import javax.ejb.*;
  3. import java.rmi.RemoteException;
  4. import java.util.Collection;
  5. public interface AccountHome extends EJBHome {
  6.   public Account create(String accountId, double initialBalance)
  7.     throws CreateException, RemoteException;
  8.     public Account findByPrimaryKey(String primaryKey)
  9.            throws FinderException, RemoteException;
  10.     public Collection findBigAccounts(double balanceGreaterThan)
  11.            throws FinderException, RemoteException;
  12. }