public interface CredentialEntryReceiver extends OsidReceiver
The credential entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted credential entries.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCredentialEntries(Id notificationId,
IdList credentialEntryIds)
The callback for notification of updated credential entries.
|
void |
deletedCredentialEntries(Id notificationId,
IdList credentialEntryIds)
the callback for notification of deleted credential entries.
|
void |
newCredentialEntries(Id notificationId,
IdList credentialEntryIds)
The callback for notifications of new credential entries.
|
down, upvoid newCredentialEntries(Id notificationId, IdList credentialEntryIds)
notificationId - the notification Id credentialEntryIds - the Ids of the new
CredentialEntries mandatory - This method must be implemented. void changedCredentialEntries(Id notificationId, IdList credentialEntryIds)
notificationId - the notification Id credentialEntryIds - the Ids of the updated
CredentialEntries mandatory - This method must be implemented. void deletedCredentialEntries(Id notificationId, IdList credentialEntryIds)
notificationId - the notification Id credentialEntryIds - the Ids of the deleted
CredentialEntries mandatory - This method must be implemented.