Interface ActivityRegistrationReceiver

All Superinterfaces:
OsidReceiver

public interface ActivityRegistrationReceiver extends OsidReceiver

The activity registration receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted ActivityRegistration objects.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
    The callback for notification of updated activity registrations.
    void
    deletedActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
    the callback for notification of deleted activity registrations.
    void
    newActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
    The callback for notifications of new activity registrations.

    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

    • newActivityRegistrations

      void newActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
      The callback for notifications of new activity registrations.
      Parameters:
      notificationId - the notification Id
      activityRegistrationIds - the Ids of the new ActivityRegistrations
      Compliance:
      mandatory - This method must be implemented.
    • changedActivityRegistrations

      void changedActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
      The callback for notification of updated activity registrations.
      Parameters:
      notificationId - the notification Id
      activityRegistrationIds - the Ids of the updated ActivityRegistrations
      Compliance:
      mandatory - This method must be implemented.
    • deletedActivityRegistrations

      void deletedActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
      the callback for notification of deleted activity registrations.
      Parameters:
      notificationId - the notification Id
      activityRegistrationIds - the Ids of the deleted ActivityRegistrations
      Compliance:
      mandatory - This method must be implemented.