public interface GradeSystemReceiver extends OsidReceiver
The vault receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted GradeSystem
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedGradeSystems(IdList gradeSystemIds)
The callback for notification of updated grade systems.
|
void |
deletedGradeSystems(IdList gradeSystemIds)
The callback for notification of deleted grade systems.
|
void |
newGradeSystems(IdList gradeSystemIds)
The callback for notifications of new grade systems.
|
down, up
void newGradeSystems(IdList gradeSystemIds)
gradeSystemIds
- the Ids
of the new
GradeSystems
mandatory
- This method must be implemented. void changedGradeSystems(IdList gradeSystemIds)
gradeSystemIds
- the Ids
of the updated
GradeSystems
mandatory
- This method must be implemented. void deletedGradeSystems(IdList gradeSystemIds)
gradeSystemIds
- the Ids
of the deleted
GradeSystems
mandatory
- This method must be implemented.