Interface JobProcessorEnablerReceiver
- All Superinterfaces:
OsidReceiver
The job processor enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted job processor enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds) The callback for notification of updated job processor enablers.voiddeletedJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds) The callback for notification of deleted job processor enablers.voidnewJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds) The callback for notifications of new job processor enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newJobProcessorEnablers
The callback for notifications of new job processor enablers.- Parameters:
notificationId- the notificationIdjobProcessorEnablerIds- theIdsof the newJobProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-
changedJobProcessorEnablers
The callback for notification of updated job processor enablers.- Parameters:
notificationId- the notificationIdjobProcessorEnablerIds- theIdsof the updatedJobProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedJobProcessorEnablers
The callback for notification of deleted job processor enablers.- Parameters:
notificationId- the notificationIdjobProcessorEnablerIds- theIdsof the deletedJobProcessorEnablers- Compliance:
mandatory- This method must be implemented.
-