Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions ccac99 ... vs 3a0296 ... for ruralHouses client/src/common/BookingInterface.java

Diff revisions: vs.
  @@ -7,13 +7,14 @@
7 7
8 8 import domain.Booking;
9 9 import domain.Client;
10 + import domain.Offer;
10 11 import domain.RuralHouse;
11 12 import exceptions.OfferCanNotBeBooked;
12 13
13 14 public interface BookingInterface extends Remote {
14 15
15 16
16 -
17 + public Vector<Booking> getOffersbookings(Offer o) throws RemoteException;
17 18
18 19 public void denyBooking(Booking b) throws RemoteException;
19 20