Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Legacy CM Method:List getCourseIdRequiredFields();
Comparable CM Method: Moved to SectionFieldManager in /site-manage
Notes: This method allows the Site Info & Worksite Setup tools to take an arbitrary number of text fields and generate an ID that CM understands as a section EID.   Since this is peculiar to the UI of Site Info, it's been moved out of CM and into its own API, specifically for this tool.

...

Legacy CM Method:Course getCourse(String courseId)
Comparable CM Method: Section getSection(String sectionEid)
Notes: The CM unit that we attach to sites via a providerId (and which may automatically become site sections) is now the Section object.   The legacy Course object has been removed in Sakai 2.4.

...

Legacy CM Method:List getCourseMembers(String courseId)
Comparable CM Method: Combination of the following:

Code Block

Set<Membership> getSectionMemberships(String sectionEid)

...


Section.getEnrollmentSet()

...


Set<Enrollment> getEnrollments(String enrollmentSetEid)

Notes: If a section, which is a group of users that might meet at some place & time is also something that winds up on a transcript, the section has an enrollmentSet.   So enrolled students are modeled as enrollments, but the section might have other members as well.   Those members have roles that can be mapped to Sakai roles via the configurable CM-based GroupProvider.

...

Legacy CM Method:String getCourseName(String courseId)
Comparable CM Method: Depending on the intent, this could be:

Code Block

Section getSection(String sectionEid) -> Section.getTitle()

It could also be the title of the section's CourseOffering.

Code Block

Section.getCourseOfferingEid()

...


CourseOffering getCourseOffering(String courseOfferingEid)

Notes: Section, Course Offering, and Canonical Course objects all have getTitle() methods.

...