Uses of Class
blackboard.persist.Id

Packages that use Id
blackboard.data Provides the base classes for the persistence layer of platform API.  
blackboard.data.announcement Provides classes used to store "announcements" in the Blackboard system. 
blackboard.data.calendar Provides classes used to store entries in the course, system, and personal calendars in the Blackboard system. 
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.gradebook Provides the public implementation classes for Gradebook subsystem.  
blackboard.data.user Provides the classes used to interact with user definitions in Blackboard.  
blackboard.persist   
blackboard.persist.announcement   
blackboard.persist.calendar   
blackboard.persist.content   
blackboard.persist.course   
blackboard.persist.gradebook   
blackboard.persist.user   
blackboard.platform.filesystem   
blackboard.platform.plugin   
blackboard.platform.security   
blackboard.platform.session   
 

Uses of Id in blackboard.data
 

Methods in blackboard.data that return Id
 Id IBbObject.getId()
          Returns the Id associated with this IBbObject.
 Id BbObject.getId()
          Returns the Id associated with this BbObject.
 Id BbAttributes.getId(java.lang.String strName)
          Get the Id value associated with given attribute name.
 Id BbAttributes.getSafeId(java.lang.String strName)
          Get the Id value associated with given attribute name.
 

Methods in blackboard.data with parameters of type Id
 void IBbObject.setId(Id iId)
          Sets the Id value for this IBbObject.
 void BbObject.setId(Id iId)
          Sets the Id value for this BbObject.
 void BbAttributes.setId(java.lang.String strName, Id val)
          Sets the value of the attribute with the given name ("key") to the provided Id value.
 

Constructors in blackboard.data with parameters of type Id
BbAttribute(java.lang.String strName, Id val, BbAttributes parent)
          Initialization with Id.
 

Uses of Id in blackboard.data.announcement
 

Methods in blackboard.data.announcement that return Id
 Id Announcement.getCourseId()
          Returns the course Id to which this Announcement was posted.
 Id Announcement.getUserId()
          Deprecated. Has been replaced by the more aptly named Announcement.getCreatorUserId()
 Id Announcement.getCreatorUserId()
          Returns the creator user Id associated with this Announcement .
 Id Announcement.getAsmtId()
          Deprecated. This field no longer exists as of Bb6 and should not be used.
 

Methods in blackboard.data.announcement with parameters of type Id
 void Announcement.setCourseId(Id iCourseId)
          Sets the course Id value for this Announcement.
 void Announcement.setUserId(Id iUserId)
          Deprecated. Has been replaced by the more aptly named Announcement.setCreatorUserId(Id).
 void Announcement.setCreatorUserId(Id iCreatorUserId)
          Sets the creator user Id value for this Announcement.
 void Announcement.setAsmtId(Id iAsmtId)
          Deprecated. This field no longer exists as of Bb6 and should not be used.
static ListFilter Announcement.createCourseIdFilter(Id targetCourseId)
          Factory method to create an instance of the ListFilter interface capable of filtering a list of Announcement objects based upon their course Id value.
 

Uses of Id in blackboard.data.calendar
 

Methods in blackboard.data.calendar that return Id
 Id CalendarEntry.getUserId()
          Deprecated. has been replaced by CalendarEntry.getCreatorUserId().
 Id CalendarEntry.getCreatorUserId()
          Returns the creator user Id associated with this CalendarEntry .
 Id CalendarEntry.getCourseId()
          Returns the course Id to which this CalendarEntry was posted.
 

Methods in blackboard.data.calendar with parameters of type Id
 void CalendarEntry.setUserId(Id iUserId)
          Deprecated. has been replaced by CalendarEntry.setCreatorUserId(Id).
 void CalendarEntry.setCreatorUserId(Id iCreatorUserId)
          Sets the creator user Id value for this CalendarEntry .
 void CalendarEntry.setCourseId(Id iCourseId)
          Sets the course Id value for this CalendarEntry.
static ListFilter CalendarEntry.createCourseIdFilter(Id targetCourseId)
          Factory method to create an instance of the ListFilter interface capable of filtering a list of CalendarEntry objects based upon their course Id value.
 

Uses of Id in blackboard.data.content
 

