Interface GradebookColumnReceiver

All Superinterfaces:
OsidReceiver

public interface GradebookColumnReceiver extends OsidReceiver

The grade receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted GradebookColumns .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedGradebookColumns(Id notificationId, IdList gradebookColumnIds)
    The callback for notifications of new gradebook columns.
    void
    deletedGradebookColumns(Id notificationId, IdList gradebookColumnIds)
    The callback for notification of deleted gradebook columns.
    void
    newGradebookColumns(Id notificationId, IdList gradebookColumnIds)
    The callback for notifications of new gradebook columns.

    Methods inherited from interface OsidReceiver

    down, up
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • Method Details

    • newGradebookColumns

      void newGradebookColumns(Id notificationId, IdList gradebookColumnIds)
      The callback for notifications of new gradebook columns.
      Parameters:
      notificationId - the notification Id
      gradebookColumnIds - the Ids of the new GradebookColumns
      Compliance:
      mandatory - This method must be implemented.
    • changedGradebookColumns

      void changedGradebookColumns(Id notificationId, IdList gradebookColumnIds)
      The callback for notifications of new gradebook columns.
      Parameters:
      notificationId - the notification Id
      gradebookColumnIds - the Ids of the new GradebookColumns
      Compliance:
      mandatory - This method must be implemented.
    • deletedGradebookColumns

      void deletedGradebookColumns(Id notificationId, IdList gradebookColumnIds)
      The callback for notification of deleted gradebook columns.
      Parameters:
      notificationId - the notification Id
      gradebookColumnIds - the Ids of the deleted GradebookColumns
      Compliance:
      mandatory - This method must be implemented.