@Override
 public void postReservation(Reservation reservation, ChannelProductMap channelProductMap) {
   LOG.info("Entering post Reservation of BookingEventHandler");
   AvailabilityUtils availabilityUtils = new AvailabilityUtils();
   availabilityUtils.fetchAndUpdateAvailabilityToBookingCom(reservation, channelProductMap);
   LOG.info("Exiting post Reservation of BookingEventHandler");
 }
 @Override
 public void postPrice(Price price, ChannelProductMap channelProductMap) {
   LOG.info("Entering post price of BookingEventHandler");
   AvailabilityUtils availabilityUtils = new AvailabilityUtils();
   availabilityUtils.fetchAndUpdateAvailabilityToBookingCom(price, channelProductMap);
   LOG.info("Exiting post price of BookingEventHandler");
 }