public interface IssueReceiver extends OsidReceiver
The issue receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted issues.
| Modifier and Type | Method and Description |
|---|---|
void |
changedIssues(Id notificationId,
IdList issueIds)
The callback for notification of updated issues.
|
void |
deletedIssues(Id notificationId,
IdList issueIds)
The callback for notification of deleted issues.
|
void |
newIssues(Id notificationId,
IdList issueIds)
The callback for notifications of new issues.
|
down, upvoid newIssues(Id notificationId, IdList issueIds)
notificationId - the notification IdissueIds - the Ids of the new Issues
mandatory - This method must be implemented. void changedIssues(Id notificationId, IdList issueIds)
notificationId - the notification IdissueIds - the Ids of the updated Issues
mandatory - This method must be implemented.