public interface AuthorizationReceiver extends OsidReceiver
The authorization receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Authorizations.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAuthorizations(Id notificationId,
IdList authorizationIds)
The callback for notification of updated authorization.
|
void |
deletedAuthorizations(Id notificationId,
IdList authorizationIds)
The callback for notification of deleted authorizations.
|
void |
newAuthorizations(Id notificationId,
IdList authorizationIds)
The callback for notifications of new authorizations.
|
down, upvoid newAuthorizations(Id notificationId, IdList authorizationIds)
notificationId - the notification Id authorizationIds - the Id of the new Authorizations
mandatory - This method must be implemented. void changedAuthorizations(Id notificationId, IdList authorizationIds)
notificationId - the notification Id authorizationIds - the Id of the updated Authorizations
mandatory - This method must be implemented. void deletedAuthorizations(Id notificationId, IdList authorizationIds)
notificationId - the notification Id authorizationIds - the Id of the deleted Authorizations
mandatory - This method must be implemented.