public interface ProvisionReceiver extends OsidReceiver
The provision receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Provision
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProvisions(IdList provisionIds)
The callback for notification of updated provisions.
|
void |
deletedProvisions(IdList provisionIds)
The callback for notification of deleted provisions.
|
void |
newProvisions(IdList provisionIds)
The callback for notifications of new provisions.
|
down, upvoid newProvisions(IdList provisionIds)
provisionIds - the Ids of the new
Provisions mandatory - This method must be implemented. void changedProvisions(IdList provisionIds)
provisionIds - the Ids of the updated
Provisions mandatory - This method must be implemented. void deletedProvisions(IdList provisionIds)
provisionIds - the Ids of the deleted
Provisions mandatory - This method must be implemented.