public interface ConfigurationReceiver extends OsidReceiver
The configuration receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Configuration objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfConfgurations(Id notificationId,
IdList configurationIds)
The callback for notifications of changes to children of configuration
hierarchy nodes.
|
void |
changedConfigurations(Id notificationId,
IdList configurationIds)
The callback for notification of updated configurations.
|
void |
deletedConfigurations(Id notificationId,
IdList configurationIds)
The callback for notification of deleted configurations.
|
void |
newConfigurations(Id notificationId,
IdList configurationIds)
The callback for notifications of new configurations.
|
down, upvoid newConfigurations(Id notificationId, IdList configurationIds)
notificationId - the notification Id configurationIds - the Ids of the new
Configurations mandatory - This method must be implemented. void changedConfigurations(Id notificationId, IdList configurationIds)
notificationId - the notification Id configurationIds - the Ids of the updated
Configurations mandatory - This method must be implemented. void deletedConfigurations(Id notificationId, IdList configurationIds)
notificationId - the notification Id configurationIds - the Ids of the deleted
Configurations mandatory - This method must be implemented. void changedChildOfConfgurations(Id notificationId, IdList configurationIds)
notificationId - the notification Id configurationIds - the Ids of the
Configurations whose children have changedmandatory - This method must be implemented.