Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
e2ae30e55bc2a997923463dd2a1274c67fdc73a6
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
39
40
41
42
43
44
package businessLogic;

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

import domain.Owner;
import domain.RuralHouse;

public interface HouseManagerInterface {



	public boolean registerNewHouse(String houseName, Owner owner,
			String description, String town, int nRooms, int nKitchens,
			int nBaths, int nLivings, int nParkings);

	// For future implementation
	// public void modifyHouse(int houseName, Owner owner,
	// String description, String town, int nRooms, int nKitchens,
	// int nBaths, int nLivings, int nParkings);

	public void removeHouse(RuralHouse rh, Owner owner);

	public Vector<RuralHouse> getHouses(String town,int nBed , int nKit, int nBath, int nPark, int nLiv) ;

	/**
	 * @param district
	 * @return
	 */
	public Vector<RuralHouse> getHousesByDistrict(String district);
	
	
	public RuralHouse getHouseByName(String Name);
	/**
	 * This method retrieves the existing  rural houses 
	 * 
	 * @return a Set of rural houses
	 */
	public Vector<RuralHouse> getAllRuralHouses()throws RemoteException,
	Exception;

	boolean registerNewHouse(RuralHouse rh);
	
}

Commits for RRRRHHHH_CoderuralHouses/src/businessLogic/HouseManagerInterface.java

Diff revisions: vs.
Revision Author Commited Message
e2ae30 ... Diff Diff Eneko Pinzolas Murua Tue 14 Apr, 2015 15:07:35 +0000

imports leaned

66f0c8 ... Diff Diff Eneko Pinzolas Murua Sun 12 Apr, 2015 18:11:42 +0000

Model modified so that owners now request for a new house insetion or a house removal. Furthermore, all Administrator GUI and bussines logic create. However, Login GUI and BussinesLogic are to be modified so that they integrate Admin identification.

afdc66 ... Diff Diff camjan Wed 25 Mar, 2015 16:43:35 +0000

Villatripas de arriba districs added and the option of searching houses with diferent parameters

82c870 ... Diff Diff pinene picture pinene Tue 10 Mar, 2015 13:32:30 +0000

DeleteHouses bug debugged

bd03dd ... Diff Diff camjan Tue 10 Mar, 2015 13:06:22 +0000

Administrator class created delete debbuging started

7c0734 ... Diff Diff Eneko Pinzolas Murua Tue 10 Mar, 2015 12:15:11 +0000

house code changed to name

e16868 ... Diff Diff Eneko Pinzolas Murua Mon 09 Mar, 2015 13:02:33 +0000

deleted aplicationFacade and imported it’s functions to specific business logics.

44451e ... Diff Diff camjan Sun 08 Mar, 2015 12:59:14 +0000

Some minor changes and the logic for searching rural houses by the name of the town done

a92725 ... Diff Diff pinene picture pinene Fri 06 Mar, 2015 09:41:12 +0000

implemented lacking GUIs and corrected errors

553879 ... camjan Wed 04 Mar, 2015 18:42:47 +0000

House Features added and logic for adding options to the owner