Interface StepProcessorEnablerReceiver
- All Superinterfaces:
OsidReceiver
The step processor enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted step processor enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds) The callback for notification of updated step processor enablers.voiddeletedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds) The callback for notification of deleted step processor enablers.voidnewStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds) The callback for notifications of new step processor enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newStepProcessorEnablers
The callback for notifications of new step processor enablers.- Parameters:
notificationId- the notificationIdstepProcessorEnablerIds- theIdsof the newStepProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-
changedStepProcessorEnablers
The callback for notification of updated step processor enablers.- Parameters:
notificationId- the notificationIdstepProcessorEnablerIds- theIdsof the updatedStepProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedStepProcessorEnablers
The callback for notification of deleted step processor enablers.- Parameters:
notificationId- the notificationIdstepProcessorEnablerIds- theIdsof the deletedStepProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-