Interface RenovationReceiver

All Superinterfaces:
OsidReceiver

public interface RenovationReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedRenovations(Id notificationId, IdList renovationIds)
    The callback for notification of updated renovations.
    void
    deletedRenovations(Id notificationId, IdList renovationIds)
    the callback for notification of deleted renovations.
    void
    newRenovations(Id notificationId, IdList renovationIds)
    The callback for notifications of new renovations.

    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

    • newRenovations

      void newRenovations(Id notificationId, IdList renovationIds)
      The callback for notifications of new renovations.
      Parameters:
      notificationId - the notification Id
      renovationIds - the Ids of the new Renovations
      Compliance:
      mandatory - This method must be implemented.
    • changedRenovations

      void changedRenovations(Id notificationId, IdList renovationIds)
      The callback for notification of updated renovations.
      Parameters:
      notificationId - the notification Id
      renovationIds - the Ids of the updated Renovations
      Compliance:
      mandatory - This method must be implemented.
    • deletedRenovations

      void deletedRenovations(Id notificationId, IdList renovationIds)
      the callback for notification of deleted renovations.
      Parameters:
      notificationId - the notification Id
      renovationIds - the Ids of the registered Renovations
      Compliance:
      mandatory - This method must be implemented.