public interface SettingReceiver extends OsidReceiver
The setting receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted settings.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSettings(Id notificationId,
IdList settingIds)
The callback for notification of updated settings.
|
void |
deletedSettings(Id notificationId,
IdList settingIds)
The callback for notification of deleted settings.
|
void |
newSettings(Id notificationId,
IdList settingIds)
The callback for notifications of new settings.
|
down, upvoid newSettings(Id notificationId, IdList settingIds)
notificationId - the notification IdsettingIds - the Ids of the new Settings
mandatory - This method must be implemented. void changedSettings(Id notificationId, IdList settingIds)
notificationId - the notification IdsettingIds - the Ids of the updated
Settings mandatory - This method must be implemented.