public interface InquestReceiver extends OsidReceiver
The inquest receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Inquest
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfInquests(Id notificationId,
IdList inquestIds)
The callback for notifications of changes to children of inquest
hierarchy nodes.
|
void |
changedInquests(Id notificationId,
IdList inquestIds)
The callback for notification of updated inquest.
|
void |
deletedInquests(Id notificationId,
IdList inquestIds)
The callback for notification of deleted inquests.
|
void |
newInquests(Id notificationId,
IdList inquestIds)
The callback for notifications of new inquests.
|
down, upvoid newInquests(Id notificationId, IdList inquestIds)
notificationId - the notification Id inquestIds - the Ids of the new Inquests
mandatory - This method must be implemented. void changedInquests(Id notificationId, IdList inquestIds)
notificationId - the notification Id inquestIds - the Ids of the updated
Inquests mandatory - This method must be implemented. void deletedInquests(Id notificationId, IdList inquestIds)
notificationId - the notification Id inquestIds - the Ids of the deleted
Inquests mandatory - This method must be implemented. void changedChildOfInquests(Id notificationId, IdList inquestIds)
notificationId - the notification Id inquestIds - the Ids of the Inquests
whose children have changedmandatory - This method must be implemented.