Interface ProvisionableEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ProvisionableEnablerReceiver extends OsidReceiver

The provisionable receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted ProvisionableEnablers .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedProvisionableEnablers(Id notificationId, IdList provisionableEnablerIds)
    The callback for notification of updated provisionable enablers.
    void
    deletedProvisionableEnablers(Id notificationId, IdList provisionableEnablerIds)
    The callback for notification of deleted provisionable enablers.
    void
    newProvisionableEnablers(Id notificationId, IdList provisionableEnablerIds)
    The callback for notifications of new provisionable 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

    • newProvisionableEnablers

      void newProvisionableEnablers(Id notificationId, IdList provisionableEnablerIds)
      The callback for notifications of new provisionable enablers.
      Parameters:
      notificationId - the notification Id
      provisionableEnablerIds - the Id of the new ProvisionableEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedProvisionableEnablers

      void changedProvisionableEnablers(Id notificationId, IdList provisionableEnablerIds)
      The callback for notification of updated provisionable enablers.
      Parameters:
      notificationId - the notification Id
      provisionableEnablerIds - the Id of the updated ProvisionableEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedProvisionableEnablers

      void deletedProvisionableEnablers(Id notificationId, IdList provisionableEnablerIds)
      The callback for notification of deleted provisionable enablers.
      Parameters:
      notificationId - the notification Id
      provisionableEnablerIds - the Id of the deleted ProvisionableEnablers
      Compliance:
      mandatory - This method must be implemented.