|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use BbList | |
|---|---|
| blackboard.base | Provides common classes and utility classes used throughout the platform API. |
| blackboard.data.content | Provides the classes used to store course content in Blackboard. |
| blackboard.data.course | Provides the classes used to interact with course definitions in Blackboard. |
| blackboard.data.discussionboard | |
| blackboard.data.gradebook | Provides the public implementation classes for Gradebook subsystem. |
| blackboard.persist.announcement | |
| blackboard.persist.calendar | |
| blackboard.persist.content | |
| blackboard.persist.course | |
| blackboard.persist.discussionboard | |
| blackboard.persist.gradebook | |
| blackboard.persist.navigation | |
| blackboard.persist.role | |
| blackboard.persist.user | |
| blackboard.platform.session | |
| Uses of BbList in blackboard.base |
|---|
| Subclasses of BbList in blackboard.base | |
|---|---|
class |
BbDeleteTrackingList
An extension of BbList that maintains a tracking set of elements that have been
removed through one mechanism or another. |
| Methods in blackboard.base that return BbList | |
|---|---|
BbList |
BbList.getFilteredSubList(ListFilter filter)
Returns a sublist containing only those elements that meet the given filter's requirements. |
| Uses of BbList in blackboard.data.content |
|---|
| Methods in blackboard.data.content that return BbList | |
|---|---|
BbList |
ContentFile.getChildFiles()
Returns the list of child files for this ContentFile. |
BbList |
StaffInfoFolder.getChildren()
Returns the list of children that presently belong to (was assigned to) this StaffInfoFolder. |
BbList |
Folder.getChildren()
Returns the list of children that presently belong to (was assigned to) this Folder. |
BbList |
ContentFolder.getChildren()
Returns the list of children that presently belong to (was assigned to) this CourseDocumentFolder. |
BbList |
Content.getContentFiles()
Returns the list of ContentFile objects associated with the content
item. |
BbList |
ContentFolder.getRemoved()
Returns the ids that have been removed from this Folder. |
BbList |
Content.getRemovedFiles()
Returns a list of the Ids of the files that have been removed from
this content object. |
| Methods in blackboard.data.content with parameters of type BbList | |
|---|---|
void |
ContentFile.setChildFiles(BbList files)
Sets the list of child files for this ContentFile. |
| Uses of BbList in blackboard.data.course |
|---|
| Methods in blackboard.data.course that return BbList | |
|---|---|
BbList |
CourseMembership.getFavoriteLinks()
Returns the list of favorite links for this CourseMembership. |
| Methods in blackboard.data.course with parameters of type BbList | |
|---|---|
static ListFilter |
Course.createDirectEnrollmentFilter(BbList membershipList)
|
static ListFilter |
Course.createDurationFilter(java.util.Date availDate,
BbList membershipList)
Factory method to create an instance of the ListFilter interface
capable of filtering a list of Course objects based upon the
course duration availability. |
static ListFilter |
Course.createMembershipRoleFilter(BbList membershipList,
CourseMembership.Role targetRole)
Factory method to create an instance of the ListFilter interface
capable of filtering a list of Course objects based upon the
role of a user within those courses. |
static ListFilter |
Course.createMembershipRoleFilter(BbList membershipList,
CourseMembership.Role targetRole,
boolean bIsAvailable)
Factory method to create an instance of the ListFilter interface
capable of filtering a list of Course objects based upon the
role of a user within those courses. |
void |
CourseMembership.setFavoriteLinks(BbList favoriteLinks)
Sets the list of favorite links for this CourseMembership. |
| Uses of BbList in blackboard.data.discussionboard |
|---|
| Methods in blackboard.data.discussionboard that return BbList | |
|---|---|
BbList |
Message.getResponses()
Returns the list of responses for this Message. |
BbList |
Forum.getTopLevelThreads()
Returns the list of top level message threads for this Forum. |
| Methods in blackboard.data.discussionboard with parameters of type BbList | |
|---|---|
void |
Message.setResponses(BbList msgs)
Sets the list of responses for this Message. |
void |
Forum.setTopLevelThreads(BbList msgs)
Sets the list of top level message threads for this Forum. |
| Uses of BbList in blackboard.data.gradebook |
|---|
| Methods in blackboard.data.gradebook that return BbList | |
|---|---|
BbList |
Lineitem.getScores()
Gets all scores associated with this LineItem. |
| Methods in blackboard.data.gradebook with parameters of type BbList | |
|---|---|
void |
Lineitem.setScores(BbList scores)
Associates the input Score objects to this LineItem object. |
| Uses of BbList in blackboard.persist.announcement |
|---|
| Methods in blackboard.persist.announcement that return BbList | |
|---|---|
BbList |
AnnouncementDbLoader.loadAvailableByCourseIdAndUserId(Id courseId,
Id userId,
int numDaysBack,
boolean showPerm)
loadAvailableByCourseIdAndUserId Loads the list of all available announcements that pertain to the user identified by the given user id, within the course specified by the given courseId, within a given time period. |
BbList |
AnnouncementDbLoader.loadAvailableByCourseIdAndUserId(Id courseId,
Id userId,
int numDaysBack,
boolean showPerm,
java.sql.Connection con)
loadAvailableByCourseIdAndUserId Loads the list of all available announcements that pertain to the user identified by the given user id, within the course specified by the given courseId, within a given time period using the supplied connection |
BbList |
AnnouncementDbLoader.loadAvailableByType(Announcement.Type type)
Load the list of Announcement objects currently available to the user of the type identified by the given Announcement.Type using a connection obtained through this object's database context. |
BbList |
AnnouncementDbLoader.loadAvailableByType(Announcement.Type type,
boolean showPerm)
Load the list of Announcement objects currently available to the user of the type identified by the given Announcement.Type using a connection obtained through this object's database context. |
BbList |
AnnouncementDbLoader.loadAvailableByType(Announcement.Type type,
java.sql.Connection con)
Load the list of Announcement objects currently available to the user of the type identified by the given Announcement.Type using the supplied connection. |
BbList |
AnnouncementDbLoader.loadAvailableByType(Announcement.Type type,
int numDaysBack)
Load the list of Announcement objects currently available to the user of the type identified by the given Announcement.Type created or modified within the last n days, using a connection obtained through this object's database context. |
BbList |
AnnouncementDbLoader.loadAvailableByType(Announcement.Type type,
int numDaysBack,
boolean showPerm,
java.sql.Connection con)
Load the list of Announcement objects currently available to the user of the type identified by the given Announcement.Type created or modified within the last n days, using the supplied connection. |
BbList |
AnnouncementDbLoader.loadAvailableByUserId(Id userId)
Loads the list of all available announcements (system, course and organization) that pertain to the user identified by the given user Id, using a connection obtained through this object's database context. |
BbList |
AnnouncementDbLoader.loadAvailableByUserId(Id userId,
java.sql.Connection con)
Loads the list of all available announcements (system, course and organization) that pertain to the user identified by the given user Id, using the supplied connection. |
BbList |
AnnouncementDbLoader.loadAvailableByUserId(Id userId,
int numDaysBack)
Loads the list of all available announcements (system, course and organization) that pertain to the user identified by the given user Id, within a given time period, using a connection obtained through this object's database context. |
BbList |
AnnouncementDbLoader.loadAvailableByUserId(Id userId,
int numDaysBack,
java.sql.Connection con)
Loads the list of all available announcements (system, course and organization) that pertain to the user identified by the given user Id, within a given time period, using the supplied connection. |
BbList |
AnnouncementDbLoader.loadByCourseId(Id courseId)
Load the list of Announcement objects that currently exist for the course identified by the given course Id using a connection obtained through this object's database context. |
BbList |
AnnouncementDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of Announcement objects that currently exist for the course identified by the given course Id using the supplied connection. |
BbList |
AnnouncementDbLoader.loadByType(Announcement.Type type)
Load the list of Announcement objects that currently exist of the type identified by the given Announcement.Type using a connection obtained through this object's database context. |
BbList |
AnnouncementDbLoader.loadByType(Announcement.Type type,
java.sql.Connection con)
Load the list of Announcement objects that currently exist of the type identified by the given Announcement.Type using the supplied connection. |
| Uses of BbList in blackboard.persist.calendar |
|---|
| Methods in blackboard.persist.calendar that return BbList | |
|---|---|
BbList |
CalendarEntryDbLoader.loadByCourseId(Id courseId)
Load the list of CalendarEntry objects for the given course Id using a connection obtained through this object's database context. |
BbList |
CalendarEntryDbLoader.loadByCourseId(Id courseId,
java.util.Calendar startDate,
java.util.Calendar endDate)
|
BbList |
CalendarEntryDbLoader.loadByCourseId(Id courseId,
java.util.Calendar startDate,
java.util.Calendar endDate,
java.sql.Connection con)
|
BbList |
CalendarEntryDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of CalendarEntry objects for the given course Id using the supplied connection. |
BbList |
CalendarEntryDbLoader.loadByCourseIdAndUserId(Id courseId,
Id userId,
java.util.Calendar startDate,
java.util.Calendar endDate)
loadByCourseIdAndUserId Loads the list of all calendar entries within a given date range (institution, course, and personal) that pertain to the user and course identified by the given user Id and course id. |
BbList |
CalendarEntryDbLoader.loadByCourseIdAndUserId(Id courseId,
Id userId,
java.util.Calendar startDate,
java.util.Calendar endDate,
java.sql.Connection con)
loadByCourseIdAndUserId Loads the list of all calendar entries within a given date range (institution, course, and personal) that pertain to the user and course identified by the given user Id and course id using the supplied connection. |
BbList |
CalendarEntryDbLoader.loadByType(CalendarEntry.Type type)
Load the list of CalendarEntry objects of the given Calendar.Type
using a connection obtained through this object's database context. |
BbList |
CalendarEntryDbLoader.loadByType(CalendarEntry.Type type,
java.util.Calendar startDate,
java.util.Calendar endDate)
|
BbList |
CalendarEntryDbLoader.loadByType(CalendarEntry.Type type,
java.util.Calendar startDate,
java.util.Calendar endDate,
java.sql.Connection con)
|
BbList |
CalendarEntryDbLoader.loadByType(CalendarEntry.Type type,
java.sql.Connection con)
Load the list of CalendarEntry objects of the given Calendar.Type
using the supplied connection. |
BbList |
CalendarEntryDbLoader.loadByUserId(Id userId)
Loads the list of all calendar entries in courses, in which the user identified by the given user Id is enrolled using a connection obtained through this object's database context. |
BbList |
CalendarEntryDbLoader.loadByUserId(Id userId,
java.util.Calendar startDate,
java.util.Calendar endDate)
Loads the list of all calendar entries within a given date range and courses, in which the user identified by the given user Id is enrolled using a connection obtained through this object's database context. |
BbList |
CalendarEntryDbLoader.loadByUserId(Id userId,
java.util.Calendar startDate,
java.util.Calendar endDate,
java.sql.Connection con)
Loads the list of all calendar entries in courses, in which the user identified by the given user Id is enrolled using a connection connection. |
BbList |
CalendarEntryDbLoader.loadByUserId(Id userId,
java.sql.Connection con)
Loads the list of all calendar entries within a given date range and courses, in which the user identified by the given user Id is enrolled using a connection. |
BbList |
CalendarEntryDbLoader.loadPersonalByUserId(Id userId,
java.util.Calendar startDate,
java.util.Calendar endDate)
Loads the list of personal calendar entries within a given date range that pertain to the user identified by the given user Id using a connection obtained through this object's database context. |
BbList |
CalendarEntryDbLoader.loadPersonalByUserId(Id userId,
java.util.Calendar startDate,
java.util.Calendar endDate,
java.sql.Connection con)
Loads the list of personal calendar entries that pertain to the user identified by the given user Id using the supplied connection. |
| Uses of BbList in blackboard.persist.content |
|---|
| Methods in blackboard.persist.content that return BbList | |
|---|---|
BbList |
ContentFileDbLoader.loadByContentFolderId(Id folderId)
Load the list of ContentFile objects that are referenced by children of the specified ContentFolder (identified by Id) from the database
in a lightweight fashion using a connection obtained through this object's
database context. |
BbList |
ContentFileDbLoader.loadByContentFolderId(Id folderId,
java.sql.Connection con)
Load the list of ContentFile objects that are referenced by children of the specified ContentFolder (identified by Id) from the database
in a lightweight fashion using the supplied connection. |
BbList |
ContentFileDbLoader.loadByContentFolderId(Id folderId,
java.sql.Connection con,
boolean bHeavy)
Load the list of ContentFile objects that are referenced by children of the specified ContentFolder (identified by Id) in the specified
fashion (lightweight or heavyweight) using the supplied connection. |
BbList |
ContentFileDbLoader.loadByContentId(Id id)
Load the list of ContentFile objects associated with the given piece of Content (identifed by Id) from the database in a lightweight
fashion using a connection obtained through this object's database context. |
BbList |
ContentFileDbLoader.loadByContentId(Id id,
java.sql.Connection con)
Load the list of ContentFile objects associated with the given piece of Content (identifed by Id) from the database in a lightweight
fashion using the supplied connection. |
BbList |
ContentFileDbLoader.loadByContentId(Id id,
java.sql.Connection con,
boolean bHeavy,
boolean bDeep)
Load the list of ContentFile objects associated with the given piece of Content (identifed by Id) from the database in the specified
fashion (lightweight or heavyweight) using the supplied connection. |
BbList |
StaffInfoDbLoader.loadByCourseId(Id courseId)
Loads the list of StaffInfo/StaffInfoFolder objects for the given course (identified by id) from the database using a connection obtained through this object's database context. |
BbList |
LinkDbLoader.loadByCourseId(Id courseId)
Load the Links defined within the given course (identified by id) from the database using a connection obtained through this object's database context. |
BbList |
StaffInfoDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Loads the list of StaffInfo/StaffInfoFolder objects for the given course (identified by id) from the database using the supplied connection. |
BbList |
LinkDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the Links defined within the given course (identified by id) from the database using the supplied connection. |
BbList |
GroupUploadDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of GroupUpload objects associated with the given CourseId (identifed by Id) from the database
using the supplied connection. |
BbList |
CourseUploadDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of CourseUpload objects associated with the given CourseId (identified by Id) from the database
using the supplied connection. |
BbList |
StaffInfoDbLoader.loadByParentId(Id parentId)
Loads the list of StaffInfo/StaffInfoFolder objects that are the children of the object with the given Id from the database using a connection obtained through this object's database context. |
BbList |
StaffInfoDbLoader.loadByParentId(Id parentId,
java.sql.Connection con)
Loads the list of StaffInfo/StaffInfoFolder objects that are the children of the object with the given Id from the database using the supplied connection. |
BbList |
LinkDbLoader.loadByReferredToIdAndType(Id id,
Link.ReferredToType eReferredToType)
Load the Link with the given referred to id and type from the database using a connection obtained through this object's database context. |
BbList |
LinkDbLoader.loadByReferredToIdAndType(Id id,
Link.ReferredToType eReferredToType,
java.sql.Connection con)
Load the Links with the given referred to id and type from the database using the supplied connection. |
BbList |
ContentDbLoader.loadChildren(Id id)
Loads a list containing the immediate children of the specified Content item (identified by Id) from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
ContentDbLoader.loadChildren(Id id,
java.sql.Connection con)
Loads a list containing the immediate children of the specified Content item (identified by Id) from the database in a lightweight fashion using a connection obtained using the supplied Connection. |
BbList |
ContentDbLoader.loadContentPath(Id id)
Loads a list of content items containing the specified Content item (identified by Id) along with all of its ancestors from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
ContentDbLoader.loadContentPath(Id id,
java.sql.Connection con)
Loads a list of content items containing the specified Content item (identified by Id) along with all of its ancestors from the database in a lightweight fashion using a connection obtained using the supplied Connection. |
BbList |
ContentDbLoader.loadListById(Id id)
Loads a list of Content by performing a deep load rooted at the content item with the given Id. |
BbList |
ContentDbLoader.loadListById(Id id,
java.sql.Connection con)
Loads a list of Content by performing a deep load rooted at the content item with the given Id. |
BbList |
ContentDbLoader.loadListById(Id id,
java.sql.Connection con,
boolean bHeavy)
Loads a list of Content by performing a deep load rooted at the content item with the given Id. |
| Uses of BbList in blackboard.persist.course |
|---|
| Methods in blackboard.persist.course that return BbList | |
|---|---|
BbList |
CourseDbLoader.loadAllByServiceLevel(Course.ServiceLevel sLevel)
Load all course objects in the system with the given Course.ServiceLevel
value in a light-weight fashion using a connection obtained through this
object's database context. |
BbList |
CourseDbLoader.loadAllByServiceLevel(Course.ServiceLevel sLevel,
java.sql.Connection con)
Load all course objects in the system with the given Course.ServiceLevel
value in a light-weight fashion using the supplied connection. |
BbList |
CourseDbLoader.loadAllCourses()
Load all course objects in the system in a light-weight fashion using a connection obtained through this object's database context. |
BbList |
CourseDbLoader.loadAllCourses(java.sql.Connection con)
Load all course objects in the system in a light-weight fashion using the supplied connection. |
BbList |
CourseDbLoader.loadByCourseCategoryId(Id id)
Load all course objects in the system that are defined to be within the given category (identified by id) in a light-weight fashion using a connection obtained through this object's database context. |
BbList |
CourseDbLoader.loadByCourseCategoryId(Id id,
java.sql.Connection con)
Load all course objects in the system that are defined to be within the given category (identified by id) in a light-weight fashion using the supplied connection. |
BbList |
GroupMembershipDbLoader.loadByCourseId(Id courseId)
Load the list of GroupMembership objects belonging to all groups defined within the given course (identified by id) using a connection obtained through this object's database context. |
BbList |
GroupDbLoader.loadByCourseId(Id courseId)
Load the list of Groups contained with the course (identified by Id) from the database using a connection obtained through this object's database context. |
BbList |
CourseMembershipDbLoader.loadByCourseId(Id courseId)
Load the list of CourseMembership objects belonging to the given course (identified by id) using a connection obtained through this object's database context. |
BbList |
GroupMembershipDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of GroupMembership objects belonging to all groups defined within the given course (identified by id) using the supplied connection. |
BbList |
GroupDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of Groups contained with the course (identified by Id) from the database using the supplied connection. |
BbList |
CourseMembershipDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of CourseMembership objects belonging to the given course (identified by id) using the supplied connection. |
BbList |
CourseMembershipDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con,
boolean withUser)
Load the list of CourseMembership objects belonging to the given course (identified by id) using the supplied connection. |
BbList |
CourseMembershipDbLoader.loadByCourseIdAndRole(Id courseId,
CourseMembership.Role role)
Load the list of CourseMembership objects which have the given role within the specified course (identified by id) using a connection obtained through this object's database context. |
BbList |
CourseMembershipDbLoader.loadByCourseIdAndRole(Id courseId,
CourseMembership.Role role,
java.sql.Connection con)
Load the list of CourseMembership objects which have the given role within the specified course (identified by id) using the supplied connection. |
BbList |
CourseMembershipDbLoader.loadByCourseIdAndRole(Id courseId,
CourseMembership.Role role,
java.sql.Connection con,
boolean withUser)
Load the list of CourseMembership objects which have the given role within the specified course (identified by id) using the supplied connection. |
BbList |
CourseMembershipDbLoader.loadByCourseIdWithUserInfo(Id courseId)
Load the list of CourseMembership objects belonging to the given course (identified by id) using a connection obtained through this object's database context. |
BbList |
CourseMembershipDbLoader.loadByCourseIdWithUserInfo(Id courseId,
java.sql.Connection con)
Load the list of CourseMembership objects belonging to the given course (identified by id) using the supplied connection. |
BbList |
CourseDbLoader.loadByDataSourceBatchUid(java.lang.String dsBatchUid)
Loads the lists of Courses associated with the datasource (identified by the given batch uid) from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
CourseDbLoader.loadByDataSourceBatchUid(java.lang.String dsBatchUid,
java.sql.Connection con)
Loads the lists of Courses associated with the datasource (identified by the given batch uid) from the database in a lightweight fashion using the suppplied connection. |
BbList |
GroupMembershipDbLoader.loadByGroupId(Id groupId)
Load the list of GroupMembership objects belonging to the given group (identified by id) using a connection obtained through this object's database context. |
BbList |
GroupMembershipDbLoader.loadByGroupId(Id groupId,
java.sql.Connection con)
Load the list of GroupMembership objects belonging to the given group (identified by id) using the supplied connection. |
BbList |
CourseDbLoader.loadByOrgCategoryId(Id id)
Load all organization objects in the system that are defined to be within the given category (identified by id) in a light-weight fashion using a connection obtained through this object's database context. |
BbList |
CourseDbLoader.loadByOrgCategoryId(Id id,
java.sql.Connection con)
Load all organization objects in the system that are defined to be within the given category (identified by id) in a light-weight fashion using the supplied connection. |
BbList |
CourseMembershipDbLoader.loadByUserId(Id userId)
Load the list of CourseMembership objects belonging to the given user (identified by id) using a connection obtained through this object's database context. |
BbList |
CourseDbLoader.loadByUserId(Id userId)
Load the list of Course objects in a lightweight fashion in which the given user (identified by id) is enrolled using a connection obtained through this object's database context. |
BbList |
CourseMembershipDbLoader.loadByUserId(Id userId,
java.sql.Connection con)
Load the list of CourseMembership objects belonging to the given user (identified by id) using the supplied connection. |
BbList |
CourseDbLoader.loadByUserId(Id userId,
java.sql.Connection con)
Load the list of Course objects in a lightweight fashion in which the given user (identified by id) is enrolled using the supplied connection. |
BbList |
CourseMembershipDbLoader.loadByUserId(Id userId,
java.sql.Connection con,
boolean withUser)
Load the list of CourseMembership objects belonging to the given user (identified by id) using the supplied connection. |
BbList |
CourseDbLoader.loadByUserId(Id userid,
java.sql.Connection con,
boolean bHeavy)
Load the list of Course objects in the specified fashion (lightweight or heavyweight) in which the given user (identified by id) is enrolled using the supplied connection. |
BbList |
CourseDbLoader.loadByUserIdAndCourseMembershipRole(Id userId,
CourseMembership.Role role)
Load the list of Course objects in a lightweight fashion in which the given user (identified by id) is enrolled with a specific course based role using a connection obtained through this object's database context. |
BbList |
CourseDbLoader.loadByUserIdAndCourseMembershipRole(Id userId,
CourseMembership.Role role,
java.sql.Connection con)
Load the list of Course objects in a lightweight fashion in which the given user (identified by id) is enrolled with a specific course based role using the supplied connection. |
BbList |
CourseDbLoader.loadByUserIdAndCourseMembershipRole(Id userid,
CourseMembership.Role role,
java.sql.Connection con,
boolean bHeavy)
Load the list of Course objects in the specified fashion (lightweight or heavyweight) in which the given user (identified by id) with a specific course based role is enrolled using the supplied connection. |
BbList |
CourseDbLoader.loadByUserIdAndDirectEnrollments(Id userId)
Load the list of Course objects in which the given user (identified by id) is directly enrolled |
BbList |
CourseDbLoader.loadByUserIdAndDirectEnrollments(Id userId,
java.sql.Connection con)
Load the list of Course objects in which the given user (identified by id) is directly enrolled using the supplied connection. |
BbList |
CourseDbLoader.loadByUserIdForLearners(Id userId)
Load the list of Course objects in a lightweight fashion in which the given user (identified by id) is enrolled with a specific course based learner role using a connection obtained through this object's database context. |
BbList |
CourseDbLoader.loadByUserIdForLearners(Id userId,
java.sql.Connection con)
Load the list of Course objects in a lightweight fashion in which the given user (identified by id) is enrolled with a specific course based learner role using the supplied connection. |
BbList |
CourseDbLoader.loadByUserIdForLearners(Id userid,
java.sql.Connection con,
boolean bHeavy)
Load the list of Course objects in the specified fashion (lightweight or heavyweight) in which the given user (identified by id) with a specific course based learner role is enrolled using the supplied connection. |
BbList |
CourseDbLoader.loadCourseAndInstructorListByServiceLevel(Course.ServiceLevel sLevel)
|
BbList |
CourseDbLoader.loadCourseAndInstructorListByServiceLevel(Course.ServiceLevel sLevel,
java.sql.Connection con)
|
BbList |
CourseDbLoader.loadTemplates()
Load all course objects in the system with a course registry flag indicating they are course templates. |
BbList |
CourseDbLoader.loadTemplates(java.sql.Connection con)
Load all course objects in the system with a course registry flag indicating they are course templates. |
| Uses of BbList in blackboard.persist.discussionboard |
|---|
| Methods in blackboard.persist.discussionboard that return BbList | |
|---|---|
BbList |
ConferenceDbLoader.loadAllByCourseId(Id courseId)
Loads all of the Conferences for the given course (identified
by id) from the database using a connection obtained through this object's
database context. |
BbList |
ConferenceDbLoader.loadAllByCourseId(Id courseId,
java.sql.Connection con)
Load the Conferences for the given course (identified by id)
from the database using the supplied connection. |
BbList |
MessageDbLoader.loadAllByForumId(Id forumId)
Loads the list of top level Messages with the given parent forum Id from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
MessageDbLoader.loadAllByForumId(Id forumId,
java.sql.Connection con)
Loads the list of all Messages with the given parent forum Id from the database in a lightweight fashion using the supplied connection. |
BbList |
ForumDbLoader.loadByConferenceId(Id confId)
Load a BbList containing the Forums in the Conference with the given Id from the database using a connection obtained through this object's database context. |
BbList |
ForumDbLoader.loadByConferenceId(Id confId,
java.sql.Connection con)
Load a Forum with the given Id, and load top level messages contained in the forum from the database using the supplied connection. |
BbList |
UserForumSettingsDbLoader.loadByForumId(Id forumId)
Load the UserForumSettings object for the given Forum Id (identified by forumId) using a connection obtained through this object's database context. |
BbList |
MessageLabelDbLoader.loadByForumId(Id forumId)
Loads the list of Message labels that belong to messages located within the given forum (identified by Id) using a connection obtained through this object's database context. |
BbList |
MessageDbLoader.loadByForumId(Id forumId)
Loads the list of all Messages with the given parent forum Id from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
MessageAttachmentDbLoader.loadByForumId(Id forumId)
Loads the list of Message attachments that belong to messages located within the given forum (identified by Id) using a connection obtained through this object's database context. |
BbList |
UserForumSettingsDbLoader.loadByForumId(Id forumId,
java.sql.Connection con)
Load the UserForumSettings object for the given Forum Id (identified by forumId) using the supplied connection. |
BbList |
MessageLabelDbLoader.loadByForumId(Id forumId,
java.sql.Connection con)
Loads the list of Message labels that belong to messages located within the given forum (identified by Id) using the supplied connection. |
BbList |
MessageDbLoader.loadByForumId(Id forumId,
java.sql.Connection con)
Loads the list of top level Messages with the given parent forum Id from the database in a lightweight fashion using the supplied connection. |
BbList |
MessageAttachmentDbLoader.loadByForumId(Id forumId,
java.sql.Connection con)
Loads the list of Message attachments that belong to messages located within the given forum (identified by Id) using the supplied connection. |
BbList |
MessageDbLoader.loadByForumId(Id forumId,
java.sql.Connection con,
boolean bDeep,
boolean bHeavy)
Loads a list of Messages with the given parent forum Id from the database in the specified fashion (lightweight or heavyweight) using the supplied connection. |
BbList |
MessageDbLoader.loadByForumIdAndLifeCycle(Id forumId,
Message.MessageLifecycle ml)
Loads the list of top level Messages with the given parent forum Id and the message's lifecycle from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
MessageDbLoader.loadByForumIdAndLifeCycle(Id forumId,
Message.MessageLifecycle ml,
java.sql.Connection con)
Loads the list of top level Messages with the given parent forum Id and the message's lifecycle from the database in a lightweight fashion using a supplied connection . |
BbList |
UserMsgStateDbLoader.loadByMsgMainId(Id msgMainId)
Load a UserMsgState with the given Id, and load top level item contained in the UserMsgState from the database using the supplied connection. |
BbList |
UserMsgStateDbLoader.loadByMsgMainId(Id msgMainId,
java.sql.Connection con)
Load a UserMsgState with the given Id, and load top level item contained in the UserMsgState from the database using the supplied connection. |
BbList |
UserMsgStateDbLoader.loadByUserId(Id userId)
Load a UserMsgState with the given Id, and load top level item contained in the UserMsgState from the database using the supplied connection. |
BbList |
UserMsgStateDbLoader.loadByUserId(Id userId,
java.sql.Connection con)
Load a UserMsgState with the given Id, and load top level item contained in the UserMsgState from the database using the supplied connection. |
BbList |
ForumDbLoader.loadEnabledByCourseIdAndUserId(Id courseId,
Id userId)
Load a list of Forums within the given course and enabled for the given user Ids, from the database using the supplied connection obtained through this object's database context. |
BbList |
ForumDbLoader.loadEnabledByCourseIdAndUserId(Id courseId,
Id userId,
java.sql.Connection con)
Load a list of Forums within the given course and enabled for the given user Ids, from the database using the supplied connection. |
BbList |
UserMsgStateXmlLoader.loadList(org.w3c.dom.Element rootElement)
Generates a BbList of UserMsgState objects from the Element
tree provided. |
BbList |
UserForumSettingsXmlLoader.loadList(org.w3c.dom.Element rootElement)
Generates a BbList of UserForumSettings objects from the Element
tree provided. |
BbList |
ConferenceXmlLoader.loadList(org.w3c.dom.Element rootElement)
Generates a BbList of Conference objects from the Element tree provided. |
BbList |
UserMsgStateXmlLoader.loadList(java.io.InputStream is)
Generates a BbList of UserMsgState objects from the InputStream
provided. |
BbList |
UserForumSettingsXmlLoader.loadList(java.io.InputStream is)
Generates a BbList of UserForumSettings objects from the InputStream
provided. |
BbList |
ConferenceXmlLoader.loadList(java.io.InputStream is)
Generates a BbList of Conference objects from the InputStream provided. |
BbList |
UserForumSettingsDbLoader.loadSubscribedByForumId(Id forumId)
Load the UserForumSettings object for the given Forum Id (identified by forumId) using a connection obtained through this object's database context. |
BbList |
UserForumSettingsDbLoader.loadSubscribedByForumId(Id forumId,
java.sql.Connection con)
Load the UserForumSettings object for subscribed users the given Forum Id (identified by forumId) using the supplied connection. |
BbList |
UserMsgStateDbLoader.loadSubscribedByMsgMainId(Id msgMainId)
Load the subscribed UserMsgStates corresponding to the given message id the UserMsgState from the database using the supplied connection. |
BbList |
UserMsgStateDbLoader.loadSubscribedByMsgMainId(Id msgMainId,
java.sql.Connection con)
Load the subscribed UserMsgStates corresponding to the given message id the UserMsgState from the database using the supplied connection. |
| Methods in blackboard.persist.discussionboard with parameters of type BbList | |
|---|---|
org.w3c.dom.Element |
UserMsgStateXmlPersister.persistList(BbList list,
org.w3c.dom.Document doc)
Generates an Element whose children are the provided UserMsgState
objects persisted to XML. |
org.w3c.dom.Element |
UserForumSettingsXmlPersister.persistList(BbList list,
org.w3c.dom.Document doc)
Generates an Element whose children are the provided UserForumSettings
objects persisted to XML. |
org.w3c.dom.Element |
ConferenceXmlPersister.persistList(BbList list,
org.w3c.dom.Document doc)
Generates an Element whose children are the provided Conference
objects persisted to XML. |
| Uses of BbList in blackboard.persist.gradebook |
|---|
| Methods in blackboard.persist.gradebook that return BbList | |
|---|---|
BbList |
LineitemDbLoader.loadByCourseId(Id courseId)
Loads a list of Lineitem objects associated with the Course whose Id is provided, using a connection obtained through this object's database context. |
BbList |
LineitemDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Loads a list of Lineitem objects associated with the Course whose Id is provided, using the supplied connection. |
BbList |
LineitemDbLoader.loadByCourseIdAndLineitemName(Id courseId,
java.lang.String name)
Loads a list of Lineitem objects associated with the Course whose Id is provided and whose name matches the name provided, using a connection obtained through this object's database context. |
BbList |
LineitemDbLoader.loadByCourseIdAndLineitemName(Id courseId,
java.lang.String name,
java.sql.Connection con)
Loads a list of Lineitem objects associated with the Course whose Id is provided and whose name matches the name provided, using the supplied connection. |
BbList |
ScoreDbLoader.loadByCourseMembershipId(Id id)
Loads a list of Score objects associated with the CourseMembership record whose Id is provided, using a connection obtained through this object's database context. |
BbList |
ScoreDbLoader.loadByCourseMembershipId(Id id,
java.sql.Connection con)
Loads a list of Score objects associated with the CourseMembership record whose Id is provided, using the provided connection. |
BbList |
ScoreDbLoader.loadByLineitemId(Id id)
Loads a list of Score objects associated with the lineitem whose Id is provided, using a connection obtained through this object's database context. |
BbList |
ScoreDbLoader.loadByLineitemId(Id id,
java.sql.Connection con)
Loads a list of Score objects associated with the Lineitem whose Id is provided, using the provided connection. |
| Methods in blackboard.persist.gradebook with parameters of type BbList | |
|---|---|
void |
ScoreDbPersister.persist(BbList scores)
Inserts or updates the supplied ScoreList, Score
by Score, using a connection from the associated persistence
manager's database container. |
void |
LineitemDbPersister.persist(BbList lineitems)
Stores the given LineitemList into the database Lineitem by Lineitem using a connection obtained through this object's database context. |
void |
ScoreDbPersister.persist(BbList scores,
java.sql.Connection con)
Inserts or updates the supplied ScoreList, Score
by Score, using the supplied connection. |
void |
LineitemDbPersister.persist(BbList lineitems,
java.sql.Connection con)
Stores the given LineitemList into the database Lineitem by Lineitem using the provided connection. |
| Uses of BbList in blackboard.persist.navigation |
|---|
| Methods in blackboard.persist.navigation that return BbList | |
|---|---|
BbList |
CourseTocDbLoader.loadByCourseId(Id courseId)
Load the list of CourseToc objects that currently exist for the course identified by the given course Id using a connection obtained through this object's database context. |
BbList |
CourseTocDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load the list of CourseToc objects that currently exist for the course identified by the given course Id using the supplied connection. |
| Uses of BbList in blackboard.persist.role |
|---|
| Methods in blackboard.persist.role that return BbList | |
|---|---|
BbList |
PortalRoleDbLoader.loadAll()
Load the list of PortalRole objects in the system from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
PortalRoleDbLoader.loadAll(java.sql.Connection con)
Load the list of PortalRole objects in the system from the database in a lightweight fashion using the supplied connection. |
BbList |
PortalRoleDbLoader.loadAllByUserId(Id userId)
Load the list of PortalRole objects that represent the primary and secondary institution roles for the given user from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
PortalRoleDbLoader.loadAllByUserId(Id userId,
java.sql.Connection con)
Load the list of PortalRole objects that represent the primary and secondary institution roles for the given user from the database in a lightweight fashion using the supplied connection. |
BbList |
PortalRoleDbLoader.loadAvailableRolesAll()
Load the list of PortalRole objects in the system from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
PortalRoleDbLoader.loadAvailableRolesAll(java.sql.Connection con)
Load the list of PortalRole objects in the system from the database in a lightweight fashion using the supplied connection. |
BbList |
PortalRoleDbLoader.loadRemovable()
Load the list of PortalRole objects that have a removable attribute of true from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
PortalRoleDbLoader.loadRemovable(java.sql.Connection con)
Load the list of PortalRole objects that have a removable attribute of true from the database in a lightweight fashion using the supplied connection. |
BbList |
PortalRoleDbLoader.loadSecondaryRolesByUserId(Id userId)
Load the list of PortalRole objects that represent the secondary institution roles for the given user from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
PortalRoleDbLoader.loadSecondaryRolesByUserId(Id userId,
boolean disableSecondaryRolesFlag)
Load the list of PortalRole objects that represent the secondary portal roles for the given user from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
PortalRoleDbLoader.loadSecondaryRolesByUserId(Id userId,
boolean disableSecondaryRolesFlag,
java.sql.Connection con)
Load the list of PortalRole objects that represent the secondary portal roles for the given user from the database in a lightweight fashion using the supplied connection. |
BbList |
PortalRoleDbLoader.loadSecondaryRolesByUserId(Id userId,
java.sql.Connection con)
Load the list of PortalRole objects that represent the secondary institution roles for the given user from the database in a lightweight fashion using the supplied connection. |
| Uses of BbList in blackboard.persist.user |
|---|
| Methods in blackboard.persist.user that return BbList | |
|---|---|
BbList |
UserDbLoader.loadByCardNumberFamilyNameGivenName(java.lang.String cardNumber,
java.lang.String familyName,
java.lang.String givenName,
java.sql.Connection con)
Load the BbList of users with the given card number, family name and given name from the database in a lightweight fashion using the connection specified. |
BbList |
UserDbLoader.loadByCourseId(Id courseId)
Load all users that are enrolled in the given course from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
UserDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con)
Load all users that are enrolled in the given course from the database in a lightweight fashion using the supplied connection. |
BbList |
UserDbLoader.loadByCourseId(Id courseId,
java.sql.Connection con,
boolean bHeavy)
Load all users that are enrolled in the given course from the database in the specified fashion (lightweight or heavyweight) using the supplied connection. |
BbList |
UserDbLoader.loadByEmailAddressFamilyNameGivenName(java.lang.String emailAddress,
java.lang.String familyName,
java.lang.String givenName)
Load the BbList of users with the given email address, family name and given name from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
UserDbLoader.loadByEmailAddressFamilyNameGivenName(java.lang.String emailAddress,
java.lang.String familyName,
java.lang.String givenName,
java.sql.Connection con)
Load the BbList of users with the given email address, family name and given name from the database in a lightweight fashion using the connection specified. |
BbList |
UserDbLoader.loadByGroupId(Id groupId)
Load all users that are enrolled in the given group from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
UserDbLoader.loadByGroupId(Id groupId,
java.sql.Connection con)
Load all users that are enrolled in the given group from the database in a lightweight fashion using the supplied connection. |
BbList |
UserDbLoader.loadByGroupId(Id groupId,
java.sql.Connection con,
boolean bHeavy)
Load all users that are enrolled in the given group from the database in the specified fashion (lightweight or heavyweight) using the supplied connection. |
BbList |
UserRoleDbLoader.loadByPortalRoleId(Id portalRoleId)
Load all UserRole objects with the given portal role from the database in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
UserRoleDbLoader.loadByPortalRoleId(Id portalRoleId,
java.sql.Connection con)
Load all UserRole objects with the given portal role from the database in a lightweight fashion using the supplied connection. |
BbList |
UserDbLoader.loadByPrimaryPortalRoleId(Id portalRoleId)
Load all users by the given portalRole id in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
UserDbLoader.loadByPrimaryPortalRoleId(Id portalRoleId,
java.sql.Connection con)
Load all users by the given portalRole id in a lightweight fashion using the supplied connection. |
BbList |
UserDbLoader.loadByPrimaryPortalRoleId(Id portalRoleId,
java.sql.Connection con,
boolean bHeavy)
Load all users by the given portalRole id in the specified fashion using the supplied connection. |
BbList |
UserDbLoader.loadByStudentIdFamilyNameGivenName(java.lang.String studentId,
java.lang.String familyName,
java.lang.String givenName,
java.sql.Connection con)
Load the BbList of users with the given student id, family name and given name from the database in a lightweight fashion using the connection specified. |
BbList |
UserRoleDbLoader.loadByUserId(Id userId)
Load the list of UserRole objects belonging to the given user (identified by id) using a connection obtained through this object's database context. |
BbList |
UserRoleDbLoader.loadByUserId(Id userId,
java.sql.Connection con)
Load the list of UserRole objects belonging to the given user (identified by id) using the supplied connection. |
BbList |
UserDbLoader.loadObservedByObserverId(Id observerId)
Load all users that are/can be observed by the given observer (identified by their user id) in a lightweight fashion using a connection obtained through this object's database context. |
BbList |
UserDbLoader.loadObservedByObserverId(Id observerId,
java.sql.Connection con)
Load all users that are/can be observed by the given observer (identified by their user id) in a lightweight fashion using the supplied connection. |
BbList |
UserDbLoader.loadObservedByObserverId(Id observerId,
java.sql.Connection con,
boolean bHeavy)
Load all users that are/can be observed by the given observer (identified by their user id) in the specified fashion using the supplied connection. |
BbList |
UserDbLoader.searchByUserName(java.lang.String userName)
Load the BbList of users with the given username from the database in a lightweight fashion using a connection obtained through this object's database context. |
| Uses of BbList in blackboard.platform.session |
|---|
| Methods in blackboard.platform.session that return BbList | |
|---|---|
BbList |
SessionInvalidationFilter.filterInvalidSessions(BbList invalidSessions)
Interceptor method to allow a listener to arbitrarily keep alive sessions that otherwise would have been invalidated |
| Methods in blackboard.platform.session with parameters of type BbList | |
|---|---|
BbList |
SessionInvalidationFilter.filterInvalidSessions(BbList invalidSessions)
Interceptor method to allow a listener to arbitrarily keep alive sessions that otherwise would have been invalidated |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||