Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
32ba0e29d5e028120ff2b25622ee8ed3b7361364
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package common;

import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.Vector;

import domain.Account;
import domain.Owner;
import domain.RuralHouse;

public interface AdminInterface extends Remote {

	
	public Vector<RuralHouse> getAdditionRequests() throws RemoteException;

	public Vector<RuralHouse> getDeletionRequests() throws RemoteException ;

	public Vector<Account> getOwnerAdditionRequests() throws RemoteException ;
	
	public Vector<Owner> getAllOwners()throws RemoteException ;
	
	public void removeHouseAdditionRequests(RuralHouse house) throws RemoteException ;

	public void removeHouseDeletionRequests(RuralHouse house) throws RemoteException ;
	
	public void removeOwnerAdditionRequests(int index) throws RemoteException ;
	
	public boolean addAdditionRequest(RuralHouse rh) throws RemoteException ;

	public boolean addDeletionRequest(RuralHouse rh) throws RemoteException ;
	
	public boolean addAccountRequest(String usr,
			String pss, Owner ow) throws RemoteException;
	
	public void saveInstance() throws RemoteException;
	
	
}

Commits for RRRRHHHH_CoderuralHouses/src/common/AdminInterface.java

Diff revisions: vs.
Revision Author Commited Message
32ba0e ... Diff Diff camjan Wed 20 May, 2015 12:44:59 +0000

Now AdminManager gets the owner for removing them

578bec ... Diff Diff epinzolas001 Mon 18 May, 2015 11:44:38 +0000

New owners now can be created properly.

799949 ... Diff Diff epinzolas001 Mon 18 May, 2015 11:12:36 +0000

debugging

4f8bcc ... epinzolas001 Mon 18 May, 2015 09:49:54 +0000

Merge conflicts solutioned