Methods in blackboard.data.content that return Id
 Id UploadedFile.getParentId()
          Method getParentId.
 Id Upload.getCourseMembershipId()
          Gets the id of the course membership record for the user that performed this upload in the course that contains it.
 Id Upload.getFileId()
          Gets the id of the uploaded file record of the file referred to by this upload.
 Id StaffInfo.getParentId()
          Returns the Id of the StaffInfoFolder that contains this object.
 Id StaffInfo.getCourseId()
          Gets the Id of the course associated with this StaffInfo object.
 Id Link.getReferrerId()
          Returns the referrer Id associated with this Link.
 Id Link.getReferredToId()
          Returns the referred to Id associated with this Link .
 Id GroupUpload.getGroupId()
          Gets the id of the group that contains this group upload.
 Id CourseDocument.getAsmtId()
          Deprecated. The links to other objects in the system have been generalized. The preferred method is to use the Link object. This method will always return Id.UNSET_ID
 Id ContentFile.getContentId()
          Returns the content Id to which this ContentFile "belongs" (is part of).
 Id Content.getCourseId()
          Returns the course Id associated with this piece of Content.
 Id Content.getParentId()
          Returns the parent Id associated with this piece of Content.
 Id ChildFile.getParentId()
          Returns the parent object for this file.
 

Methods in blackboard.data.content with parameters of type Id
 void UploadedFile.setParentId(Id parentId)
          Method setParentId.
 void Upload.setCourseMembershipId(Id courseMembershipId)
          Sets the id of the course membership record for the user that performed this upload in the course that contains it.
 void StaffInfo.setParentId(Id parentId)
          Sets the parent id to the specified id.
 void StaffInfo.setCourseId(Id courseId)
          Sets the course id associated with this StaffInfo object.
 void Link.setReferrerId(Id iReferrerId)
          Sets the referrer Id value for this Link.
 void Link.setReferredToId(Id iReferredToId)
          Sets the referred to Id value for this Link.
 void GroupUpload.setGroupId(Id groupId)
          Sets the id of the group that contains this group upload.
 void CourseDocument.setAsmtId(Id iAsmtId)
          Deprecated. References to other objects have been generalized through the Link. Use this object to create a "link" from a course document to an assessment instead. This method does no work.
 void ContentFile.setContentId(Id iContentId)
          Sets the content Id value for this ContentFile.
 void Content.setCourseId(Id iCourseId)
          Sets the course Id value for this piece of Content.
 void Content.setParentId(Id iParentId)
          Sets the parent Id value for this piece of Content.
 void Content.removeContentFile(Id id)
          Removes the specified ContentFile object from this object.
 void ChildFile.setParentId(Id iParentId)
          Sets the parent id of this object.
 

Uses of Id in blackboard.data.course
 

Methods in blackboard.data.course that return Id
 Id GroupMembership.getGroupId()
          Returns the group Id associated with this GroupMembership.
 Id GroupMembership.getCourseMembershipId()
          Returns the course membership Id associated with this GroupMembership.
 Id Group.getCourseId()
          Returns the course Id associated with this Group
 Id CourseMembership.getUserId()
          Returns the user Id associated with this CourseMembership .
 Id CourseMembership.getCourseId()
          Returns the course Id associated with this CourseMembership .
 Id CourseMembership.getDataSourceId()
          Returns the data source Id of this CourseMembership.
 Id Course.getButtonStyleId()
          Returns the button style Id associated with this Course.
 Id Course.getCartridgeId()
          Returns the cartridge Id associated with this Course.
 Id Course.getClassificationId()
          Returns the classification Id associated with this Course.
 Id Course.getInstitutionId()
          Deprecated.  
 Id Course.getTargetAudienceId()
          Deprecated.  
 Id Course.getDataSourceId()
          Returns the data source Id associated with this Course.
 

Methods in blackboard.data.course with parameters of type Id
 void GroupMembership.setGroupId(Id iGroupId)
          Sets the group Id value for this GroupMembership.
 void GroupMembership.setCourseMembershipId(Id iCourseMembershipId)
          Sets the course membership Id value for this GroupMembership.
 void Group.setCourseId(Id iCourseId)
          Sets the course Id value for this Group
 void CourseMembership.setUserId(Id iUserId)
          Sets the user Id value for this CourseMembership.
 void CourseMembership.setCourseId(Id iCourseId)
          Sets the course Id value for this CourseMembership.
 void CourseMembership.setDataSourceId(Id iDataSourceId)
          Sets the data source Id value for this CourseMembership.
 void Course.setButtonStyleId(Id iButtonStyleId)
          Sets the button style Id value for this Course.
 void Course.setCartridgeId(Id iCartridgeId)
          Sets the cartridge Id value for this Course.
 void Course.setClassificationId(Id iClassificationId)
          Sets the classification Id value for this Course.
 void Course.setInstitutionId(Id iInstitutionId)
          Deprecated.  
 void Course.setTargetAudienceId(Id iTargetAudienceId)
          Deprecated.  
 void Course.setDataSourceId(Id iDataSourceId)
          Sets the data source Id value for this Course.
 

Uses of Id in blackboard.data.gradebook
 

