public interface RequestReceiver extends OsidReceiver
The request receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Request
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRequests(IdList requestIds)
The callback for notification of updated requests.
|
void |
deletedRequests(IdList requestIds)
The callback for notification of deleted requests.
|
void |
newRequests(IdList requestIds)
The callback for notifications of new requests.
|
down, upvoid newRequests(IdList requestIds)
requestIds - the Id of the new Requests
mandatory - This method must be implemented. void changedRequests(IdList requestIds)
requestIds - the Ids of the updated
Requests mandatory - This method must be implemented. void deletedRequests(IdList requestIds)
requestIds - the Ids of the deleted
Requests mandatory - This method must be implemented.