uc 03 - yshehab/SchoolRoomBooking GitHub Wiki

3. Add a booking to a permit

Coordinating method

public collection<Range> addBooking(Permit aPermit, Room aRoom, Range dateRange, Range timeslots, String display) 

Object diagram for a typical scenario.

Walk-through for this scenario

Given: The Permit object permit47, the Room object room4, the Range object range67, the Range object range78 and the string "Yoga".

  1. Check if permit47 is linked to the School object linked to room4, which is school3.
    As permit47 is linked to school3:
  2. Check if there are any other bookings for room4 intersecting with range67 and range78.
    As the check is sucessful:
  3. a new Booking object booking3 is created with the supplied attributes
  4. school3 records a reference to booking3 and room4
  5. permit47 records a reference to booking3

Note: this makes isFor a derived association, as we have Map <Room, Booking> as an attribute of School

Sequence diagram for this scenario

Notes on alternative scenario

  • If aPermit is not linked to the School that aRoom is linked to then throw an exception.
  • If there are any other bookings for room4 intersecting with range67 and range78 then two range objects are returned, one of intersecting dates and one of intersecting timeslots.

Updates to implementation model

Classes

Class Room

Links
private School school
Methods
public School getSchool()

Class School

Links
private collection<Permit> permits<br/>
private collection<Room, Booking> bookings
Methods
public Boolean hasPermit(Permit aPermit)<br />

Post condition: returns true if aPermit is issued for the receiving school, False otherwise.

public collection<Booking> getBookings(Room aRoom)<br />

Post condition: returns the collection of Booking objects linked to aRoom
Note: we currently only need future bookings

public void addBooking(Room aRoom, Booking aBooking)<br />

Post condition: the collection bookings contains (aRoom, aBooking)

Class Booking

Links
Methods
public new(Room aRoom, Range aDateRange, Range  timeslots, String display, Permit aPermit)

Post condition: a new Booking object aBooking is created, a Permit records a reference to aBooking. The School object linked to aRoom records a reference to aRoom and aBooking.

public collection<Range>  intersectsWith(Range aDaterange, Range timeslots)<br />

Post condition: a collection of two Range objects is returned, one containing intersecting days and one intersecting timeslots. If there are no intersections two empty Range objects are returned.

Class LettingCoord

Links

None

Methods
public collection<Range> addBooking(Permit aPermit, Room aRoom, Range aDateRange, Range timeslots, String display) <br />

Post condition: a collection of two Range objects is returned, one containing intersecting days and one intersecting timeslots. If there are no intersections two empty Range objects are returned and a new Booking object is created with the supplied attributes.

Class Permit

Links
private collection<Booking> bookings
Methods
public void addBooking(Booking aBooking)<br />

Post condition: the collection bookings contains aBooking

Navigations

isIn from School to Room
has from School to Booking
hasPermits from School to Permit

Discussion

⚠️ **GitHub.com Fallback** ⚠️