public interface GradeEntryReceiver extends OsidReceiver
The grade entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted grade entries.
| Modifier and Type | Method and Description |
|---|---|
void |
changedGradeEntries(IdList gradeEntryIds)
The callback for notification of updated grade entries.
|
void |
deletedGradeEntries(IdList gradeEntryIds)
The callback for notification of deleted grade entries.
|
void |
newGradeEntries(IdList gradeEntryIds)
The callback for notifications of new grade entries.
|
down, upvoid newGradeEntries(IdList gradeEntryIds)
gradeEntryIds - the Ids of the new
GradeEntries mandatory - This method must be implemented. void changedGradeEntries(IdList gradeEntryIds)
gradeEntryIds - the Ids of the updated
GradeEntries mandatory - This method must be implemented. void deletedGradeEntries(IdList gradeEntryIds)
gradeEntryIds - the Ids of the deleted
GradeEntries mandatory - This method must be implemented.