public interface ProcessEnablerReceiver extends OsidReceiver
The process enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted process enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProcessEnablers(Id notificationId,
IdList processEnablerIds)
The callback for notification of updated process enablers.
|
void |
deletedProcessEnablers(Id notificationId,
IdList processEnablerIds)
The callback for notification of deleted process enablers.
|
void |
newProcessEnablers(Id notificationId,
IdList processEnablerIds)
The callback for notifications of new process enablers.
|
down, upvoid newProcessEnablers(Id notificationId, IdList processEnablerIds)
notificationId - the notification Id processEnablerIds - the Ids of the new
ProcessEnablers mandatory - This method must be implemented. void changedProcessEnablers(Id notificationId, IdList processEnablerIds)
notificationId - the notification Id processEnablerIds - the Ids of the updated
ProcessEnablers mandatory - This method must be implemented. void deletedProcessEnablers(Id notificationId, IdList processEnablerIds)
notificationId - the notification Id processEnablerIds - the Ids of the deleted
ProcessEnablers mandatory - This method must be implemented.