Uses of Record Class
com.ericbouchut.learndev.course.dto.CourseForm
Packages that use CourseForm
-
Uses of CourseForm in com.ericbouchut.learndev.course
Methods in com.ericbouchut.learndev.course with parameters of type CourseFormModifier and TypeMethodDescriptionInstructorCourseService.create(User instructor, CourseForm form) Create a new DRAFT course owned by the instructor.InstructorCourseController.createCourse(@Valid CourseForm form, org.springframework.validation.BindingResult binding, Principal principal, org.springframework.ui.Model model) Create a DRAFT course from the submitted form.voidInstructorCourseService.update(Course course, CourseForm form) Update the title and description of the instructor's course.InstructorCourseController.updateCourse(Long courseId, @Valid CourseForm form, org.springframework.validation.BindingResult binding, Principal principal, org.springframework.ui.Model model) Update the course from the submitted form.