public interface TriggerEnablerReceiver extends OsidReceiver
The trigger enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted trigger enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedTriggerEnablers(Id notificationId,
IdList triggerEnablerIds)
The callback for notification of updated trigger enablers.
|
void |
deletedTriggerEnablers(Id notificationId,
IdList triggerEnablerIds)
The callback for notification of deleted trigger enablers.
|
void |
newTriggerEnablers(Id notificationId,
IdList triggerEnablerIds)
The callback for notifications of new trigger enablers.
|
down, upvoid newTriggerEnablers(Id notificationId, IdList triggerEnablerIds)
notificationId - the notification IdtriggerEnablerIds - the Ids of the new
TriggerEnablers mandatory - This method must be implemented. void changedTriggerEnablers(Id notificationId, IdList triggerEnablerIds)
notificationId - the notification IdtriggerEnablerIds - the Ids of the updated
TriggerEnablers mandatory - This method must be implemented. void deletedTriggerEnablers(Id notificationId, IdList triggerEnablerIds)
notificationId - the notification IdtriggerEnablerIds - the Ids of the deleted
TriggerEnablers mandatory - This method must be implemented.