public interface StepConstrainerReceiver extends OsidReceiver
The step constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted step constrainers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedStepConstrainers(Id notificationId,
IdList stepConstrainerIds)
The callback for notification of updated step constrainers.
|
void |
deletedStepConstrainers(Id notificationId,
IdList stepConstrainerIds)
The callback for notification of deleted step constrainers.
|
void |
newStepConstrainers(Id notificationId,
IdList stepConstrainerIds)
The callback for notifications of new step constrainers.
|
down, upvoid newStepConstrainers(Id notificationId, IdList stepConstrainerIds)
notificationId - the notification IdstepConstrainerIds - the Ids of the new
StepConstrainers mandatory - This method must be implemented. void changedStepConstrainers(Id notificationId, IdList stepConstrainerIds)
notificationId - the notification Id stepConstrainerIds - the Ids of the updated
StepConstrainers mandatory - This method must be implemented. void deletedStepConstrainers(Id notificationId, IdList stepConstrainerIds)
notificationId - the notification IdstepConstrainerIds - the Ids of the deleted
StepConstrainers mandatory - This method must be implemented.