public interface RenovationReceiver extends OsidReceiver
The renovation receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Renovation objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRenovations(IdList renovationIds)
The callback for notification of updated renovations.
|
void |
deletedRenovations(IdList renovationIds)
the callback for notification of deleted renovations.
|
void |
newRenovations(IdList renovationIds)
The callback for notifications of new renovations.
|
down, upvoid newRenovations(IdList renovationIds)
renovationIds - the Ids of the new
Renovations mandatory - This method must be implemented. void changedRenovations(IdList renovationIds)
renovationIds - the Ids of the updated
Renovations mandatory - This method must be implemented. void deletedRenovations(IdList renovationIds)
renovationIds - the Ids of the registered
Renovations mandatory - This method must be implemented.