public interface AwardReceiver extends OsidReceiver
The award receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Award
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAwards(IdList awardIds)
The callback for notification of updated awards.
|
void |
deletedAwards(IdList awardIds)
the callback for notification of deleted awards.
|
void |
newAwards(IdList awardIds)
The callback for notifications of new awards.
|
down, upvoid newAwards(IdList awardIds)
awardIds - the Ids of the new Awards
mandatory - This method must be implemented. void changedAwards(IdList awardIds)
awardIds - the Ids of the updated Awards
mandatory - This method must be implemented. void deletedAwards(IdList awardIds)
awardIds - the Ids of the registered
Awards mandatory - This method must be implemented.