Methods in blackboard.data.gradebook that return Id
 Id Score.getId()
           
 Id Score.getCourseMembershipId()
          Returns the Id of the CourseMembership for the user this Score is associated with.
 Id Score.getLineitemId()
          Returns the Id of the gradebook Lineitem this score is attached to.
 Id Lineitem.getId()
           
 Id Lineitem.getCourseId()
          Returns the Id of the Course this Lineitem is associated with.
 Id GradeRecord.getCourseId()
           
 

Methods in blackboard.data.gradebook with parameters of type Id
 void Score.setCourseMembershipId(Id id)
          Sets the CourseMembership Id to be associated with this Score.
 void Score.setLineitemId(Id id)
          Sets the Lineitem Id this Score is related to.
protected  void Score.setInternalAttemptId(Id id)
          Sets the attempt Id to be used by an internal attempt handler.
 void Lineitem.setCourseId(Id id)
          Sets the Course Id associated with this Lineitem.
protected  void Lineitem.setInternalAssessmentId(Id id)
          Sets the assessment Id to be used by an internal assessment handler.
 void GradeRecord.setCourseId(Id courseId)
           
 

Uses of Id in blackboard.data.user
 

Methods in blackboard.data.user that return Id
 Id User.getDataSourceId()
          Returns the data source Id of this User.
 Id User.getDomainId()
          Deprecated. This field no longer exists as of Bb6 and should not be used.
 

Methods in blackboard.data.user with parameters of type Id
 void User.setDataSourceId(Id iDataSourceId)
          Sets the data source Id value for this User.
 void User.setDomainId(Id iDomainId)
          Deprecated. This field no longer exists as of Bb6 and should not be used.
 

Uses of Id in blackboard.persist
 

Subclasses of Id in blackboard.persist
 class PkId
          The PkId class provides the means of describing an Id within a Blackboard database container.
 class UnsetId
          The UnsetId class represents an unset data object Id.
 

Fields in blackboard.persist declared as Id
static Id Id.UNSET_ID
           
 

Methods in blackboard.persist that return Id
 Id RemoteDbContainer.generateId(DataType dataType, java.lang.String strKey)
          Generates an Id instance specific to this XmlContainer .
 Id RemoteDbContainer.generateId(DataType dataType, int nKey1, int nKey2)
          Generates an Id instance specific to this XmlContainer .
 Id RemoteDbContainer.generateId(DataType dataType, int nKey1)
          Generates an Id instance specific to this DatabaseContainer .
 Id PersistenceContext.mapId(Id idInContainerA, Container containerB)
          Maps the given Id in the specified container space.
static Id Id.newId(DataType dataType)
          Returns a new Id instance, using a default implementation.
static Id Id.generateId(DataType dataType, java.lang.String strKey)
          Generates an Id instance using the default database persistence manager as given by context.
static Id Id.generateId(DataType dataType, int nKey1, int nKey2)
          Generates an Id instance using the default database persistence manager as given by context.
static Id Id.generateId(DataType dataType, int nKey1)
          Generates an Id instance using the default database persistence manager as given by context.
 Id DatabaseContainer.generateId(DataType dataType, java.lang.String strKey)
          Generates an Id instance specific to this DatabaseContainer.
 Id DatabaseContainer.generateId(DataType dataType, int nKey1, int nKey2)
          Generates an Id instance specific to this DatabaseContainer .
 Id DatabaseContainer.generateId(DataType dataType, int nKey1)
          Generates an Id instance specific to this DatabaseContainer .
 Id Container.generateId(DataType dataType, java.lang.String strKey)
          Generates an Id instance specific to this Container.
 Id Container.generateId(DataType dataType, int nKey1, int nKey2)
          Generates an Id instance specific to this Container.
 Id Container.generateId(DataType dataType, int nKey1)
          Generates an Id instance specific to this Container.
 Id BbPersistenceManager.generateId(DataType dataType, java.lang.String strKey)
          Generates an Id instance specific to the Container associated with this persistence manager.
 Id BbPersistenceManager.generateId(DataType dataType, int nKey1, int nKey2)
          Generates an Id instance specific to the Container associated with this persistence manager.
 Id BbPersistenceManager.generateId(DataType dataType, int nKey1)
          Generates an Id instance specific to the Container associated with this persistence manager.
 

