Merge branch 'master' of https://xp-dev.com/git/RRRRHHHH_Code
[RRRRHHHH_Code] / ruralHouses / src / common / AccountInterface.java
1 package common;
2
3 import java.rmi.Remote;
4 import java.rmi.RemoteException;
5
6 public interface AccountInterface extends Remote{
7         
8
9         public boolean addAccount(int index) throws RemoteException;
10         
11         public boolean removeAccount(int index) throws RemoteException;
12 }