Interface GradeSystemReceiver

All Superinterfaces:
OsidReceiver

public interface GradeSystemReceiver extends OsidReceiver

The vault receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted GradeSystem objects.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedGradeSystems(Id notificationId, IdList gradeSystemIds)
    The callback for notification of updated grade systems.
    void
    deletedGradeSystems(Id notificationId, IdList gradeSystemIds)
    The callback for notification of deleted grade systems.
    void
    newGradeSystems(Id notificationId, IdList gradeSystemIds)
    The callback for notifications of new grade systems.

    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

    • newGradeSystems

      void newGradeSystems(Id notificationId, IdList gradeSystemIds)
      The callback for notifications of new grade systems.
      Parameters:
      notificationId - the notification Id
      gradeSystemIds - the Ids of the new GradeSystems
      Compliance:
      mandatory - This method must be implemented.
    • changedGradeSystems

      void changedGradeSystems(Id notificationId, IdList gradeSystemIds)
      The callback for notification of updated grade systems.
      Parameters:
      notificationId - the notification Id
      gradeSystemIds - the Ids of the updated GradeSystems
      Compliance:
      mandatory - This method must be implemented.
    • deletedGradeSystems

      void deletedGradeSystems(Id notificationId, IdList gradeSystemIds)
      The callback for notification of deleted grade systems.
      Parameters:
      notificationId - the notification Id
      gradeSystemIds - the Ids of the deleted GradeSystems
      Compliance:
      mandatory - This method must be implemented.