Methods in blackboard.persist with parameters of type Id
 boolean RemoteDbContainer.isValidId(Id id)
          Determines if the provided Id is a "valid" id for this XmlContainer.
 Id PersistenceContext.mapId(Id idInContainerA, Container containerB)
          Maps the given Id in the specified container space.
 void PersistenceContext.registerReference(Id idInContainerA, Id idInContainerB)
          Registers an Id mapping with the context.
 void PersistenceContext.registerReference(Id idInContainerA, Id idInContainerB)
          Registers an Id mapping with the context.
 boolean PersistenceContext.hasMapping(Id id)
          Returns whether or not a mapping exists for the given Id.
 boolean Id.hasSameDataType(Id id)
          Returns true if the given Id has the same DataType as this Id instance.
 boolean Id.hasSameContainer(Id id)
          Returns true if the given Id has the same Container as this Id instance.
 boolean DatabaseContainer.isValidId(Id id)
          Determines if the provided Id is a "valid" id for this DatabaseContainer.
 boolean Container.isValidId(Id id)
          Determines if the provided Id is a "valid" id for this Container.
 boolean BbPersistenceManager.isValidId(Id id)
          Convenience method to determines if the provided Id is a "valid" Id for this BbPersistenceManager's Container .
 

Uses of Id in blackboard.persist.announcement
 

Methods in blackboard.persist.announcement with parameters of type Id
 void AnnouncementDbPersister.deleteById(Id id)
          Deletes the Announcement identified by the given Id value using a connection from the associated persistence manager's database container.
 void AnnouncementDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Announcement identified by the given Id value using the supplied connection.
 Announcement AnnouncementDbLoader.loadById(Id id)
          Load the Announcement with the given Id from the database using a connection obtained through this object's database context.
 Announcement AnnouncementDbLoader.loadById(Id id, java.sql.Connection con)
          Load the Announcement with the given Id from the database 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.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.
 

Uses of Id in blackboard.persist.calendar
 

Methods in blackboard.persist.calendar with parameters of type Id
 void CalendarEntryDbPersister.deleteById(Id id)
          Deletes the CalendarEntry identified by the given Id value using a connection from the associated persistence manager's database container.
 void CalendarEntryDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the CalendarEntry identified by the given Id value using the supplied connection.
 CalendarEntry CalendarEntryDbLoader.loadById(Id id)
          Load the CalendarEntry with the given Id from the database using a connection obtained through this object's database context.
 CalendarEntry CalendarEntryDbLoader.loadById(Id id, java.sql.Connection con)
          Load the CalendarEntry with the given Id from the database using the supplied connection.
 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.sql.Connection con)
          Load the list of CalendarEntry objects for the given course Id using the supplied connection.
 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.loadByUserId(Id userId)
          Loads the list of all calendar entries (institution, course, and personal) that pertain to the user identified by the given user Id 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 (institution, course, and personal) that pertain to the user identified by the given user Id using the supplied connection.
 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 (institution, course, and personal) that pertain to the user identified by the given user Id using a connection obtained through this object's database context.
 BbList CalendarEntryDbLoader.loadByUserId(Id userId, java.sql.Connection con)
          Loads the list of all calendar entries within a given date range (institution, course, and personal) that pertain to the user identified by the given user Id using the supplied connection.
 

Uses of Id in blackboard.persist.content
 

Methods in blackboard.persist.content that return Id
 Id StaffInfoDbLoader.lookupTopFolderId(Id courseId)
          Loads the Id of "Top" StaffInfoFolder for the given course (identified by id) from the database using a connection obtained through this object's database context.
 Id StaffInfoDbLoader.lookupTopFolderId(Id courseId, java.sql.Connection con)
          Loads the Id of "Top" StaffInfoFolder for the given course (identified by id) from the database using the supplied connection.
 

