public interface InputEnablerReceiver extends OsidReceiver
The input enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted input enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedInputEnablers(Id notificationId,
IdList inputEnablerIds)
The callback for notification of updated input enablers.
|
void |
deletedInputEnablers(Id notificationId,
IdList inputEnablerIds)
The callback for notification of deleted input enablers.
|
void |
newInputEnablers(Id notificationId,
IdList inputEnablerIds)
The callback for notifications of new input enablers.
|
down, upvoid newInputEnablers(Id notificationId, IdList inputEnablerIds)
notificationId - the notification Id inputEnablerIds - the Ids of the new
InputEnablers mandatory - This method must be implemented. void changedInputEnablers(Id notificationId, IdList inputEnablerIds)
notificationId - the notification Id inputEnablerIds - the Ids of the updated
InputEnablers mandatory - This method must be implemented. void deletedInputEnablers(Id notificationId, IdList inputEnablerIds)
notificationId - the notification Id inputEnablerIds - the Ids of the deleted
InputEnablers mandatory - This method must be implemented.