import java.rmi.Remote; import java.rmi.RemoteException; public interface Account extends Remote { // Add method to return master BankManager // Add method to return Client of this account // Add method to return balance of this account // Add method to withdraw cash from this account }