public interface CredentialReceiver extends OsidReceiver
The credential receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Credential
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedCredential(Id credentialId)
The callback for notification of updated credentials.
|
void |
deletedCredential(Id credentialId)
the callback for notification of deleted credentials.
|
void |
newCredential(Id credentialId)
The callback for notifications of new credentials.
|
down, up
void newCredential(Id credentialId)
credentialId
- the Id
of the new
Credential
mandatory
- This method must be implemented. void changedCredential(Id credentialId)
credentialId
- the Id
of the updated
Credential
mandatory
- This method must be implemented. void deletedCredential(Id credentialId)
credentialId
- the Id
of the deleted
Credential
mandatory
- This method must be implemented.