public interface JobProcessorEnablerReceiver extends OsidReceiver
The job processor enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted job processor enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedJobProcessorEnablers(IdList jobProcessorEnablerIds)
The callback for notification of updated job processor enablers.
|
void |
deletedJobProcessorEnablers(IdList jobProcessorEnablerIds)
The callback for notification of deleted job processor enablers.
|
void |
newJobProcessorEnablers(IdList jobProcessorEnablerIds)
The callback for notifications of new job processor enablers.
|
down, upvoid newJobProcessorEnablers(IdList jobProcessorEnablerIds)
jobProcessorEnablerIds - the Ids of the new
JobProcessorEnablers mandatory - This method must be implemented. void changedJobProcessorEnablers(IdList jobProcessorEnablerIds)
jobProcessorEnablerIds - the Ids of the updated
JobProcessorEnablers mandatory - This method must be implemented. void deletedJobProcessorEnablers(IdList jobProcessorEnablerIds)
jobProcessorEnablerIds - the Ids of the deleted
JobProcessorEnablers mandatory - This method must be implemented.