cleaning
[RRRRHHHH_Code] / ruralHouses / src / domain / RuralHouse.java
index 07259c8..27f8d7f 100644 (file)
@@ -98,59 +98,7 @@ public class RuralHouse implements Serializable {
                return true;
        }
 
-       /**
-        * This method obtains available offers for a concrete house in a certain
-        * period
-        * 
-        * @param houseName
-        *            , the house number where the offers must be obtained
-        * @param firstDay
-        *            , first day in a period range
-        * @param lastDay
-        *            , last day in a period range
-        * @return a vector of offers(Offer class) available in this period
-        */
-       public Vector<Offer> getOffers(Date firstDay, Date lastDay) {
-               Vector<Offer> availableOffers = new Vector<Offer>();
-               Iterator<Offer> e = offers.iterator();
-               Offer offer;
-               while (e.hasNext()) {
-                       offer = e.next();
-                       if ((offer.getFirstDay().compareTo(firstDay) >= 0)
-                                       && (offer.getLastDay().compareTo(lastDay) <= 0)
-                                       && (!offer.isBooked()))
-                               availableOffers.add(offer);
-               }
-               return availableOffers;
-       }
-
-       public Vector<Offer> getAllOffers() {
 
-               return this.offers;
-       }
-
-       /**
-        * This method obtains the offer that match exactly with a given dates that
-        * has not been booked
-        * 
-        * @param firstDay
-        *            , first day in a period range
-        * @param lastDay
-        *            , last day in a period range
-        * @return the offer(Offer class) available for a this period
-        */
-       public Offer findOffer(Date firstDay, Date lastDay) {
-               Iterator<Offer> e = offers.iterator();
-               Offer offer = null;
-               while (e.hasNext()) {
-                       offer = e.next();
-                       if ((offer.getFirstDay().compareTo(firstDay) == 0)
-                                       && (offer.getLastDay().compareTo(lastDay) == 0)
-                                       && (!offer.isBooked()))
-                               return offer;
-               }
-               return null;
-       }
 
        public Offer overlapsWith(Date firstDay, Date lastDay) {
 
@@ -165,5 +113,11 @@ public class RuralHouse implements Serializable {
                return null;
 
        }
+       
+
+       public Vector<Offer> getAllOffers() {
+
+               return this.offers;
+       }
 
 }