Package org.springframework.springfaces.traveladvisor.domain

Examples of org.springframework.springfaces.traveladvisor.domain.ReviewDetails


  @RequestMapping("/advisor/{country}/{city}/{name}/write-review")
  public String writeHotelReview(@PathVariable String country, @PathVariable String city, @PathVariable String name,
      Model model) {
    // FIXME is it wise that we can get here from a bookmark. Back button issues?
    ReviewDetails review = new ReviewDetails();
    model.addAttribute(getHotel(country, city, name)).addAttribute("review", review);
    return "writeReview";
  }
View Full Code Here

TOP

Related Classes of org.springframework.springfaces.traveladvisor.domain.ReviewDetails

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.