Interface IssueProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface IssueProcessorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedIssueProcessors(Id notificationId, IdList issueProcessorIds)
    The callback for notification of updated issue processors.
    void
    deletedIssueProcessors(Id notificationId, IdList issueProcessorIds)
    The callback for notification of deleted issue processors.
    void
    newIssueProcessors(Id notificationId, IdList issueProcessorIds)
    The callback for notifications of new issue processors.

    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

    • newIssueProcessors

      void newIssueProcessors(Id notificationId, IdList issueProcessorIds)
      The callback for notifications of new issue processors.
      Parameters:
      notificationId - the notification Id
      issueProcessorIds - the Id of the new IssueProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedIssueProcessors

      void changedIssueProcessors(Id notificationId, IdList issueProcessorIds)
      The callback for notification of updated issue processors.
      Parameters:
      notificationId - the notification Id
      issueProcessorIds - the Id of the updated IssueProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedIssueProcessors

      void deletedIssueProcessors(Id notificationId, IdList issueProcessorIds)
      The callback for notification of deleted issue processors.
      Parameters:
      notificationId - the notification Id
      issueProcessorIds - the Id of the deleted IssueProcessors
      Compliance:
      mandatory - This method must be implemented.