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 |
changedInquiryEnabler(Id inquiryEnablerId)
The callback for notification of updated inquiry enablers.
|
void |
deletedInquiryEnabler(Id inquiryEnablerId)
The callback for notification of deleted inquiry enablers.
|
void |
newInquiryEnabler(Id inquiryEnablerId)
The callback for notifications of new inquiry enablers.
|
down, upvoid newInquiryEnabler(Id inquiryEnablerId)
inquiryEnablerId - the Id of the new
InquiryEnabler mandatory - This method must be implemented. void changedInquiryEnabler(Id inquiryEnablerId)
inquiryEnablerId - the Id of the updated
InquiryEnabler mandatory - This method must be implemented. void deletedInquiryEnabler(Id inquiryEnablerId)
inquiryEnablerId - the Id of the deleted
InquiryEnabler mandatory - This method must be implemented.