public interface ContactEnablerReceiver extends OsidReceiver
The contact enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted contact enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedContactEnablers(Id notificationId,
IdList contactEnablerIds)
The callback for notification of updated contact enablers.
|
void |
deletedContactEnablers(Id notificationId,
IdList contactEnablerIds)
The callback for notification of deleted contact enablers.
|
void |
newContactEnablers(Id notificationId,
IdList contactEnablerIds)
The callback for notifications of new contact enablers.
|
down, upvoid newContactEnablers(Id notificationId, IdList contactEnablerIds)
notificationId - the notification Id contactEnablerIds - the Ids of the new
ContactEnablers mandatory - This method must be implemented. void changedContactEnablers(Id notificationId, IdList contactEnablerIds)
notificationId - the notification Id contactEnablerIds - the Ids of the updated
ContactEnablers mandatory - This method must be implemented. void deletedContactEnablers(Id notificationId, IdList contactEnablerIds)
notificationId - the notification Id contactEnablerIds - the Ids of the deleted
ContactEnablers mandatory - This method must be implemented.