@Override
 @ApiMethod(name = "bookings.route", path = "bookingsroute", httpMethod = "post")
 public List<BookingInfo> getBookingsForRoute(RouteInfo routeInfo)
     throws IllegalArgumentException {
   ObjectifyService.begin();
   logger.info("route inquiry:" + routeInfo.getStart() + " -> " + routeInfo.getEnd());
   return bookingServiceManager.getBookingsForRoute(routeInfo);
 }