Uses of Class
com.ericbouchut.learndev.course.entity.Enrollment
Packages that use Enrollment
-
Uses of Enrollment in com.ericbouchut.learndev.course
Methods in com.ericbouchut.learndev.course that return types with arguments of type EnrollmentModifier and TypeMethodDescriptionEnrollmentService.enrollmentFor(User student, Course course) The enrollment of a student in a course, if any (dropped included).EnrollmentService.myEnrollments(User student) All enrollments of a student, dropped included (the dashboard filters).The roster of a course: every enrollment, dropped ones included. -
Uses of Enrollment in com.ericbouchut.learndev.course.repository
Methods in com.ericbouchut.learndev.course.repository that return types with arguments of type EnrollmentModifier and TypeMethodDescriptionEnrollmentRepository.findByCourse(Course course) The roster of a course.EnrollmentRepository.findByUser(User user) A student's enrollments (their personal course list).EnrollmentRepository.findByUserAndCourse(User user, Course course) The single enrollment of a student in a course, if any.