Methods in blackboard.persist.content with parameters of type Id
 UploadedFile UploadedFileDbLoader.loadById(Id id, java.sql.Connection con)
          Method loadById.
 void StaffInfoDbPersister.deleteById(Id id)
          Deletes the StaffInfo identified by the given Id value using a connection from the associated persistence manager's database container.
 void StaffInfoDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the StaffInfo identified by the given Id value using the supplied connection.
 StaffInfo StaffInfoDbLoader.loadById(Id id)
          Load the StaffInfo or StaffInfoFolder with the given Id from the database using a connection obtained through this object's database context.
 StaffInfo StaffInfoDbLoader.loadById(Id id, java.sql.Connection con)
          Load the StaffInfo or StaffInfoFolder with the given 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 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 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.
 StaffInfoFolder StaffInfoDbLoader.loadFolderByCourseId(Id courseId)
          Loads the folder of StaffInfo/StaffInfoFolder objects for the given course (identified by id) from the database using a connection obtained through this object's database context.
 StaffInfoFolder StaffInfoDbLoader.loadFolderByCourseId(Id courseId, java.sql.Connection con)
          Loads the folder of StaffInfo/StaffInfoFolder objects for the given course (identified by id) from the database using the supplied connection.
 Id StaffInfoDbLoader.lookupTopFolderId(Id courseId)
          Loads the Id of "Top" StaffInfoFolder for the given course (identified by id) from the database using a connection obtained through this object's database context.
 Id StaffInfoDbLoader.lookupTopFolderId(Id courseId, java.sql.Connection con)
          Loads the Id of "Top" StaffInfoFolder for the given course (identified by id) from the database using the supplied connection.
 void LinkDbPersister.deleteById(Id id)
          Deletes the Link identified by the given Id value using a connection from the associated persistence manager's database container.
 void LinkDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Link identified by the given Id value using the supplied connection.
 Link LinkDbLoader.loadById(Id id)
          Load the Link with the given Id from the database using a connection obtained through this object's database context.
 Link LinkDbLoader.loadById(Id id, java.sql.Connection con)
          Load the Link with the given Id from the database using the supplied connection.
 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 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.
 Link LinkDbLoader.loadByReferrerIdAndType(Id id, Link.ReferrerType eReferrerType)
          Load the Link with the given referrer id and type from the database using a connection obtained through this object's database context.
 Link LinkDbLoader.loadByReferrerIdAndType(Id id, Link.ReferrerType eReferrerType, java.sql.Connection con)
          Load the Link with the given referrer id and type 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 GroupUploadDbLoader.loadByCourseId(Id courseId, java.sql.Connection con)
          Method loadByCourseId.
 BbList CourseUploadDbLoader.loadByCourseId(Id courseId, java.sql.Connection con)
           
 void ContentFileDbPersister.deleteById(Id id)
          Deletes the Content identified by the given Id value using a connection from the associated persistence manager's database container.
 void ContentFileDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Content identified by the given Id value using the supplied connection.
 ContentFile ContentFileDbLoader.loadById(Id id)
          Load the ContentFile with the given Id from the database in a lightweight fashion using a connection obtained through this object's database context.
 ContentFile ContentFileDbLoader.loadById(Id id, java.sql.Connection con)
          Load the ContentFile with the given Id from the database in a lightweight fashion using the supplied connection.
 ContentFile ContentFileDbLoader.loadById(Id id, java.sql.Connection con, boolean bHeavy)
          Load the ContentFile with the given Id from the database in the specified fashion (lightweight or heavyweight) using the supplied connection.
 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.
 void ContentDbPersister.deleteById(Id id)
          Deletes the Content identified by the given Id value using a connection from the associated persistence manager's database container.
 void ContentDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Content identified by the given Id value using the supplied connection.
 Content ContentDbLoader.loadById(Id id)
          Load the Content with the given Id from the database in a lightweight fashion using a connection obtained through this object's database context.
 Content ContentDbLoader.loadById(Id id, java.sql.Connection con)
          Load the Content with the given Id from the database in a lightweight fashion using the supplied connection.
 Content ContentDbLoader.loadById(Id id, java.sql.Connection con, boolean bDeep, boolean bHeavy)
          Loads the Content with the given Id from the database in the specified fashion (lightweight or heavyweight) 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.
 Content ContentDbLoader.loadByTocId(Id tocId)
          Load the Content item that is the "Top" folder for the specified blackboard.data.navigation.CourseToc (identified by Id) in a lightweight fashion using a connection obtained through this object's database context.
 Content ContentDbLoader.loadByTocId(Id tocId, java.sql.Connection con)
          Load the Content item that is the "Top" folder for the specified blackboard.data.navigation.CourseToc (identified by Id) in a lightweight fashion using the supplied connection.
 Content ContentDbLoader.loadByTocId(Id tocId, java.sql.Connection con, boolean bDeep)
          Load the Content item that is the "Top" folder for the specified blackboard.data.navigation.CourseToc (identified by Id) in a lightweight fashion 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 through this object's database context.
 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 through this object's database context.
 

Uses of Id in blackboard.persist.course
 

