public interface ResourceReceiver extends OsidReceiver
The resource receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Resource
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedResources(IdList resourceIds)
The callback for notification of updated resources.
|
void |
deletedResources(IdList resourceIds)
the callback for notification of deleted resources.
|
void |
newResources(IdList resourceIds)
The callback for notifications of new resources.
|
down, upvoid newResources(IdList resourceIds)
resourceIds - the Ids of the new Resources
mandatory - This method must be implemented. void changedResources(IdList resourceIds)
resourceIds - the Ids of the updated
Resources mandatory - This method must be implemented. void deletedResources(IdList resourceIds)
resourceIds - the Ids of the deleted
Resources mandatory - This method must be implemented.