protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
List<Hotel> hotels =
hotelIntegrationService.getHotels(
new HotelIntegrationFilter(
Integer.valueOf(request.getParameter("stars")),
request.getParameter("region")
)
);