FileDocCategorySizeDatePackage
RemoteCustomer.javaAPI DocExample464Fri Jan 31 06:28:08 GMT 1997bank.server

RemoteCustomer.java

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;

}