public interface AssetReceiver extends OsidReceiver
The asset receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Asset
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAssets(IdList assetIds)
The callback for notification of updated assets.
|
void |
deletedAssets(IdList assetIds)
the callback for notification of deleted assets.
|
void |
newAssets(IdList assetIds)
The callback for notifications of new assets.
|
down, upvoid newAssets(IdList assetIds)
assetIds - the Ids of the new Assets
mandatory - This method must be implemented. void changedAssets(IdList assetIds)
assetIds - the Ids of the updated Assets
mandatory - This method must be implemented. void deletedAssets(IdList assetIds)
assetIds - the Ids of the deleted Assets
mandatory - This method must be implemented.