package common; import java.rmi.Remote; import java.rmi.RemoteException; public interface AccountInterface extends Remote{ public boolean addAccount(int index) throws RemoteException; public boolean removeAccount(int index) throws RemoteException; }