public interface ObjectiveReceiver extends OsidReceiver
The objective receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Objectives.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfObjectives(Id notificationId,
IdList objectiveIds)
The callback for notifications of changes to children of objective
hierarchy nodes.
|
void |
changedObjectives(Id notificationId,
IdList objectiveIds)
The callback for notification of updated objectives.
|
void |
deletedObjectives(Id notificationId,
IdList objectiveIds)
The callback for notification of deleted objectives.
|
void |
newObjectives(Id notificationId,
IdList objectiveIds)
The callback for notifications of new objectives.
|
down, upvoid newObjectives(Id notificationId, IdList objectiveIds)
notificationId - the notification Id objectiveIds - the Ids of the new
Objectives mandatory - This method must be implemented. void changedObjectives(Id notificationId, IdList objectiveIds)
notificationId - the notification Id objectiveIds - the Ids of the updated
Objectives mandatory - This method must be implemented. void deletedObjectives(Id notificationId, IdList objectiveIds)
notificationId - the notification Id objectiveIds - the Ids of the deleted
Objectives mandatory - This method must be implemented. void changedChildOfObjectives(Id notificationId, IdList objectiveIds)
notificationId - the notification Id objectiveIds - the Ids of the Objectives
whose children have changedmandatory - This method must be implemented.