Developing EJBs (continued)...Define the Home Interface
public interface AccountHome extends EJBHome
Account create(int accountNo, String customerName)
throws CreateException, RemoteException;
Account create(int accountNo, String customerName, double startingBalance)
throws CreateException, RemoteException;
Account findByPrimaryKey(AccountPK accountNo)
throws FinderException, RemoteException;