Uses of Class
blackboard.data.ValidationException

Packages that use ValidationException
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.navigation   
blackboard.persist.announcement   
blackboard.persist.calendar   
blackboard.persist.content   
blackboard.persist.course   
blackboard.persist.gradebook   
blackboard.persist.role   
blackboard.persist.user   
blackboard.platform.plugin   
blackboard.portal.external   
 

Uses of ValidationException in blackboard.data
 

Methods in blackboard.data with parameters of type ValidationException
 void ValidationException.include(ValidationException ve)
          Provides ability to chain ValidationExceptions that are spawned in seperate method calls but share a line of processing.
 

Methods in blackboard.data that throw ValidationException
 void BbObject.persist()
          Inserts or updates the current BbObject in a lightweight fashion.
 void IBbObject.validate()
          Validates the contents of this IBbObject.
 void BbObject.validate()
          Validates the contents of this BbObject.
 

Uses of ValidationException in blackboard.data.announcement
 

Methods in blackboard.data.announcement that throw ValidationException
 void Announcement.validate()
          Validates the contents of this Announcement.
 

Uses of ValidationException in blackboard.data.calendar
 

Methods in blackboard.data.calendar that throw ValidationException
 void CalendarEntry.validate()
          Validates the contents of this CalendarEntry.
 

Uses of ValidationException in blackboard.data.content
 

Methods in blackboard.data.content that throw ValidationException
 void ContentWrapper.addContentFile(Content content, java.io.File file, java.lang.String fileName, java.lang.String linkName, ContentFile.Action contentFileAction, java.sql.Connection con)
           
 void Content.validate()
          Validates the contents of this Content.
 

Uses of ValidationException in blackboard.data.course
 

Methods in blackboard.data.course that throw ValidationException
 void Course.validate()
          Validates the contents of this Course.
 

Uses of ValidationException in blackboard.data.gradebook
 

Methods in blackboard.data.gradebook that throw ValidationException
 void Score.validate()
          Validates the contents of this Score.
 void Lineitem.validate()
          Validates the contents of this LineItem.
 void GradeRecord.validate()
          Validates the contents of this BbObject.
 

Uses of ValidationException in blackboard.data.navigation
 

Methods in blackboard.data.navigation that throw ValidationException
 void CourseToc.validate()
          Validates the contents of this CourseToc.
 

Uses of ValidationException in blackboard.persist.announcement
 

Methods in blackboard.persist.announcement that throw ValidationException
 void AnnouncementDbPersister.persist(Announcement announcement)
          Inserts or updates the supplied Announcement using a connection from the associated persistence manager's database container.
 void AnnouncementDbPersister.persist(Announcement announcement, java.sql.Connection con)
          Inserts or updates the supplied Announcement using the supplied connection.
 

Uses of ValidationException in blackboard.persist.calendar
 

Methods in blackboard.persist.calendar that throw ValidationException
 void CalendarEntryDbPersister.persist(CalendarEntry calendarEntry)
          Inserts or updates the supplied CalendarEntry using a connection from the associated persistence manager's database container.
 void CalendarEntryDbPersister.persist(CalendarEntry calendarEntry, java.sql.Connection con)
          Inserts or updates the supplied CalendarEntry using the supplied connection.
 

Uses of ValidationException in blackboard.persist.content
 

Methods in blackboard.persist.content that throw ValidationException
 void ContentDbPersister.markReviewed(Id contentId, Id userId)
          Marks the Content identified by the given contentId value using a connection from the associated persistence manager's database container as status "Reviewed" by the user identified by userId.
 void ContentDbPersister.markReviewed(Id contentId, Id userId, java.util.Calendar reviewDate)
          Marks the Content identified by the given contentId value using a connection from the associated persistence manager's database container as status "Reviewed" by the user identified by userId.
 void ContentDbPersister.markReviewed(Id contentId, Id userId, java.util.Calendar reviewDate, java.sql.Connection con)
          Marks the Content identified by the given contentId value using a connection from the associated persistence manager's database container as status "Reviewed" by the user identified by userId.
 void ContentDbPersister.markReviewed(Id contentId, Id userId, java.sql.Connection con)
          Marks the Content identified by the given contentId value using the supplied connection as status "Reviewed" by the user identified by userId.
 void ContentDbPersister.markUnreviewed(Id contentId, Id userId)
          Marks the Content identified by the given contentId value using the supplied connection as status "Not Reviewed" by the user identified by userId.
 void ContentDbPersister.markUnreviewed(Id contentId, Id userId, java.sql.Connection con)
          Marks the Content identified by the given contentId value using the supplied connection as status "Not Reviewed" by the user identified by userId.
 void ContentDbPersister.persist(Content target)
          Inserts or updates the supplied Content using a connection from the associated persistence manager's database container.
 void ContentDbPersister.persist(Content target, java.sql.Connection con)
          Inserts or updates the supplied Content using the supplied connection.
 void ContentFileDbPersister.persist(ContentFile target)
          Inserts or updates the supplied Content using a connection from the associated persistence manager's database container.
 void ContentFileDbPersister.persist(ContentFile target, java.sql.Connection con)
          Inserts or updates the supplied Content using the supplied connection.
 void CourseUploadDbPersister.persist(CourseUpload courseUpload, java.sql.Connection con)
          Inserts or updates the supplied CourseUpload using the supplied connection.
 void GroupUploadDbPersister.persist(GroupUpload groupUpload, java.sql.Connection con)
          Inserts or updates the supplied GroupUpload using the supplied connection.
 void LinkDbPersister.persist(Link link)
          Inserts or updates the supplied Link using a connection from the associated persistence manager's database container.
 void LinkDbPersister.persist(Link link, java.sql.Connection con)
          Inserts or updates the supplied Link using the supplied connection.
 void StaffInfoDbPersister.persist(StaffInfo staffInfo)
          Inserts or updates the supplied StaffInfo using a connection from the associated persistence manager's database container.
 void StaffInfoDbPersister.persist(StaffInfo staffInfo, java.sql.Connection con)
          Inserts or updates the supplied StaffInfo using the supplied connection.
 void UploadedFileDbPersister.persist(UploadedFile uploadedFile, java.sql.Connection con)
           
 

