Interface Journal

All Superinterfaces:
Browsable, Extensible, Federateable, Identifiable, OsidCatalog, OsidObject, Sourceable

public interface Journal extends OsidCatalog

A Journal represents a collection of entries. Like all OSID objects, a Journal is identified by its Id and any persisted references should use the Id .

  • Method Details

    • getJournalRecord

      JournalRecord getJournalRecord(Type journalRecordType) throws OperationFailedException
      Gets the journal record corresponding to the given Journal record Type .This method is used to retrieve an object implementing the requested record. The journalRecordType may be the Type returned in getRecordTypes() or any of its parents in a Type hierarchy where hasRecordType(journalRecordType) is true .
      Parameters:
      journalRecordType - the type of journal record to retrieve
      Returns:
      the journal record
      Throws:
      NullArgumentException - journalRecordType is null
      OperationFailedException - unable to complete request
      UnsupportedException - hasRecordType(journalRecordType) is false
      Compliance:
      mandatory - This method must be implemented.