Interface AuthorizationEnablerReceiver
- All Superinterfaces:
OsidReceiver
The authorization enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted authorization enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds) The callback for notification of updated authorization enablers.voiddeletedAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds) The callback for notification of deleted authorization enablers.voidnewAuthorizationEnablers(Id notificationId, IdList authorizationEnablerIds) The callback for notifications of new authorization enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newAuthorizationEnablers
The callback for notifications of new authorization enablers.- Parameters:
notificationId- the notificationIdauthorizationEnablerIds- theIdof the newAuthorizationEnablers- Compliance:
mandatory- This method must be implemented.
-
changedAuthorizationEnablers
The callback for notification of updated authorization enablers.- Parameters:
notificationId- the notificationIdauthorizationEnablerIds- theIdof the updatedAuthorizationEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedAuthorizationEnablers
The callback for notification of deleted authorization enablers.- Parameters:
notificationId- the notificationIdauthorizationEnablerIds- theIdof the deletedAuthorizationEnablers- Compliance:
mandatory- This method must be implemented.
-