public interface ProvisionableReceiver extends OsidReceiver
The provisionable receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted provisionables.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProvisionable(IdList provisionableIds)
The callback for notification of updated provisionables.
|
void |
deletedProvisionable(IdList provisionableIds)
The callback for notification of deleted provisionables.
|
void |
newProvisionable(IdList provisionableIds)
The callback for notifications of new provisionables.
|
down, upvoid newProvisionable(IdList provisionableIds)
provisionableIds - the Ids of the new
Provisionables mandatory - This method must be implemented. void changedProvisionable(IdList provisionableIds)
provisionableIds - the Ids of the updated
Provisionables mandatory - This method must be implemented. void deletedProvisionable(IdList provisionableIds)
provisionableIds - the Ids of the deleted
Provisionables mandatory - This method must be implemented.