67e02d4c1c49c169ca22e01ce7785ce036d6dfcd
[RRRRHHHH_Code] / ruralHouses / src / common / AccountInterface.java
1 package common;
2
3 import java.rmi.Remote;
4 import java.rmi.RemoteException;
5
6 import domain.Account;
7
8 public interface AccountInterface extends Remote{
9         
10
11         public boolean addAccount(int index) throws RemoteException;
12         
13         public boolean removeAccount(Account ac) throws RemoteException;
14 }