Methods in blackboard.persist.course with parameters of type Id
 void GroupMembershipDbPersister.deleteById(Id id)
          Deletes the GroupMembership identified by the given Id value using a connection from the associated persistence manager's database container.
 void GroupMembershipDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the GroupMembership identified by the given Id value using the supplied connection.
 GroupMembership GroupMembershipDbLoader.loadById(Id id)
          Load the GroupMembership with the given Id from the database using a connection obtained through this object's database context.
 GroupMembership GroupMembershipDbLoader.loadById(Id id, java.sql.Connection con)
          Load the GroupMembership with the given Id from the database 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 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 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.
 GroupMembership GroupMembershipDbLoader.loadByGroupAndUserId(Id groupId, Id userId)
          Load the GroupMembership with the given user and group id from the database using a connection obtained through this object's database context.
 GroupMembership GroupMembershipDbLoader.loadByGroupAndUserId(Id groupId, Id userId)
          Load the GroupMembership with the given user and group id from the database using a connection obtained through this object's database context.
 GroupMembership GroupMembershipDbLoader.loadByGroupAndUserId(Id groupId, Id userId, java.sql.Connection con)
          Load the GroupMembership with the given user and group id from the database using the supplied connection.
 GroupMembership GroupMembershipDbLoader.loadByGroupAndUserId(Id groupId, Id userId, java.sql.Connection con)
          Load the GroupMembership with the given user and group id from the database using the supplied connection.
 void GroupDbPersister.deleteById(Id id)
          Deletes the Group identified by the given Id value using a connection from the associated persistence manager's database container.
 void GroupDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Group identified by the given Id value using the supplied connection.
 Group GroupDbLoader.loadById(Id id)
          Load the Group with the given Id from the database using a connection obtained through this object's database context.
 Group GroupDbLoader.loadById(Id id, java.sql.Connection con)
          Load the Group with the given Id from the database using the supplied connection.
 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 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.
 CourseMembership CourseMembershipDbLoader.loadById(Id id)
          Load the CourseMembership with the given Id from the database using a connection obtained through this object's database context.
 CourseMembership CourseMembershipDbLoader.loadById(Id id, java.sql.Connection con)
          Load the CourseMembership with the given Id from the database using the supplied connection.
 CourseMembership CourseMembershipDbLoader.loadById(Id id, java.sql.Connection con, boolean withUser)
          Load the CourseMembership with the given Id from the database 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 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 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 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 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.
 CourseMembership CourseMembershipDbLoader.loadByCourseAndUserId(Id courseId, Id userId)
          Load the CourseMembership with the given user and course id from the database using a connection obtained through this object's database context.
 CourseMembership CourseMembershipDbLoader.loadByCourseAndUserId(Id courseId, Id userId)
          Load the CourseMembership with the given user and course id from the database using a connection obtained through this object's database context.
 CourseMembership CourseMembershipDbLoader.loadByCourseAndUserId(Id courseId, Id userId, java.sql.Connection con)
          Load the CourseMembership with the given user and course id from the database using the supplied connection.
 CourseMembership CourseMembershipDbLoader.loadByCourseAndUserId(Id courseId, Id userId, java.sql.Connection con)
          Load the CourseMembership with the given user and course id from the database using the supplied connection.
 CourseMembership CourseMembershipDbLoader.loadByCourseAndUserId(Id courseId, Id userId, java.sql.Connection con, boolean withUser)
          Load the CourseMembership with the given user and course id from the database using the supplied connection.
 CourseMembership CourseMembershipDbLoader.loadByCourseAndUserId(Id courseId, Id userId, java.sql.Connection con, boolean withUser)
          Load the CourseMembership with the given user and course id from the database using the supplied connection.
 Course CourseDbLoader.loadById(Id id)
          Load the Course with the given Id from the database in a lightweight fashion using a connection obtained through this object's database context.
 Course CourseDbLoader.loadById(Id id, java.sql.Connection con)
          Load the Course with the given Id from the database in a lightweight fashion using the supplied connection.
 Course CourseDbLoader.loadById(Id id, java.sql.Connection con, boolean bHeavy)
          Load the Course with the given Id from the database in the specified fashion (lightweight or heavyweight) using the supplied connection.
 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 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 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.
 void CartridgeDbPersister.deleteById(Id id)
          Deletes the Cartridge identified by the given Id value using a connection from the associated persistence manager's database container.
 void CartridgeDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Cartridge identified by the given Id value using the supplied connection.
 Cartridge CartridgeDbLoader.loadById(Id id)
          Load the Cartridge with the given Id from the database using a connection obtained through this object's database context.
 Cartridge CartridgeDbLoader.loadById(Id id, java.sql.Connection con)
          Load the Cartridge with the given Id from the database using the supplied connection.
 

Uses of Id in blackboard.persist.gradebook
 

Methods in blackboard.persist.gradebook with parameters of type Id
 void ScoreDbPersister.deleteById(Id id)
          Deletes the Score identified by the given Id value using a connection from the associated persistence manager's database container.
 void ScoreDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Score identified by the given Id value using the supplied connection.
 Score ScoreDbLoader.loadById(Id id)
          Loads the Score with the given Id from the database using a connection obtained through this object's database context.
 Score ScoreDbLoader.loadById(Id id, java.sql.Connection con)
          Loads the Score with the given Id from the database using the provided 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.
 Score ScoreDbLoader.loadByCourseMembershipIdAndLineitemId(Id cmId, Id liId)
          Loads the Score for a given Lineitem and CourseMembership combination using a connection obtained through this object's database context.
 Score ScoreDbLoader.loadByCourseMembershipIdAndLineitemId(Id cmId, Id liId)
          Loads the Score for a given Lineitem and CourseMembership combination using a connection obtained through this object's database context.
 Score ScoreDbLoader.loadByCourseMembershipIdAndLineitemId(Id cmId, Id liId, java.sql.Connection con)
          Loads the Score for a given Lineitem and CourseMembership combination using the provided connection.
 Score ScoreDbLoader.loadByCourseMembershipIdAndLineitemId(Id cmId, Id liId, java.sql.Connection con)
          Loads the Score for a given Lineitem and CourseMembership combination using the provided connection.
 void LineitemDbPersister.deleteById(Id id)
          Deletes the Lineitem with the given Id from the database using a connection obtained through this object's database context.
 void LineitemDbPersister.deleteById(Id id, java.sql.Connection con)
          Deletes the Lineitem with the given Id from the database using the supplied connection.
 Lineitem LineitemDbLoader.loadById(Id id)
          Loads the Lineitem with the given Id from the database using a connection obtained through this object's database context.
 Lineitem LineitemDbLoader.loadById(Id id, java.sql.Connection con)
          Loads the Lineitem with the given Id from the database using the supplied connection.
 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.
 

