public interface FloorReceiver extends OsidReceiver
The floor receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Floor
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedFloors(IdList floorIds)
The callback for notification of updated floors.
|
void |
deletedFloors(IdList floorIds)
the callback for notification of deleted floors.
|
void |
newFloors(IdList floorIds)
The callback for notifications of new floors.
|
down, upvoid newFloors(IdList floorIds)
floorIds - the Ids of the new Floors
mandatory - This method must be implemented. void changedFloors(IdList floorIds)
floorIds - the Ids of the updated Floors
mandatory - This method must be implemented. void deletedFloors(IdList floorIds)
floorIds - the Ids of the registered
Floors mandatory - This method must be implemented.