public interface AssessmentPartReceiver extends OsidReceiver
The assessment part receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted assessment parts.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAssessmentParts(Id notificationId,
IdList assessmentPartIds)
The callback for notification of updated assessment parts.
|
void |
deletedAssessmentParts(Id notificationId,
IdList assessmentPartIds)
The callback for notification of deleted assessment parts.
|
void |
newAssessmentParts(Id notificationId,
IdList assessmentPartIds)
The callback for notifications of new assessment parts.
|
down, upvoid newAssessmentParts(Id notificationId, IdList assessmentPartIds)
notificationId - the notification Id assessmentPartIds - the Id of the new
AssessmentParts mandatory - This method must be implemented. void changedAssessmentParts(Id notificationId, IdList assessmentPartIds)
notificationId - the notification IdassessmentPartIds - the Id of the updated
AssessmentParts mandatory - This method must be implemented. void deletedAssessmentParts(Id notificationId, IdList assessmentPartIds)
notificationId - the notification IdassessmentPartIds - the Id of the deleted
AssessmentParts mandatory - This method must be implemented.