Class UsersController
java.lang.Object
edu.ucsb.cs156.example.controllers.ApiController
edu.ucsb.cs156.example.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 Summary
-
Method Summary
Methods inherited from class edu.ucsb.cs156.example.controllers.ApiController
genericMessage, getCurrentUser, handleGenericException
-
Constructor Details
-
UsersController
public UsersController()
-
-
Method Details
-
users
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @GetMapping("") public org.springframework.http.ResponseEntity<String> users() throws com.fasterxml.jackson.core.JsonProcessingExceptionThis 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
-