public interface InquiryReceiver extends OsidReceiver
The inquiry receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Inquiry
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedInquiry(Id inquiryId)
The callback for notification of updated inquiries.
|
void |
deletedInquiry(Id inquiryId)
The callback for notification of deleted inquiries.
|
void |
newInquiry(Id inquiryId)
The callback for notifications of new inquiries.
|
down, upvoid newInquiry(Id inquiryId)
inquiryId - the Id of the new Inquiry
mandatory - This method must be implemented. void changedInquiry(Id inquiryId)
inquiryId - the Id of the updated Inquiry
mandatory - This method must be implemented. void deletedInquiry(Id inquiryId)
inquiryId - the Id of the deleted Inquiry
mandatory - This method must be implemented.