public interface VaultReceiver extends OsidReceiver
The vault receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Vault
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfVaults(Id notificationId,
IdList vaultIds)
The callback for notifications of changes to children of vault
hierarchy nodes.
|
void |
changedVaults(Id notificationId,
IdList vaultIds)
The callback for notification of updated vaults.
|
void |
deletedVaults(Id notificationId,
IdList vaultIds)
The callback for notification of deleted vaults.
|
void |
newVaults(Id notificationId,
IdList vaultIds)
The callback for notifications of new vaults.
|
down, upvoid newVaults(Id notificationId, IdList vaultIds)
notificationId - the notification IdvaultIds - the Id of the new Vaults
mandatory - This method must be implemented. void changedVaults(Id notificationId, IdList vaultIds)
notificationId - the notification IdvaultIds - the Id of the updated Vaults
mandatory - This method must be implemented. void deletedVaults(Id notificationId, IdList vaultIds)
notificationId - the notification IdvaultIds - the Id of the deleted Vaults
mandatory - This method must be implemented. void changedChildOfVaults(Id notificationId, IdList vaultIds)
notificationId - the notification IdvaultIds - the Ids of the Vaults
whose children have changedmandatory - This method must be implemented.