Interface Gradebook

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

public interface Gradebook extends OsidCatalog

A gradebook defines a collection of grade entries.

  • Method Details

    • getGradebookRecord

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