Interface ProfileEntryEnablerReceiver
- All Superinterfaces:
OsidReceiver
The profile entry enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted profile entry enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds) The callback for notification of updated profile entry enablers.voiddeletedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds) The callback for notification of deleted profile entry enablers.voidnewProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds) The callback for notifications of new profile entry enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newProfileEntryEnablers
The callback for notifications of new profile entry enablers.- Parameters:
notificationId- the notificationIdprofileEntryEnablerIds- theIdsof the newProfileEntryEnablers- Compliance:
mandatory- This method must be implemented.
-
changedProfileEntryEnablers
The callback for notification of updated profile entry enablers.- Parameters:
notificationId- the notificationIdprofileEntryEnablerIds- theIdsof the updatedProfileEntryEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedProfileEntryEnablers
The callback for notification of deleted profile entry enablers.- Parameters:
notificationId- the notificationIdprofileEntryEnablerIds- theIdsof the deletedProfileEntryEnablers- Compliance:
mandatory- This method must be implemented.
-