Class UsersController

java.lang.Object
edu.ucsb.cs156.dining.controllers.ApiController
edu.ucsb.cs156.dining.controllers.UsersController

@RequestMapping("/api/admin/users") @RestController public class UsersController extends ApiController
This is a REST controller for getting information about the users. These endpoints are only accessible to users with the role "ROLE_ADMIN".
  • Constructor Details Link icon

    • UsersController Link icon

      public UsersController()
  • Method Details Link icon

    • users Link icon

      @PreAuthorize("hasRole(\'ROLE_ADMIN\')") @GetMapping("") public org.springframework.http.ResponseEntity<String> users() throws com.fasterxml.jackson.core.JsonProcessingException
      This method returns a list of all users. Accessible only to users with the role "ROLE_ADMIN".
      Returns:
      a list of all users
      Throws:
      com.fasterxml.jackson.core.JsonProcessingException - if there is an error processing the JSON