blackboard.persist.course
Class CourseDbPersister.Default

java.lang.Object
  extended by blackboard.persist.course.CourseDbPersister.Default
Enclosing interface:
CourseDbPersister

public static final class CourseDbPersister.Default
extends java.lang.Object

A utility class that provides quick access to the CourseDbPersister instance associated with the default instance of the database BbPersistenceManager.

This class and its method(s) are conveniences and should be used wisely. If one is retrieving many Loader and/or Persister instances within some scope, it will likely be more efficient to retrieve the default database persistence manager directly, and then retrieve loader/persister instances from it instead of making several calls to this and/or other loader/persister utility classes.


Constructor Summary
CourseDbPersister.Default()
           
 
Method Summary
static CourseDbPersister getInstance()
          Returns the CourseDbPersister instance associated with the default instance of the database BbPersistenceManager.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CourseDbPersister.Default

public CourseDbPersister.Default()
Method Detail

getInstance

public static CourseDbPersister getInstance()
                                     throws PersistenceException
Returns the CourseDbPersister instance associated with the default instance of the database BbPersistenceManager.

Calling this method is equivalent to executing the following code:
 BbPersistenceManager pm = BbServiceManager.getPersistenceService().getDbPersistenceManager();
 CourseDbPersister persister = (CourseDbPersister) pm.getPersister( CourseDbPersister.TYPE ) );
 

Returns:
the CourseDbPersister instance associated with the default database persistence manager
Throws:
PersistenceException - if an error occurs when trying to retrieve the CourseDbPersister instance


Copyright © 2003 Blackboard, Inc. All Rights Reserved.