package bank.server;
import imaginary.persist.RemotePersistent;
import java.rmi.RemoteException;
public interface RemoteCustomer extends RemotePersistent {
public abstract RemoteAccount[] getAccounts() throws RemoteException;
public abstract String getFirstName() throws RemoteException;
public abstract String getLastName() throws RemoteException;
public abstract RemoteAccountSet getAccountSet() throws RemoteException;
}
|