public interface AwardEntryReceiver extends OsidReceiver
The award entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted award entries.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAwardEntries(Id notificationId,
IdList awardEntryIds)
The callback for notification of updated award entries.
|
void |
deletedAwardEntries(Id notificationId,
IdList awardEntryIds)
the callback for notification of deleted award entries.
|
void |
newAwardEntries(Id notificationId,
IdList awardEntryIds)
The callback for notifications of new award entries.
|
down, upvoid newAwardEntries(Id notificationId, IdList awardEntryIds)
notificationId - the notification Id awardEntryIds - the Ids of the new
AwardEntries mandatory - This method must be implemented. void changedAwardEntries(Id notificationId, IdList awardEntryIds)
notificationId - the notification Id awardEntryIds - the Ids of the updated
AwardEntries mandatory - This method must be implemented.