Interface AuthorizationEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface AuthorizationEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
    The callback for notification of updated authorization enablers.
    void
    deletedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
    The callback for notification of deleted authorization enablers.
    void
    newAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
    The callback for notifications of new authorization 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

    • newAuthorizationEnablers

      void newAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
      The callback for notifications of new authorization enablers.
      Parameters:
      notificationId - the notification Id
      authorizationEnablerIds - the Id of the new AuthorizationEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuthorizationEnablers

      void changedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
      The callback for notification of updated authorization enablers.
      Parameters:
      notificationId - the notification Id
      authorizationEnablerIds - the Id of the updated AuthorizationEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuthorizationEnablers

      void deletedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
      The callback for notification of deleted authorization enablers.
      Parameters:
      notificationId - the notification Id
      authorizationEnablerIds - the Id of the deleted AuthorizationEnablers
      Compliance:
      mandatory - This method must be implemented.