Uses of Class
edu.ucsb.cs156.frontiers.errors.EntityNotFoundException
Packages that use EntityNotFoundException
-
Uses of EntityNotFoundException in edu.ucsb.cs156.frontiers.controllers
Methods in edu.ucsb.cs156.frontiers.controllers that throw EntityNotFoundExceptionModifier and TypeMethodDescriptionCourseStaffController.courseStaffForCourse(Long courseId) This method returns a list of course staff for a given course.org.springframework.http.ResponseEntity<org.springframework.web.servlet.mvc.method.annotation.StreamingResponseBody> CSVDownloadsController.csvForQuarter(Long courseId) org.springframework.http.ResponseEntity<String> RosterStudentsController.deleteRosterStudent(Long id, boolean removeFromOrg) org.springframework.http.ResponseEntity<String> CourseStaffController.deleteStaffMember(Long id, Long courseId, boolean removeFromOrg) CourseStaffController.postCourseStaff(String firstName, String lastName, String email, Long courseId) This method creates a new CourseStaff.org.springframework.http.ResponseEntity<UpsertResponse> RosterStudentsController.postRosterStudent(String studentId, String firstName, String lastName, String email, Long courseId, String section) This method creates a new RosterStudent.RosterStudentsController.restoreRosterStudent(Long id) RosterStudentsController.rosterStudentForCourse(Long courseId) This method returns a list of roster students for a given course.RosterStudentsController.updateRosterStudent(Long id, String firstName, String lastName, String studentId, String section) CourseStaffController.updateStaffMember(Long courseId, Long id, String firstName, String lastName)