Java Doc for CourseManagementAdministration.java in  » ERP-CRM-Financial » sakai » org » sakaiproject » coursemanagement » api » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » sakai » org.sakaiproject.coursemanagement.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.sakaiproject.coursemanagement.api.CourseManagementAdministration

All known Subclasses:   org.sakaiproject.coursemanagement.impl.CourseManagementAdministrationHibernateImpl,
CourseManagementAdministration
public interface CourseManagementAdministration (Code)
A service that provides for the administration of enterprise-defined course data. This service is typically not used inside Sakai, and should not be exposed until appropriate permission and reconciliation issues are solved.
author:
   Josh Holtzman




Method Summary
public  voidaddCanonicalCourseToCourseSet(String courseSetEid, String canonicalCourseEid)
     Adds a CanonicalCourse to a CourseSet.
public  voidaddCourseOfferingToCourseSet(String courseSetEid, String courseOfferingEid)
     Adds a CourseOffering to a CourseSet.
public  MembershipaddOrUpdateCourseOfferingMembership(String userId, String role, String courseOfferingEid, String status)
     Adds a user to a CourseOffering.
public  MembershipaddOrUpdateCourseSetMembership(String userId, String role, String courseSetEid, String status)
     Adds a user to a CourseSet.
public  EnrollmentaddOrUpdateEnrollment(String userId, String enrollmentSetEid, String enrollmentStatus, String credits, String gradingScheme)
     Adds an Enrollment to an EnrollmentSet.
public  MembershipaddOrUpdateSectionMembership(String userId, String role, String sectionEid, String status)
     Adds a user to a Section.
public  SectionCategoryaddSectionCategory(String categoryCode, String categoryDescription)
    
public  AcademicSessioncreateAcademicSession(String eid, String title, String description, Date startDate, Date endDate)
     Creates a new AcademicSession.
public  CanonicalCoursecreateCanonicalCourse(String eid, String title, String description)
     Creates a new CanonicalCourse.
public  CourseOfferingcreateCourseOffering(String eid, String title, String description, String status, String academicSessionEid, String canonicalCourseEid, Date startDate, Date endDate)
     Creates a new CourseOffering.
public  CourseSetcreateCourseSet(String eid, String title, String description, String category, String parentCourseSetEid)
     Creates a new CourseSet.
public  EnrollmentSetcreateEnrollmentSet(String eid, String title, String description, String category, String defaultEnrollmentCredits, String courseOfferingEid, Set officialInstructors)
     Creates a new EnrollmentSet.
public  SectioncreateSection(String eid, String title, String description, String category, String parentSectionEid, String courseOfferingEid, String enrollmentSetEid)
     Creates a new Section.
public  MeetingnewSectionMeeting(String sectionEid, String location, Time startTime, Time finishTime, String notes)
     Creates a new meeting instance.
public  voidremoveAcademicSession(String eid)
     Removes an academic session and all CourseOfferings associated with this academic session.
public  voidremoveCanonicalCourse(String eid)
     Removes a canonical course and any course offerings associated with this canonical course.
public  booleanremoveCanonicalCourseFromCourseSet(String courseSetEid, String canonicalCourseEid)
     Removes a CanonicalCourse from a CourseSet.
public  voidremoveCourseOffering(String eid)
     Removes a course offering, any memberships in the course offering, as well as sections and enrollment sets that belong to this course offering.
public  booleanremoveCourseOfferingFromCourseSet(String courseSetEid, String courseOfferingEid)
     Removes a CourseOffering from a CourseSet.
public  booleanremoveCourseOfferingMembership(String userId, String courseOfferingEid)
     Removes a user from a CourseOffering.
public  voidremoveCourseSet(String eid)
     Removes a course set and any memberships in the course set.
public  booleanremoveCourseSetMembership(String userId, String courseSetEid)
     Removes a user from a CourseSet.
