Interface CourseSet
-
public interface CourseSetModels "School" and "Department" as well as more ad hoc groupings.- Author:
- Josh Holtzman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthority()What authority defines this object?StringgetCategory()A categoryStringgetDescription()Gets the description of this MembershipContainer.StringgetEid()Gets the unique enterprise id of this MembershipContainer.CourseSetgetParent()Gets the parent CourseSet for this CourseSet, or null if this is a top-level CourseSet.StringgetTitle()Gets the title of this MembershipContainer.voidsetAuthority(String authority)voidsetCategory(String category)voidsetDescription(String description)voidsetEid(String eid)voidsetParent(CourseSet parent)voidsetTitle(String title)
-
-
-
Method Detail
-
getEid
String getEid()
Gets the unique enterprise id of this MembershipContainer.- Returns:
-
setEid
void setEid(String eid)
-
getAuthority
String getAuthority()
What authority defines this object?- Returns:
-
setAuthority
void setAuthority(String authority)
-
getTitle
String getTitle()
Gets the title of this MembershipContainer.- Returns:
-
setTitle
void setTitle(String title)
-
getDescription
String getDescription()
Gets the description of this MembershipContainer.- Returns:
-
setDescription
void setDescription(String description)
-
getCategory
String getCategory()
A category- Returns:
-
setCategory
void setCategory(String category)
-
getParent
CourseSet getParent()
Gets the parent CourseSet for this CourseSet, or null if this is a top-level CourseSet.- Returns:
-
setParent
void setParent(CourseSet parent)
-
-