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 |
changedObstacleEnablers(IdList obstacleEnablerIds)
The callback for notification of updated obstacle enablers.
|
void |
deletedObstacleEnablers(IdList obstacleEnablerIds)
The callback for notification of deleted obstacle enablers.
|
void |
newObstacleEnablers(IdList obstacleEnablerIds)
The callback for notifications of new obstacle enablers.
|
down, upvoid newObstacleEnablers(IdList obstacleEnablerIds)
obstacleEnablerIds - the Ids of the new
ObstacleEnablers mandatory - This method must be implemented. void changedObstacleEnablers(IdList obstacleEnablerIds)
obstacleEnablerIds - the Ids of the updated
ObstacleEnablers mandatory - This method must be implemented. void deletedObstacleEnablers(IdList obstacleEnablerIds)
obstacleEnablerIds - the Ids of the deleted
ObstacleEnablers mandatory - This method must be implemented.