Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions 4f8bcc ... vs 799949 ... for ruralHouses client/src/common/AdminInterface.java

Diff revisions: vs.
  @@ -5,6 +5,7 @@
5 5 import java.util.Vector;
6 6
7 7 import domain.Account;
8 + import domain.Owner;
8 9 import domain.RuralHouse;
9 10
10 11 public interface AdminInterface extends Remote {
  @@ -26,7 +27,8 @@
26 27
27 28 public boolean addDeletionRequest(RuralHouse rh) throws RemoteException ;
28 29
29 - public boolean addAccount(Account acc) throws RemoteException ;
30 + public boolean addAccountRequest(String usr,
31 + String pss, Owner ow) throws RemoteException;
30 32
31 33 public void saveInstance() throws RemoteException;
32 34