1 25 26 28 29 package org.objectweb.jonas.jtests.beans.beanexc; 30 31 import java.util.Enumeration ; 32 import java.rmi.RemoteException ; 33 import javax.ejb.CreateException ; 34 import javax.ejb.EJBHome ; 35 import javax.ejb.FinderException ; 36 37 38 public interface AccountEHome extends EJBHome { 39 40 public AccountE create(int number, String customer, long balance) throws RemoteException , CreateException ; 41 public AccountE create(boolean flg) throws RemoteException , CreateException , AppException; 42 public AccountE create(int flg) throws RemoteException , CreateException , AppException; 43 public AccountE findByPrimaryKey(AccountPK pk) throws RemoteException , FinderException ; 44 public AccountE findByNoAccount(int number) throws RemoteException , FinderException ; 45 public Enumeration findCustomerAccounts(String name) throws RemoteException , FinderException ; 46 public Enumeration findBigAccounts(long b) throws RemoteException , FinderException ; 47 public Enumeration findAllAccounts() throws RemoteException , FinderException ; 48 } 49 | Popular Tags |