Interface ChecklistReceiver
- All Superinterfaces:
OsidReceiver
The checklist receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Checklist
objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedChecklists(IdList checklistIds) The callback for notification of updated checklists.voidchangedChildOfChecklists(Id notificationId, IdList checklistIds) The callback for notifications of changes to children of checklist hierarchy nodes.voiddeletedChecklists(IdList checklistIds) the callback for notification of deleted checklists.voidnewChecklists(IdList checklistIds) The callback for notifications of new checklists.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newChecklists
The callback for notifications of new checklists.- Parameters:
checklistIds- theIdsof the newChecklists- Compliance:
mandatory- This method must be implemented.
-
changedChecklists
The callback for notification of updated checklists.- Parameters:
checklistIds- theIdsof the updatedChecklists- Compliance:
mandatory- This method must be implemented.
-
deletedChecklists
the callback for notification of deleted checklists.- Parameters:
checklistIds- theIdsof the registeredChecklists- Compliance:
mandatory- This method must be implemented.
-
changedChildOfChecklists
The callback for notifications of changes to children of checklist hierarchy nodes.- Parameters:
notificationId- the notificationIdchecklistIds- theIdsof theChecklistswhose children have changed- Compliance:
mandatory- This method must be implemented.
-