public interface RelevancyEnablerReceiver extends OsidReceiver
The relevancy enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted relevancy enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRelevancyEnablers(Id notificationId,
IdList relevancyEnablerIds)
The callback for notification of updated relevancy enablers.
|
void |
deletedRelevancyEnablers(Id notificationId,
IdList relevancyEnablerIds)
The callback for notification of deleted relevancy enablers.
|
void |
newRelevancyEnablers(Id notificationId,
IdList relevancyEnablerIds)
The callback for notifications of new relevancy enablers.
|
down, upvoid newRelevancyEnablers(Id notificationId, IdList relevancyEnablerIds)
notificationId - the notification Id relevancyEnablerIds - the Ids of the new
RelevancyEnablers mandatory - This method must be implemented. void changedRelevancyEnablers(Id notificationId, IdList relevancyEnablerIds)
notificationId - the notification Id relevancyEnablerIds - the Ids of the updated
RelevancyEnablers mandatory - This method must be implemented. void deletedRelevancyEnablers(Id notificationId, IdList relevancyEnablerIds)
notificationId - the notification Id relevancyEnablerIds - the Ids of the deleted
RelevancyEnablers mandatory - This method must be implemented.