}
public void setBookings() {
book1 = new Booking();
book1.setCustomer(customer);
book1.setStructure(hotel1);
book1.setRoom(room1);
book1.setBeginDate(CalendarUtils.GetGregorianCalendar("11/02/2009"));
book1.setFinishDate(CalendarUtils.GetGregorianCalendar("14/02/2009"));
book1.setAccomodation("PN");
book1.setType("BOOKING");
bookingRawManager.add(book1);
book2 = new Booking();
book2.setCustomer(customer);
book2.setStructure(hotel1);
book2.setRoom(room2);
book2.setBeginDate(CalendarUtils.GetToday());
book2.setFinishDate(CalendarUtils.GetToday());
book2.setAccomodation("PN");
book2.setType("BOOKING");
bookingRawManager.add(book2);
book3 = new Booking(); // confirmedBooking
book3.setCustomer(customer);
book3.setStructure(hotel1);
book3.setRoom(room3);
book3.setBeginDate(CalendarUtils.GetToday());
book3.setFinishDate(CalendarUtils.GetToday());
book3.setAccomodation("PN");
book3.setType("BOOKING");
bookingRawManager.add(book3);
Booking b = (Booking) bookingRawManager.get(book3.getId());
confirmedBooking= bookingRawManager.checkIn(b);
book4 = new Booking();
book4.setCustomer(customer);
book4.setStructure(hotel1);
book4.setRoom(room4);
book4.setBeginDate(CalendarUtils.GetToday());
book4.setFinishDate(CalendarUtils.GetTomorrow());
book4.setAccomodation("PN");
book4.setType("BOOKING");
bookingRawManager.add(book4);
book5 = new Booking();
book5.setCustomer(customer);
book5.setStructure(hotel1);
book5.setRoom(room6);
book5.setBeginDate(CalendarUtils.GetGregorianCalendar("27/09/2008"));
book5.setFinishDate(CalendarUtils.GetToday());
book5.setAccomodation("PN");
book5.setType("BOOKING");
bookingRawManager.add(book5);
book6 = new Booking();
book6.setCustomer(customer);
book6.setStructure(hotel1);
book6.setRoom(room5);
book6.setBeginDate(CalendarUtils.GetGregorianCalendar("27/09/2008"));
book6.setFinishDate(CalendarUtils.GetGregorianCalendar("29/09/2008"));