Interface IssueProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface IssueProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedIssueProcessorEnablers(Id notificationId, IdList issueProcessorEnablerIds)
    The callback for notification of updated issue processor enablers.
    void
    deletedIssueProcessorEnablers(Id notificationId, IdList issueProcessorEnablerIds)
    The callback for notification of deleted issue processor enablers.
    void
    newIssueProcessorEnablers(Id notificationId, IdList issueProcessorEnablerIds)
    The callback for notifications of new issue processor 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

    • newIssueProcessorEnablers

      void newIssueProcessorEnablers(Id notificationId, IdList issueProcessorEnablerIds)
      The callback for notifications of new issue processor enablers.
      Parameters:
      notificationId - the notification Id
      issueProcessorEnablerIds - the Id of the new IssueProcessorEnablers .
      Compliance:
      mandatory - This method must be implemented.
    • changedIssueProcessorEnablers

      void changedIssueProcessorEnablers(Id notificationId, IdList issueProcessorEnablerIds)
      The callback for notification of updated issue processor enablers.
      Parameters:
      notificationId - the notification Id
      issueProcessorEnablerIds - the Id of the updated IssueProcessorEnablers .
      Compliance:
      mandatory - This method must be implemented.
    • deletedIssueProcessorEnablers

      void deletedIssueProcessorEnablers(Id notificationId, IdList issueProcessorEnablerIds)
      The callback for notification of deleted issue processor enablers.
      Parameters:
      notificationId - the notification Id
      issueProcessorEnablerIds - the Id of the deleted IssueProcessorEnablers .
      Compliance:
      mandatory - This method must be implemented.