public interface ActivityUnitReceiver extends OsidReceiver
The activity unit receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
ActivityUnit objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedActivityUnits(Id notificationId,
IdList activityUnitIds)
The callback for notification of updated activity units.
|
void |
deletedActivityUnits(Id notificationId,
IdList activityUnitIds)
the callback for notification of deleted activity units.
|
void |
newActivityUnits(Id notificationId,
IdList activityUnitIds)
The callback for notifications of new activity units.
|
down, upvoid newActivityUnits(Id notificationId, IdList activityUnitIds)
notificationId - the notification IdactivityUnitIds - the Ids of the new
ActivityUnits mandatory - This method must be implemented. void changedActivityUnits(Id notificationId, IdList activityUnitIds)
notificationId - the notification Id activityUnitIds - the Ids of the updated
ActivityUnits mandatory - This method must be implemented. void deletedActivityUnits(Id notificationId, IdList activityUnitIds)
notificationId - the notification IdactivityUnitIds - the Ids of the deleted
ActivityUnits mandatory - This method must be implemented.