Uses of Id in blackboard.persist.user
 

Methods in blackboard.persist.user with parameters of type Id
 User UserDbLoader.loadById(Id id)
          Load the User with the given Id from the database in a lightweight fashion using a connection obtained through this object's database context.
 User UserDbLoader.loadById(Id id, java.sql.Connection con)
          Load the User with the given Id from the database in a lightweight fashion using the supplied connection.
 User UserDbLoader.loadById(Id id, java.sql.Connection con, boolean bHeavy)
          Load the User with the given Id from the database in the specified fashion (lightweight or heavyweight) using the supplied connection.
 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.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 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.
 

Uses of Id in blackboard.platform.filesystem
 

Methods in blackboard.platform.filesystem with parameters of type Id
 java.lang.String GradebookFileManager.getWebContentDirectory(Course crs, Id contentId)
          Returns the web based directory where content and course document items are stored.
static java.io.File GradebookFileManager.getGradebookDirectory(java.lang.String courseId, Id attemptId)
          Returns the directory that stores all content for a given Attempt in a given Course.
static java.io.File GradebookFileManager.getGradebookInstructorDirectory(java.lang.String courseId, Id attemptId, java.lang.String fileGuid)
          Returns the directory that stores a comment file for a given Attempt in a given Course.
static java.io.File GradebookFileManager.getGradebookStudentDirectory(java.lang.String courseId, Id attemptId, java.lang.String fileGuid)
          Returns the directory that stores a comment file for a given Attempt in a given Course.
 java.lang.String FileSystemService.getWebContentDirectory(java.lang.String courseId, Id contentId)
          Returns the web based root directory relative to the course and content id.
 java.lang.String FileSystemService.getWebContentDirectory(Course course, Id contentId)
          Returns the web based root directory relative to the course and content id.
 java.io.File FileSystemService.getContentDirectory(java.lang.String courseId, Id contentId)
          Returns the root directory relative to the course and content id.
 java.io.File FileSystemService.getContentDirectory(Course course, Id contentId)
          Returns the root directory relative to the course and content id.
 java.lang.String FileSystemService.getWebAttemptDirectory(java.lang.String courseId, Id attemptId, AttemptFile.FileType fileType)
          Returns the web based root directory relative to the course and attempt id.
 java.lang.String FileSystemService.getWebAttemptDirectory(Course course, Id attemptId, AttemptFile.FileType fileType)
          Returns the web based root directory relative to the course and attempt id.
 java.io.File FileSystemService.getAttemptDirectory(java.lang.String courseId, Id attemptId, AttemptFile.FileType fileType)
          Returns the root directory relative to the course and attempt id.
 java.io.File FileSystemService.getAttemptDirectory(Course course, Id attemptId, AttemptFile.FileType fileType)
          Returns the root directory relative to the course and attempt id.
 java.io.File FileSystemService.getBrandingDirectory(Id portalBrandingId)
          Returns the root directory relative to the branding for given host.
 java.lang.String FileSystemService.getWebBrandingDirectory(Id portalBrandingId)
          Returns the web based root directory relative to the branding for given host.
 java.io.File FileSystemService.getSponsorsDirectory(Id sponsorsId)
          Returns the root directory relative to the sponsors for given id.
 java.lang.String FileSystemService.getWebSponsorsDirectory(Id sponsorsId)
          Returns the web based root directory relative to the branding for given host.
 java.lang.String CourseFileManager.getWebContentDirectory(Course crs, Id contentId)
          Returns the web based directory where content and course document items are stored.
static java.io.File CourseFileManager.getContentDirectory(java.lang.String courseId, Id contentId)
          Returns the directory that stores the given piece of content for the given Course.
static java.io.File AssessmentFileManager.getAssignmentDirectory(java.lang.String courseId, Id assignmentId)
          Returns the directory that stores all content directories for a given Assignment.
