public interface DeviceEnablerReceiver extends OsidReceiver
The device enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted device enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedDeviceEnablers(Id notificationId,
IdList deviceEnablerIds)
The callback for notification of updated device enablers.
|
void |
deletedDeviceEnablers(Id notificationId,
IdList deviceEnablerIds)
The callback for notification of deleted device enablers.
|
void |
newDeviceEnablers(Id notificationId,
IdList deviceEnablerIds)
The callback for notifications of new device enablers.
|
down, upvoid newDeviceEnablers(Id notificationId, IdList deviceEnablerIds)
notificationId - the notification IddeviceEnablerIds - the Ids of the new
DeviceEnablers mandatory - This method must be implemented. void changedDeviceEnablers(Id notificationId, IdList deviceEnablerIds)
notificationId - the notification IddeviceEnablerIds - the Ids of the updated
DeviceEnablers mandatory - This method must be implemented. void deletedDeviceEnablers(Id notificationId, IdList deviceEnablerIds)
notificationId - the notification IddeviceEnablerIds - the Ids of the deleted
DeviceEnablers mandatory - This method must be implemented.