Uses of Class
edu.ucsb.cs.scaffold.errors.EntityNotFoundException
Packages that use EntityNotFoundException
-
Uses of EntityNotFoundException in edu.ucsb.cs.scaffold.controller
Methods in edu.ucsb.cs.scaffold.controller that throw EntityNotFoundExceptionModifier and TypeMethodDescriptionCourseStaffController.courseStaffForCourse(Long courseId) This method returns a list of course staff for a given course.ConceptsController.deleteConcept(Long conceptId) ConceptsController.deleteConceptEdge(Long id) org.springframework.http.ResponseEntity<String> RosterStudentsController.deleteRosterStudent(Long id) org.springframework.http.ResponseEntity<String> CourseStaffController.deleteStaffMember(Long id, Long courseId) ConceptsController.designateSubconcept(Long conceptId, Long parentConceptId) org.springframework.http.ResponseEntity<String> ConceptsYamlController.downloadConceptsYaml(Long courseId) ConceptsController.postConcept(CreateConceptDTO dto) ConceptsController.postConceptEdge(Long sourceConceptId, Long targetConceptId) CourseStaffController.postCourseStaff(String firstName, String lastName, String email, Long courseId) This method creates a new CourseStaff.ConceptsController.postPracticeProblem(Long conceptId, String url) 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.ConceptsController.postSubconcept(CreateSubconceptDTO dto) ConceptsController.putConcept(Long conceptId, UpdateConceptDTO dto) ConceptsController.putSubconcept(Long conceptId, UpdateSubconceptDTO dto) ConceptsController.reorderSubconcepts(Long parentConceptId, List<Long> orderedSubconceptIds) ConceptsController.resetCourseScaffold(Long courseId) RosterStudentsController.restoreRosterStudent(Long id) RosterStudentsController.rosterStudentForCourse(Long courseId) This method returns a list of roster students for a given course.ConceptsController.splitOffSubconcept(Long conceptId, Integer x, Integer y) RosterStudentsController.updateRosterStudent(Long id, String firstName, String lastName, String studentId, String section) CourseStaffController.updateStaffMember(Long courseId, Long id, String firstName, String lastName) ConceptsYamlController.uploadConceptsYaml(Long courseId, org.springframework.web.multipart.MultipartFile file) -
Uses of EntityNotFoundException in edu.ucsb.cs.scaffold.services
Methods in edu.ucsb.cs.scaffold.services that throw EntityNotFoundExceptionModifier and TypeMethodDescriptionConceptYamlService.createYAML(long courseId) The complete concept-graph content of the course as a YAML document (see docs/yaml-format.md).ConceptYamlService.replaceFromYAML(long courseId, InputStream yamlStream) Replaces the course's entire concept-graph content with the content of a YAML document in the docs/yaml-format.md format, reporting the outcome as a JSON-shaped map.