Class MenuItemReviewController
java.lang.Object
edu.ucsb.cs156.example.controllers.ApiController
edu.ucsb.cs156.example.controllers.MenuItemReviewController
@RequestMapping("/api/menuitemreviews")
@RestController
public class MenuItemReviewController
extends ApiController
This is a REST controller for MenuItemReviews
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionList all MenuItemReviewsDelete a MenuItemReviewGet a single review by idpostMenuItemReview(long itemId, String reviewerEmail, int stars, LocalDateTime dateReviewed, String comments) Post a new MenuItemReviewupdateMenuItemReview(Long id, @Valid MenuItemReview incoming) Update a single reviewMethods inherited from class edu.ucsb.cs156.example.controllers.ApiController
genericMessage, getCurrentUser, handleGenericException 
- 
Constructor Details
- 
MenuItemReviewController
public MenuItemReviewController() 
 - 
 - 
Method Details
- 
allMenuItemReviewS
@PreAuthorize("hasRole(\'ROLE_USER\')") @GetMapping("/all") public Iterable<MenuItemReview> allMenuItemReviewS()List all MenuItemReviews- Returns:
 - an iterable of MenuItemReview
 
 - 
postMenuItemReview
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @PostMapping("/post") public MenuItemReview postMenuItemReview(@RequestParam long itemId, @RequestParam String reviewerEmail, @RequestParam int stars, @RequestParam("dateReviewed") @DateTimeFormat(iso=DATE_TIME) LocalDateTime dateReviewed, @RequestParam String comments) throws com.fasterxml.jackson.core.JsonProcessingException Post a new MenuItemReview- Parameters:
 itemId-reviewerEmail-stars-dateReviewed-comments-- Returns:
 - the new MenuItemReview
 - Throws:
 com.fasterxml.jackson.core.JsonProcessingException
 - 
getById
@PreAuthorize("hasRole(\'ROLE_USER\')") @GetMapping("") public MenuItemReview getById(@RequestParam Long id) Get a single review by id- Parameters:
 id- the id of the review- Returns:
 - a MenuItemReview
 
 - 
deleteMenuItemReview
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @DeleteMapping("") public Object deleteMenuItemReview(@RequestParam Long id) Delete a MenuItemReview- Parameters:
 id- the id of the review to delete- Returns:
 - a message indicating the review was deleted
 
 - 
updateMenuItemReview
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @PutMapping("") public MenuItemReview updateMenuItemReview(@RequestParam Long id, @RequestBody @Valid @Valid MenuItemReview incoming) Update a single review- Parameters:
 id- id of the review to updateincoming- the new review- Returns:
 - the updated review object
 
 
 -