Interface RecurringEventEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface RecurringEventEnablerReceiver extends OsidReceiver

The recurring event enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted recurring event enablers.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
    The callback for notification of updated recurring event enablers.
    void
    deletedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
    The callback for notification of deleted recurring event enablers.
    void
    newRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
    The callback for notifications of new recurring event enablers.

    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

    • newRecurringEventEnablers

      void newRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
      The callback for notifications of new recurring event enablers.
      Parameters:
      notificationId - the notification Id
      recurringEventEnablerIds - the Id of the new RecurringEventEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedRecurringEventEnablers

      void changedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
      The callback for notification of updated recurring event enablers.
      Parameters:
      notificationId - the notification Id
      recurringEventEnablerIds - the Id of the updated RecurringEventEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedRecurringEventEnablers

      void deletedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
      The callback for notification of deleted recurring event enablers.
      Parameters:
      notificationId - the notification Id
      recurringEventEnablerIds - the Id of the deleted RecurringEventEnablers
      Compliance:
      mandatory - This method must be implemented.