Started with the separated DB with the given code
[RRRRHHHH_Code] / ruralHouses / src / businessLogic / BookingManager.java
index 138484b..f5b993d 100644 (file)
@@ -7,13 +7,12 @@ import java.util.Vector;
 
 import javax.mail.MessagingException;
 
-import com.db4o.ObjectContainer;
-import com.db4o.ObjectSet;
 import common.BookingInterface;
 
 import dataAccess.DB4oManager;
 import domain.Booking;
 import domain.Client;
+import domain.Offer;
 import domain.RuralHouse;
 import exceptions.OfferCanNotBeBooked;
 
@@ -41,6 +40,11 @@ public final class BookingManager extends UnicastRemoteObject implements Booking
 
        public void denyBooking(Booking b) throws RemoteException{
                                this.dbMngr.removeBooking(b);
+                               try {
+                                       MailManager.getInstance().Send(b.getClient().getMailAccount(), "Your booking has not been accepted","We are sorry");
+                               } catch (MessagingException e) {
+                                       e.printStackTrace();
+                               }
        }
 
 
@@ -71,4 +75,11 @@ public final class BookingManager extends UnicastRemoteObject implements Booking
                                client);
        }
 
+
+
+       @Override
+       public Vector<Booking> getOffersbookings(Offer o) throws RemoteException {
+               return dbMngr.getOfBok(o);
+       }
+
 }
\ No newline at end of file