House Features added and logic for adding options to the owner
[RRRRHHHH_Code] / ruralHouses / src / businessLogic / HouseManagerInterface.java
index 29c97d5..7a0656f 100644 (file)
@@ -1,6 +1,8 @@
 package businessLogic;
 
+import java.rmi.RemoteException;
 import java.util.Date;
+import java.util.Vector;
 
 import domain.Offer;
 import domain.Owner;
@@ -15,11 +17,12 @@ public interface HouseManagerInterface {
                        String description, String town, int nRooms, int nKitchens,
                        int nBaths, int nLivings, int nParkings);
 
-       public void modifyHouse(int houseNumber, Owner owner,
-                       String description, String town, int nRooms, int nKitchens,
-                       int nBaths, int nLivings, int nParkings);
+       // For future implementation
+       // public void modifyHouse(int houseNumber, Owner owner,
+       // String description, String town, int nRooms, int nKitchens,
+       // int nBaths, int nLivings, int nParkings);
+
+       public void removeHouse(int houseNumber);
 
-       public Offer setOffers(RuralHouse ruralHouse, Date firstDay, Date lastDay,
-                       float price);
 
 }