public interface CheckReceiver extends OsidReceiver
The check receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Check
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChecks(IdList checkIds)
The callback for notification of updated checks.
|
void |
deletedChecks(IdList checkIds)
The callback for notification of deleted checks.
|
void |
newChecks(IdList checkIds)
The callback for notifications of new checks.
|
down, upvoid newChecks(IdList checkIds)
checkIds - the Ids of the new Checks
mandatory - This method must be implemented. void changedChecks(IdList checkIds)
checkIds - the Ids of the updated Checks
mandatory - This method must be implemented. void deletedChecks(IdList checkIds)
checkIds - the Ids of the deleted Checks
mandatory - This method must be implemented.