Interface IssueEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface IssueEnablerReceiver extends OsidReceiver

The issue enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted IssueEnabler objects.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedIssueEnablers(Id notificationId, IdList issueEnablerIds)
    The callback for notification of updated issue enablers.
    void
    deletedIssueEnablers(Id notificationId, IdList issueEnablerIds)
    The callback for notification of deleted issue enablers.
    void
    newIssueEnablers(Id notificationId, IdList issueEnablerIds)
    The callback for notifications of new issue 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

    • newIssueEnablers

      void newIssueEnablers(Id notificationId, IdList issueEnablerIds)
      The callback for notifications of new issue enablers.
      Parameters:
      notificationId - the notification Id
      issueEnablerIds - the Id of the new IssueEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedIssueEnablers

      void changedIssueEnablers(Id notificationId, IdList issueEnablerIds)
      The callback for notification of updated issue enablers.
      Parameters:
      notificationId - the notification Id
      issueEnablerIds - the Id of the updated IssueEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedIssueEnablers

      void deletedIssueEnablers(Id notificationId, IdList issueEnablerIds)
      The callback for notification of deleted issue enablers.
      Parameters:
      notificationId - the notification Id
      issueEnablerIds - the Id of the deleted IssueEnablers
      Compliance:
      mandatory - This method must be implemented.