public interface StepProcessorEnablerReceiver extends OsidReceiver
The step processor enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted step processor enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedStepProcessorEnablers(Id notificationId,
IdList stepProcessorEnablerIds)
The callback for notification of updated step processor enablers.
|
void |
deletedStepProcessorEnablers(Id notificationId,
IdList stepProcessorEnablerIds)
The callback for notification of deleted step processor enablers.
|
void |
newStepProcessorEnablers(Id notificationId,
IdList stepProcessorEnablerIds)
The callback for notifications of new step processor enablers.
|
down, upvoid newStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
notificationId - the notification Id stepProcessorEnablerIds - the Ids of the new
StepProcessorEnablers mandatory - This method must be implemented. void changedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
notificationId - the notification Id stepProcessorEnablerIds - the Ids of the updated
StepProcessorEnablers mandatory - This method must be implemented. void deletedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
notificationId - the notification Id stepProcessorEnablerIds - the Ids of the deleted
StepProcessorEnablers mandatory - This method must be implemented.