Interface AwardEntryReceiver

All Superinterfaces:
OsidReceiver

public interface AwardEntryReceiver extends OsidReceiver

The award entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted award entries.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAwardEntries(Id notificationId, IdList awardEntryIds)
    The callback for notification of updated award entries.
    void
    deletedAwardEntries(Id notificationId, IdList awardEntryIds)
    the callback for notification of deleted award entries.
    void
    newAwardEntries(Id notificationId, IdList awardEntryIds)
    The callback for notifications of new award entries.

    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

    • newAwardEntries

      void newAwardEntries(Id notificationId, IdList awardEntryIds)
      The callback for notifications of new award entries.
      Parameters:
      notificationId - the notification Id
      awardEntryIds - the Ids of the new AwardEntries
      Compliance:
      mandatory - This method must be implemented.
    • changedAwardEntries

      void changedAwardEntries(Id notificationId, IdList awardEntryIds)
      The callback for notification of updated award entries.
      Parameters:
      notificationId - the notification Id
      awardEntryIds - the Ids of the updated AwardEntries
      Compliance:
      mandatory - This method must be implemented.
    • deletedAwardEntries

      void deletedAwardEntries(Id notificationId, IdList awardEntryIds)
      the callback for notification of deleted award entries.
      Parameters:
      notificationId - the notification Id
      awardEntryIds - the Ids of the deleted AwardEntries
      Compliance:
      mandatory - This method must be implemented.