public interface DictionaryReceiver extends OsidReceiver
The dictionary receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Dictionary objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfDictionaries(Id notificationId,
IdList dictionaryIds)
The callback for notifications of changes to children of dictionary
hierarchy nodes.
|
void |
changedDictionaries(Id notificationId,
IdList dictionaryIds)
The callback for notification of updated dictionaries.
|
void |
deletedDictionaries(Id notificationId,
IdList dictionaryIds)
The callback for notification of deleted dictionaries.
|
void |
newDictionaries(Id notificationId,
IdList dictionaryIds)
The callback for notifications of new dictionaries.
|
down, upvoid newDictionaries(Id notificationId, IdList dictionaryIds)
notificationId - the notification IddictionaryIds - the Ids of the new
Dictionaries mandatory - This method must be implemented. void changedDictionaries(Id notificationId, IdList dictionaryIds)
notificationId - the notification IddictionaryIds - the Ids of the updated
Dictionaries mandatory - This method must be implemented. void deletedDictionaries(Id notificationId, IdList dictionaryIds)
notificationId - the notification IddictionaryIds - the Ids of the deleted
Dictionaries mandatory - This method must be implemented. void changedChildOfDictionaries(Id notificationId, IdList dictionaryIds)
notificationId - the notification Id dictionaryIds - the Ids of the
Dictionariess whose children have changedmandatory - This method must be implemented.