public interface ChecklistReceiver extends OsidReceiver
The checklist receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Checklist
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChecklists(IdList checklistIds)
The callback for notification of updated checklists.
|
void |
changedChildOfChecklists(Id notificationId,
IdList checklistIds)
The callback for notifications of changes to children of checklist
hierarchy nodes.
|
void |
deletedChecklists(IdList checklistIds)
the callback for notification of deleted checklists.
|
void |
newChecklists(IdList checklistIds)
The callback for notifications of new checklists.
|
down, upvoid newChecklists(IdList checklistIds)
checklistIds - the Ids of the new
Checklists mandatory - This method must be implemented. void changedChecklists(IdList checklistIds)
checklistIds - the Ids of the updated
Checklists mandatory - This method must be implemented. void deletedChecklists(IdList checklistIds)
checklistIds - the Ids of the registered
Checklists mandatory - This method must be implemented. void changedChildOfChecklists(Id notificationId, IdList checklistIds)
notificationId - the notification Id checklistIds - the Ids of the Checklists
whose children have changedmandatory - This method must be implemented.