public  booleanremoveEnrollment(String userId, String enrollmentSetEid)
     Removes an Enrollment from an EnrollmentSet by setting the Enrollment to dropped=true.
public  voidremoveEnrollmentSet(String eid)
     Removes an enrollment set and all associated enrollments.
public  booleanremoveEquivalency(CanonicalCourse canonicalCourse)
     Removes a CanonicalCourse from its set of equivalent CanonicalCourses, if it is a member of such a set.
public  booleanremoveEquivalency(CourseOffering courseOffering)
     Removes a CourseOffering from its set of equivalent CourseOfferings, if it is a member of such a set.
public  voidremoveSection(String eid)
     Removes a section and any memberships in the section.
public  booleanremoveSectionMembership(String userId, String sectionEid)
     Removes a user from a Section.
public  voidsetEquivalentCanonicalCourses(Set canonicalCourses)
    
public  voidsetEquivalentCourseOfferings(Set courseOfferings)
    
public  voidupdateAcademicSession(AcademicSession academicSession)
     Updates an existing AcademicSession.
public  voidupdateCanonicalCourse(CanonicalCourse canonicalCourse)
     Updates an existing CanonicalCourse.
public  voidupdateCourseOffering(CourseOffering courseOffering)
     Updates an existing CourseOffering.
public  voidupdateCourseSet(CourseSet courseSet)
     Updates an existing CourseSet.
public  voidupdateEnrollmentSet(EnrollmentSet enrollmentSet)
     Updates an existing EnrollmentSet.
public  voidupdateSection(Section section)
     Updates an existing Section.



Method Detail
addCanonicalCourseToCourseSet
public void addCanonicalCourseToCourseSet(String courseSetEid, String canonicalCourseEid) throws IdNotFoundException(Code)
Adds a CanonicalCourse to a CourseSet.
Parameters:
  courseSetEid -
Parameters:
  canonicalCourseEid -
throws:
  IdNotFoundException -



addCourseOfferingToCourseSet
public void addCourseOfferingToCourseSet(String courseSetEid, String courseOfferingEid)(Code)
Adds a CourseOffering to a CourseSet.
Parameters:
  courseSetEid -
Parameters:
  courseOfferingEid -



addOrUpdateCourseOfferingMembership
public Membership addOrUpdateCourseOfferingMembership(String userId, String role, String courseOfferingEid, String status)(Code)
Adds a user to a CourseOffering. If the user is already a member of the CourseOffering, update the user's role.
Parameters:
  userId -
Parameters:
  role -
Parameters:
  courseOfferingEid -
Parameters:
  status -



addOrUpdateCourseSetMembership
public Membership addOrUpdateCourseSetMembership(String userId, String role, String courseSetEid, String status) throws IdNotFoundException(Code)
Adds a user to a CourseSet. If the user is already a member of the CourseSet, update the user's role.
Parameters:
  userId -
Parameters:
  role -
Parameters:
  courseSetEid -
Parameters:
  status -
throws:
  IdNotFoundException - If the CourseSet can not be found



addOrUpdateEnrollment
public Enrollment addOrUpdateEnrollment(String userId, String enrollmentSetEid, String enrollmentStatus, String credits, String gradingScheme)(Code)
Adds an Enrollment to an EnrollmentSet. If the user is already enrolled in the EnrollmentSet, the Enrollment record is updated for the user.
Parameters:
  userId -
Parameters:
  enrollmentSetEid -
Parameters:
  enrollmentStatus -
Parameters:
  credits -
Parameters:
  gradingScheme -



addOrUpdateSectionMembership
public Membership addOrUpdateSectionMembership(String userId, String role, String sectionEid, String status)(Code)
Adds a user to a Section. If the user is already a member of the Section, update the user's role.
Parameters:
  userId -
Parameters:
  role -
Parameters:
  sectionEid -
Parameters:
  status -



addSectionCategory
public SectionCategory addSectionCategory(String categoryCode, String categoryDescription)(Code)



