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