static java.io.File AssessmentFileManager.getAssignmentDirectory(java.lang.String courseId, Id assignmentId, java.lang.String fileGuid)
          Returns the directory that stores a given file for a given Assignment in a given Course.
 

Uses of Id in blackboard.platform.plugin
 

Methods in blackboard.platform.plugin that return Id
static Id PlugInUtil.getCourseId(javax.servlet.http.HttpServletRequest request)
          Returns the CourseId given an HttpServletRequest object
 

Methods in blackboard.platform.plugin with parameters of type Id
static java.lang.String PlugInUtil.getEditableContentReturnURL(Id contentId)
          Returns the return URL for jsps going back to the Editable Content page.
static java.lang.String PlugInUtil.getDisplayContentReturnURL(Id contentId)
          Returns the return URL for jsps going back to the Editable Content page.
 PlugIn PlugInManager.getPlugIn(Id id)
          Returns the PlugIn identified by the specified Id.
protected  PlugIn PlugInManager.getPlugIn(Id id, VirtualInstallation vi)
          Simply returns the identified plugin for the specified virtual installation
 void PlugInManager.removePlugIn(Id id)
          Deletes the specified plugin.
 void PlugInManager.disablePlugIn(Id id)
          Disables the plugin specified by Id.
 void PlugInManager.enablePlugIn(Id id)
          Enables the specified plugin.
 void PlugInManager.deactivatePlugIn(Id id)
          Sets plugins status to inactive and unregisters the webapp
 

Uses of Id in blackboard.platform.security
 

Methods in blackboard.platform.security that return Id
static Id SecurityDbUtil.getUserId(java.sql.ResultSet rs)
          Load the Id given the Resultset
static Id SecurityDbUtil.getUserId(java.sql.ResultSet rs, Container container)
          Load the Id given the Resultset and the Container using USER_DATA_TYPE and default connection
static Id SecurityDbUtil.getId(java.sql.ResultSet rs, java.lang.String col1, java.lang.String col2, DataType dataType, Container container)
          Load the Id given the Resultset and the Container
 

Methods in blackboard.platform.security with parameters of type Id
static boolean SecurityUtil.userHasEntitlement(Id userId, Id courseId, Entitlement entitlement)
          userHasEntitlement Explicit check for a single entitlement Please note that this interface method assumes that the ContextManager has already set the context appropriately, so that this method can load user and course data for the correct virtual installation.
static boolean SecurityUtil.userHasEntitlement(Id userId, Id courseId, Entitlement entitlement)
          userHasEntitlement Explicit check for a single entitlement Please note that this interface method assumes that the ContextManager has already set the context appropriately, so that this method can load user and course data for the correct virtual installation.
static boolean SecurityUtil.userHasAllEntitlements(Id userId, Id courseId, Entitlements entitlements)
          userHasAllEntitlements Logical AND Use for fine-grained authorization --User may have be entitled access to a page, but not a given widget on the page
static boolean SecurityUtil.userHasAllEntitlements(Id userId, Id courseId, Entitlements entitlements)
          userHasAllEntitlements Logical AND Use for fine-grained authorization --User may have be entitled access to a page, but not a given widget on the page
static boolean SecurityUtil.userHasAnyEntitlements(Id userId, Id courseId, Entitlements entitlements)
          userHasAnyEntitlements Logical OR Use for coarse-grained authorization; for example to check whether user may enter admin page --User may have be entitled access to some but not all widgets on the page --User id param; implicit Context object _not_ assumed
static boolean SecurityUtil.userHasAnyEntitlements(Id userId, Id courseId, Entitlements entitlements)
          userHasAnyEntitlements Logical OR Use for coarse-grained authorization; for example to check whether user may enter admin page --User may have be entitled access to some but not all widgets on the page --User id param; implicit Context object _not_ assumed
static void SecurityDbUtil.setUserId(java.sql.PreparedStatement ps, int pk1ColNum, int pk2ColNum, Id targetId)
          setUserId
static void SecurityDbUtil.setUserId(java.sql.CallableStatement stmt, int pk1ColNum, int pk2ColNum, Id targetId)
          setUserId
 boolean AccessManagerService.isUserInSystemRole(Id userId, User.SystemRole role)
          Deprecated.  
 boolean AccessManagerService.isUserInCourseRole(Id userId, Id courseId, CourseMembership.Role role)
          Deprecated.  
 boolean AccessManagerService.isUserInCourseRole(Id userId, Id courseId, CourseMembership.Role role)
          Deprecated.  
 

Uses of Id in blackboard.platform.session
 

Methods in blackboard.platform.session that return Id
 Id BbSession.getUserId()
          Returns the Id of the user associated with this session.
 



Copyright © 2003 Blackboard, Inc. All Rights Reserved.