Interface GradeSystemTransformReceiver

All Superinterfaces:
OsidReceiver

public interface GradeSystemTransformReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedGradeSystemTransforms(IdList gradeSystemTransformIds)
    The callback for notification of updated grade system transforms.
    void
    deletedGradeSystemTransforms(IdList gradeSystemTransformIds)
    The callback for notification of deleted grade system transforms.
    void
    newGradeSystemTransforms(IdList gradeSystemTransformIds)
    The callback for notifications of new grade system transforms.

    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

    • newGradeSystemTransforms

      void newGradeSystemTransforms(IdList gradeSystemTransformIds)
      The callback for notifications of new grade system transforms.
      Parameters:
      gradeSystemTransformIds - the Ids of the new GradeSystemTransforms
      Compliance:
      mandatory - This method must be implemented.
    • changedGradeSystemTransforms

      void changedGradeSystemTransforms(IdList gradeSystemTransformIds)
      The callback for notification of updated grade system transforms.
      Parameters:
      gradeSystemTransformIds - the Ids of the updated GradeSystemTransforms
      Compliance:
      mandatory - This method must be implemented.
    • deletedGradeSystemTransforms

      void deletedGradeSystemTransforms(IdList gradeSystemTransformIds)
      The callback for notification of deleted grade system transforms.
      Parameters:
      gradeSystemTransformIds - the Ids of the deleted GradeSystemTransforms
      Compliance:
      mandatory - This method must be implemented.