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 |
changedAwardEntry(Id awardEntryId)
The callback for notification of updated award entries.
|
void |
deletedAwardEntry(Id awardEntryId)
the callback for notification of deleted award entries.
|
void |
newAwardEntry(Id awardEntryId)
The callback for notifications of new award entries.
|
down, up
void newAwardEntry(Id awardEntryId)
awardEntryId
- the Id
of the new
AwardEntry
mandatory
- This method must be implemented. void changedAwardEntry(Id awardEntryId)
awardEntryId
- the Id
of the updated
AwardEntry
mandatory
- This method must be implemented. void deletedAwardEntry(Id awardEntryId)
awardEntryId
- the Id
of the deleted
AwardEntry
mandatory
- This method must be implemented.