public interface InquiryEnablerReceiver extends OsidReceiver
The inquiry enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted inquiry enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedInquiryEnablers(Id notificationId,
IdList inquiryEnablerIds)
The callback for notification of updated inquiry enablers.
|
void |
deletedInquiryEnablers(Id notificationId,
IdList inquiryEnablerIds)
The callback for notification of deleted inquiry enablers.
|
void |
newInquiryEnablers(Id notificationId,
IdList inquiryEnablerIds)
The callback for notifications of new inquiry enablers.
|
down, upvoid newInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
notificationId - the notification Id inquiryEnablerIds - the Ids of the new
InquiryEnablers mandatory - This method must be implemented. void changedInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
notificationId - the notification Id inquiryEnablerIds - the Ids of the updated
InquiryEnablers mandatory - This method must be implemented. void deletedInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
notificationId - the notification Id inquiryEnablerIds - the Ids of the deleted
InquiryEnablers mandatory - This method must be implemented.