public interface ActivityBundleReceiver extends OsidReceiver
The activity bundle receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
ActivityBundle
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedActivityBundles(Id notificationId,
IdList activityBundleIds)
The callback for notification of updated activity bundles.
|
void |
deletedActivityBundles(Id notificationId,
IdList activityBundleIds)
the callback for notification of deleted activity bundles.
|
void |
newActivityBundles(Id notificationId,
IdList activityBundleIds)
The callback for notifications of new activity bundles.
|
down, up
void newActivityBundles(Id notificationId, IdList activityBundleIds)
notificationId
- the notification Id
activityBundleIds
- the Ids
of the new
ActivityBundles
mandatory
- This method must be implemented. void changedActivityBundles(Id notificationId, IdList activityBundleIds)
notificationId
- the notification Id
activityBundleIds
- the Ids
of the updated
ActivityBundles
mandatory
- This method must be implemented. void deletedActivityBundles(Id notificationId, IdList activityBundleIds)
notificationId
- the notification Id
activityBundleIds
- the Ids
of the deleted
ActivityBundles
mandatory
- This method must be implemented.