Uses of ValidationException in blackboard.persist.course
 

Methods in blackboard.persist.course that throw ValidationException
 void CartridgeDbPersister.persist(Cartridge cartridge)
          Inserts or updates the supplied Cartridge using a connection from the associated persistence manager's database container.
 void CartridgeDbPersister.persist(Cartridge cartridge, java.sql.Connection con)
          Inserts or updates the supplied Cartridge using the supplied connection.
 void CourseDbPersister.persist(Course course)
          Inserts or updates the supplied Course in a lightweight fashion using a connection from the associated persistence manager's database container.
 void CourseDbPersister.persist(Course course, java.sql.Connection con)
          Inserts or updates the supplied Course in a lightweight fashion using the supplied connection.
 void CourseMembershipDbPersister.persist(CourseMembership courseMembership)
          Inserts or updates the supplied CourseMembership using a connection from the associated persistence manager's database container.
 void CourseMembershipDbPersister.persist(CourseMembership courseMembership, java.sql.Connection con)
          Inserts or updates the supplied CourseMembership using the supplied connection.
 void GroupDbPersister.persist(Group group)
          Inserts or updates the supplied Group using a connection from the associated persistence manager's database container.
 void GroupDbPersister.persist(Group group, java.sql.Connection con)
          Inserts or updates the supplied Group using the supplied connection.
 void GroupMembershipDbPersister.persist(GroupMembership groupMembership)
          Inserts or updates the supplied GroupMembership using a connection from the associated persistence manager's database container.
 void GroupMembershipDbPersister.persist(GroupMembership groupMembership, java.sql.Connection con)
          Inserts or updates the supplied GroupMembership using the supplied connection.
 

Uses of ValidationException in blackboard.persist.gradebook
 

Methods in blackboard.persist.gradebook that throw ValidationException
 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.
 void LineitemDbPersister.persist(Lineitem lineitem)
          Stores the given Lineitem into the database using a connection obtained through this object's database context.
 void LineitemDbPersister.persist(Lineitem lineitem, java.sql.Connection con)
          Stores the given Lineitem into the database using the provided connection.
 void ScoreDbPersister.persist(Score score)
          Inserts or updates the supplied Score using a connection from the associated persistence manager's database container.
 void ScoreDbPersister.persist(Score score, java.sql.Connection con)
          Inserts or updates the supplied Score using the supplied connection.
 

Uses of ValidationException in blackboard.persist.role
 

Methods in blackboard.persist.role that throw ValidationException
 void PortalRoleDbPersister.persist(PortalRole role)
          Inserts or updates the supplied PortalRole using a connection from the associated persistence manager's database container.
 void PortalRoleDbPersister.persist(PortalRole role, java.sql.Connection con)
          Inserts or updates the supplied PortalRole using the supplied connection.
 

Uses of ValidationException in blackboard.persist.user
 

Methods in blackboard.persist.user that throw ValidationException
 void UserDbPersister.persist(User user)
          Inserts or updates the supplied User using a connection from the associated persistence manager's database container.
 void UserDbPersister.persist(User user, java.sql.Connection con)
          Inserts or updates the supplied User using the supplied connection.
 void UserRoleDbPersister.persist(UserRole role)
          Inserts or updates the supplied UserRole using a connection from the associated persistence manager's database container.
 void UserRoleDbPersister.persist(UserRole role, java.sql.Connection con)
          Inserts or updates the supplied UserRole using the supplied connection.
 

Uses of ValidationException in blackboard.platform.plugin
 

Methods in blackboard.platform.plugin that throw ValidationException
 BbList ContentHandlerDbLoader.loadAll(VirtualInstallation vi)
          Loads all the ContentHandlers for the specified virtual installation.
 void ContentHandlerDbPersister.persist(ContentHandler target)
          Stores the specified content handler into the database associated with the current Virtual Installation.
 void ContentHandlerDbPersister.persist(ContentHandler target, java.sql.Connection conn)
          Stores the specified Content handler into the database specified.
 org.w3c.dom.Element ContentHandlerXmlPersister.persist(ContentHandler obj, org.w3c.dom.Document doc)
          Generates an Element tree whose values and structure matches the contents of the provided ContentHandler object.
 void PlugInDbPersister.persist(PlugIn pin)
          Stores the target PlugIn into the current VirtualInstallation
 void PlugInDbPersister.persist(PlugIn pin, java.sql.Connection con)
           
 org.w3c.dom.Element ContentHandlerXmlPersister.persistList(BbList list, org.w3c.dom.Document doc)
          Generates an Element whose children are the provided ContentHandler objects persisted to XML.
 

Uses of ValidationException in blackboard.portal.external
 

Methods in blackboard.portal.external that throw ValidationException
static CustomData CustomData.getCustomData(Id moduleId, Id portalViewerId)
          Get CustomData without detailed reference to PortalRequestContext information.
static CustomData CustomData.getModuleData(javax.servlet.jsp.PageContext pageContext)
          Load the CustomData associated with the module's general data.
static CustomData CustomData.getModulePersonalizationData(javax.servlet.jsp.PageContext pageContext)
          Load the CustomData associated with the module's personalization data.
 void CustomData.save()
          Saves the CustomData object.
 



Copyright © 2003 Blackboard, Inc. All Rights Reserved.