public interface KeyReceiver extends OsidReceiver
The key receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Key
objects. A change to a key is a change to an Key.
| Modifier and Type | Method and Description |
|---|---|
void |
changedKeys(Id notificationId,
IdList keyIds)
The callback for notification of updated keys.
|
void |
deletedKeys(Id notificationId,
IdList keyIds)
the callback for notification of deleted keys.
|
void |
newKeys(Id notificationId,
IdList keyIds)
The callback for notifications of new keys.
|
down, upvoid newKeys(Id notificationId, IdList keyIds)
notificationId - the notification Id keyIds - the Ids of the new Keys mandatory - This method must be implemented. void changedKeys(Id notificationId, IdList keyIds)
notificationId - the notification Id keyIds - the Ids of the updated Keys
mandatory - This method must be implemented.