createAcademicSession
public AcademicSession createAcademicSession(String eid, String title, String description, Date startDate, Date endDate) throws IdExistsException(Code)
Creates a new AcademicSession.
Parameters:
  eid -
Parameters:
  title -
Parameters:
  description -
Parameters:
  startDate -
Parameters:
  endDate -
throws:
  IdExistsException -



createCanonicalCourse
public CanonicalCourse createCanonicalCourse(String eid, String title, String description) throws IdExistsException(Code)
Creates a new CanonicalCourse.
Parameters:
  eid -
Parameters:
  title -
Parameters:
  description -
throws:
  IdExistsException -



createCourseOffering
public CourseOffering createCourseOffering(String eid, String title, String description, String status, String academicSessionEid, String canonicalCourseEid, Date startDate, Date endDate) throws IdExistsException(Code)
Creates a new CourseOffering.
Parameters:
  eid -
Parameters:
  title -
Parameters:
  description -
Parameters:
  academicSessionEid -
Parameters:
  canonicalCourseEid -
Parameters:
  startDate -
Parameters:
  endDate -
throws:
  IdExistsException -



createCourseSet
public CourseSet createCourseSet(String eid, String title, String description, String category, String parentCourseSetEid) throws IdExistsException(Code)
Creates a new CourseSet.
Parameters:
  eid -
Parameters:
  title -
Parameters:
  description -
Parameters:
  category -
Parameters:
  parentCourseSetEid - The parent CourseSet's eid, or null if none.
throws:
  IdExistsException -



createEnrollmentSet
public EnrollmentSet createEnrollmentSet(String eid, String title, String description, String category, String defaultEnrollmentCredits, String courseOfferingEid, Set officialInstructors) throws IdExistsException(Code)
Creates a new EnrollmentSet.
Parameters:
  eid -
Parameters:
  title -
Parameters:
  description -
Parameters:
  category -
Parameters:
  defaultEnrollmentCredits -
Parameters:
  courseOfferingEid -
Parameters:
  officialInstructors -
throws:
  IdExistsException -



createSection
public Section createSection(String eid, String title, String description, String category, String parentSectionEid, String courseOfferingEid, String enrollmentSetEid) throws IdExistsException(Code)
Creates a new Section.
Parameters:
  eid -
Parameters:
  title -
Parameters:
  description -
Parameters:
  category -
Parameters:
  parentSectionEid -
Parameters:
  courseOfferingEid -
Parameters:
  enrollmentSetEid -
throws:
  IdExistsException -



newSectionMeeting
public Meeting newSectionMeeting(String sectionEid, String location, Time startTime, Time finishTime, String notes)(Code)
Creates a new meeting instance. The meeting must be associated with a section and the section must be updated for the meeting to be persisted.
Parameters:
  location - The location of the meeting
Parameters:
  startTime - The time that the section starts
Parameters:
  startTime - The time that the section finishes
Parameters:
  notes - Optional notes about this meeting



removeAcademicSession
public void removeAcademicSession(String eid)(Code)
Removes an academic session and all CourseOfferings associated with this academic session.
Parameters:
  eid - The enterprise id of the academic session



removeCanonicalCourse
public void removeCanonicalCourse(String eid)(Code)
Removes a canonical course and any course offerings associated with this canonical course.
Parameters:
  eid - The enterprise id of the canonical course



removeCanonicalCourseFromCourseSet
public boolean removeCanonicalCourseFromCourseSet(String courseSetEid, String canonicalCourseEid)(Code)
Removes a CanonicalCourse from a CourseSet.
Parameters:
  courseSetEid -
Parameters:
  canonicalCourseEid - Whether the CanonicalCourse was a member of the CourseSet andwas successfully removed.



removeCourseOffering
public void removeCourseOffering(String eid)(Code)
Removes a course offering, any memberships in the course offering, as well as sections and enrollment sets that belong to this course offering.
Parameters:
  eid - The enterprise id of the course offering



