public interface AssessmentTakenReceiver extends OsidReceiver
The assessment receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
AssessmentTaken objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAssessmenstTaken(Id notificationId,
IdList assessmentTakenIds)
The callback for notification of updated taken assessments.
|
void |
deletedAssessmenstTaken(Id notificationId,
IdList assessmentTakenIds)
the callback for notification of deleted taken assessments.
|
void |
newAssessmentsTaken(Id notificationId,
IdList assessmentTakenIds)
The callback for notifications of new taken assessments.
|
down, upvoid newAssessmentsTaken(Id notificationId, IdList assessmentTakenIds)
notificationId - the notification Id assessmentTakenIds - the Ids of the new
AssessmentsTaken mandatory - This method must be implemented. void changedAssessmenstTaken(Id notificationId, IdList assessmentTakenIds)
notificationId - the notification Id assessmentTakenIds - the Ids of the updated
AssessmentsTaken mandatory - This method must be implemented. void deletedAssessmenstTaken(Id notificationId, IdList assessmentTakenIds)
notificationId - the notification Id assessmentTakenIds - the Ids of the deleted
AssessmentsTaken mandatory - This method must be implemented.