cb53684ad0a15f7ca0d677129380254cc9afd9d7
[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(Account ac) throws RemoteException;
13         
14         public boolean removeAccount(Account ac) throws RemoteException;
15 }