public interface ProfileEntryEnablerReceiver extends OsidReceiver
The profile entry enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted profile entry enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProfileEntryEnablers(Id notificationId,
IdList profileEntryEnablerIds)
The callback for notification of updated profile entry enablers.
|
void |
deletedProfileEntryEnablers(Id notificationId,
IdList profileEntryEnablerIds)
The callback for notification of deleted profile entry enablers.
|
void |
newProfileEntryEnablers(Id notificationId,
IdList profileEntryEnablerIds)
The callback for notifications of new profile entry enablers.
|
down, upvoid newProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
notificationId - the notification Id profileEntryEnablerIds - the Ids of the new
ProfileEntryEnablers mandatory - This method must be implemented. void changedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
notificationId - the notification Id profileEntryEnablerIds - the Ids of the updated
ProfileEntryEnablers mandatory - This method must be implemented. void deletedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
notificationId - the notification Id profileEntryEnablerIds - the Ids of the deleted
ProfileEntryEnablers mandatory - This method must be implemented.