Interface RegistrationRequestReceiver

All Superinterfaces:
OsidReceiver

public interface RegistrationRequestReceiver extends OsidReceiver

The registration request receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted RegistrationRequests .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedRegistrationRequests(Id notificationId, IdList registrationRequestIds)
    The callback for notification of updated registration requests.
    void
    deletedRegistrationRequests(Id notificationId, IdList registrationRequestIds)
    The callback for notification of deleted registration requests.
    void
    newRegistrationRequests(Id notificationId, IdList registrationRequestIds)
    The callback for notifications of new registration requests.

    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

    • newRegistrationRequests

      void newRegistrationRequests(Id notificationId, IdList registrationRequestIds)
      The callback for notifications of new registration requests.
      Parameters:
      notificationId - the notification Id
      registrationRequestIds - the Id of the new RegistrationRequests
      Compliance:
      mandatory - This method must be implemented.
    • changedRegistrationRequests

      void changedRegistrationRequests(Id notificationId, IdList registrationRequestIds)
      The callback for notification of updated registration requests.
      Parameters:
      notificationId - the notification Id
      registrationRequestIds - the Id of the updated RegistrationRequests
      Compliance:
      mandatory - This method must be implemented.
    • deletedRegistrationRequests

      void deletedRegistrationRequests(Id notificationId, IdList registrationRequestIds)
      The callback for notification of deleted registration requests.
      Parameters:
      notificationId - the notification Id
      registrationRequestIds - the Id of the deleted RegistrationRequests
      Compliance:
      mandatory - This method must be implemented.