public interface AssessmentEntryReceiver extends OsidReceiver
The assessment entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted assessment entries.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAssessmentEntries(Id notificationId,
IdList assessmentEntryIds)
The callback for notification of updated assessment entries.
|
void |
deletedAssessmentEntries(Id notificationId,
IdList assessmentEntryIds)
the callback for notification of deleted assessment entries.
|
void |
newAssessmentEntries(Id notificationId,
IdList assessmentEntryIds)
The callback for notifications of new assessment entries.
|
down, upvoid newAssessmentEntries(Id notificationId, IdList assessmentEntryIds)
notificationId - the notification IdassessmentEntryIds - the Ids of the new
AssessmentEntries mandatory - This method must be implemented. void changedAssessmentEntries(Id notificationId, IdList assessmentEntryIds)
notificationId - the notification IdassessmentEntryIds - the Ids of the updated
AssessmentEntries mandatory - This method must be implemented. void deletedAssessmentEntries(Id notificationId, IdList assessmentEntryIds)
notificationId - the notification IdassessmentEntryIds - the Ids of the deleted
AssessmentEntries mandatory - This method must be implemented.