1 22 package org.jboss.ejb3.test.bank; 23 24 import java.rmi.*; 25 import java.util.*; 26 import javax.ejb.*; 27 28 33 public interface Customer extends EJBObject 34 { 35 37 39 41 43 public String getName() throws RemoteException; 45 46 public void setName(String name) throws RemoteException; 47 48 public Collection getAccounts() throws RemoteException; 49 50 public void addAccount(Account acct) throws RemoteException; 51 52 public void removeAccount(Account acct) throws RemoteException; 53 } 54 55 71 | Popular Tags |