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.gradebook Provides the public implementation classes for Gradebook subsystem.  
blackboard.persist.announcement   
blackboard.persist.calendar   
blackboard.persist.content   
blackboard.persist.course   
blackboard.persist.gradebook   
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 IBbObject.validate()
          Validates the contents of this IBbObject.
 void BbObject.validate()
          Validates the contents of this BbObject.
 void BbObject.persist()
          Inserts or updates the current BbObject in a lightweight fashion.
 

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.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.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 UploadedFileDbPersister.persist(UploadedFile uploadedFile, java.sql.Connection con)
           
 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 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.
 org.w3c.dom.Element GroupUploadXmlPersister.persistList(BbList list, org.w3c.dom.Document doc)
          Generates an Element whose children are the provided GroupUpload objects persisted to XML.
 void GroupUploadDbPersister.persist(GroupUpload groupUpload, java.sql.Connection con)
          Method persist.
 void CourseUploadDbPersister.persist(CourseUpload courseUpload, java.sql.Connection con)
           
 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 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.
 

Uses of ValidationException in blackboard.persist.course
 

Methods in blackboard.persist.course that throw ValidationException
 org.w3c.dom.Element GroupMembershipXmlPersister.persist(GroupMembership obj, org.w3c.dom.Document doc)
          Generates an Element tree whose values and structure matches the contents of the provided GroupMembership object.
 org.w3c.dom.Element GroupMembershipXmlPersister.persistList(BbList list, org.w3c.dom.Document doc)
          Generates an Element whose children are the provided GroupMembership objects persisted to XML.
 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.
 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.
 org.w3c.dom.Element CourseMembershipXmlPersister.persist(CourseMembership obj, org.w3c.dom.Document doc)
          Generates an Element tree whose values and structure matches the contents of the provided CourseMembership object.
 org.w3c.dom.Element CourseMembershipXmlPersister.persistList(BbList list, org.w3c.dom.Document doc)
          Generates an Element whose children are the provided CourseMembership objects persisted to XML.
 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.
 

Uses of ValidationException in blackboard.persist.gradebook
 

Methods in blackboard.persist.gradebook that throw ValidationException
 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.
 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 ScoreDbPersister.persist(BbList scores, java.sql.Connection con)
          Inserts or updates the supplied ScoreList, Score by Score, using the supplied 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 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 LineitemDbPersister.persist(BbList lineitems, java.sql.Connection con)
          Stores the given LineitemList into the database Lineitem by Lineitem using the provided connection.
 

Uses of ValidationException in blackboard.persist.user
 

Methods in blackboard.persist.user that throw ValidationException
 org.w3c.dom.Element UserXmlPersister.persist(User obj, org.w3c.dom.Document doc)
          Generates an Element tree whose values and structure matches the contents of the provided User object.
 org.w3c.dom.Element UserXmlPersister.persistList(BbList list, org.w3c.dom.Document doc)
          Generates an Element whose children are the provided User objects persisted to XML.
 

Uses of ValidationException in blackboard.platform.plugin
 

Methods in blackboard.platform.plugin that throw ValidationException
 void PlugInDbPersister.persist(PlugIn pin)
          Stores the target PlugIn into the current VirtualInstallation
 void PlugInDbPersister.persist(PlugIn pin, java.sql.Connection con)
           
 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.
 BbList ContentHandlerDbLoader.loadAll(VirtualInstallation vi)
          Loads all the ContentHandlers for the specified virtual installation.
 

Uses of ValidationException in blackboard.portal.external
 

Methods in blackboard.portal.external that throw ValidationException
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.