removeCourseOfferingFromCourseSet
public boolean removeCourseOfferingFromCourseSet(String courseSetEid, String courseOfferingEid)(Code)
Removes a CourseOffering from a CourseSet.
Parameters:
  courseSetEid -
Parameters:
  courseOfferingEid - Whether the CourseOffering was in the CourseSet and was removed.



removeCourseOfferingMembership
public boolean removeCourseOfferingMembership(String userId, String courseOfferingEid)(Code)
Removes a user from a CourseOffering.
Parameters:
  userId -
Parameters:
  courseOfferingEid - Whether the user was a member of the CourseOffering and wasremoved.



removeCourseSet
public void removeCourseSet(String eid)(Code)
Removes a course set and any memberships in the course set.
Parameters:
  eid - The enterprise id of the course set



removeCourseSetMembership
public boolean removeCourseSetMembership(String userId, String courseSetEid)(Code)
Removes a user from a CourseSet.
Parameters:
  userId -
Parameters:
  courseSetEid - Whether the user was a member of the CourseSet and was removed.



removeEnrollment
public boolean removeEnrollment(String userId, String enrollmentSetEid)(Code)
Removes an Enrollment from an EnrollmentSet by setting the Enrollment to dropped=true.
Parameters:
  userId -
Parameters:
  enrollmentSetEid - Whether the enrollment existed and was removed.



removeEnrollmentSet
public void removeEnrollmentSet(String eid)(Code)
Removes an enrollment set and all associated enrollments.
Parameters:
  eid - The enterprise id of the enrollment set



removeEquivalency
public boolean removeEquivalency(CanonicalCourse canonicalCourse)(Code)
Removes a CanonicalCourse from its set of equivalent CanonicalCourses, if it is a member of such a set.
Parameters:
  canonicalCourse - Whether the equivalency existed and was removed.



removeEquivalency
public boolean removeEquivalency(CourseOffering courseOffering)(Code)
Removes a CourseOffering from its set of equivalent CourseOfferings, if it is a member of such a set.
Parameters:
  courseOffering - Whether the equivalency existed and was removed.



removeSection
public void removeSection(String eid)(Code)
Removes a section and any memberships in the section. If an enrollment set is attached to this section, it must be removed via removeEnrollmentSet before removing the section.
Parameters:
  eid - The enterprise id of the section



removeSectionMembership
public boolean removeSectionMembership(String userId, String sectionEid)(Code)
Removes a user from a Section.
Parameters:
  userId -
Parameters:
  sectionEid - Whether the user was a member of the Section and was removed.



setEquivalentCanonicalCourses
public void setEquivalentCanonicalCourses(Set canonicalCourses)(Code)
Creates an equivalency (cross listing) between CanonicalCourses
Parameters:
  canonicalCourses -



setEquivalentCourseOfferings
public void setEquivalentCourseOfferings(Set courseOfferings)(Code)
Creates an equivalency (cross listing) betweencourseOfferings
Parameters:
  courseOfferings -



updateAcademicSession
public void updateAcademicSession(AcademicSession academicSession)(Code)
Updates an existing AcademicSession.
Parameters:
  academicSession - The AcademicSession to be updated



updateCanonicalCourse
public void updateCanonicalCourse(CanonicalCourse canonicalCourse)(Code)
Updates an existing CanonicalCourse.
Parameters:
  canonicalCourse -



updateCourseOffering
public void updateCourseOffering(CourseOffering courseOffering)(Code)
Updates an existing CourseOffering.
Parameters:
  courseOffering -



updateCourseSet
public void updateCourseSet(CourseSet courseSet)(Code)
Updates an existing CourseSet.
Parameters:
  courseSet -



updateEnrollmentSet
public void updateEnrollmentSet(EnrollmentSet enrollmentSet)(Code)
Updates an existing EnrollmentSet.
Parameters:
  enrollmentSet -



updateSection
public void updateSection(Section section)(Code)
Updates an existing Section.
Parameters:
  section -



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.