public interface ObstacleEnablerReceiver extends OsidReceiver
The obstacle enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted obstacle enablers.
Modifier and Type | Method and Description |
---|---|
void |
changedObstacleEnabler(Id obstacleEnablerId)
The callback for notification of updated obstacle enablers.
|
void |
deletedObstacleEnabler(Id obstacleEnablerId)
The callback for notification of deleted obstacle enablers.
|
void |
newObstacleEnabler(Id obstacleEnablerId)
The callback for notifications of new obstacle enablers.
|
down, up
void newObstacleEnabler(Id obstacleEnablerId)
obstacleEnablerId
- the Id
of the new
ObstacleEnabler
mandatory
- This method must be implemented. void changedObstacleEnabler(Id obstacleEnablerId)
obstacleEnablerId
- the Id
of the updated
ObstacleEnabler
mandatory
- This method must be implemented. void deletedObstacleEnabler(Id obstacleEnablerId)
obstacleEnablerId
- the Id
of the deleted
ObstacleEnabler
mandatory
- This method must be implemented.