public interface AuthorizationEnablerReceiver extends OsidReceiver
The authorization enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted authorization enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAuthorizationEnablers(Id notificationId,
IdList authorizationEnablerIds)
The callback for notification of updated authorization enablers.
|
void |
deletedAuthorizationEnablers(Id notificationId,
IdList authorizationEnablerIds)
The callback for notification of deleted authorization enablers.
|
void |
newAuthorizationEnablers(Id notificationId,
IdList authorizationEnablerIds)
The callback for notifications of new authorization enablers.
|
down, upvoid newAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
notificationId - the notification Id authorizationEnablerIds - the Id of the new
AuthorizationEnablers mandatory - This method must be implemented. void changedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
notificationId - the notification Id authorizationEnablerIds - the Id of the updated
AuthorizationEnablers mandatory - This method must be implemented. void deletedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds)
notificationId - the notification Id authorizationEnablerIds - the Id of the deleted
AuthorizationEnablers mandatory - This method must be implemented.