public interface TermReceiver extends OsidReceiver
The term receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Term
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfTerms(Id notificationId,
IdList termIds)
The callback for notifications of changes to children of term
hierarchy nodes.
|
void |
changedTerms(Id notificationId,
IdList termIds)
The callback for notification of updated terms.
|
void |
deletedTerms(Id notificationId,
IdList termIds)
The callback for notification of deleted terms.
|
void |
newTerms(Id notificationId,
IdList termIds)
The callback for notifications of new terms.
|
down, upvoid newTerms(Id notificationId, IdList termIds)
notificationId - the notification Id termIds - the Ids of the new Terms mandatory - This method must be implemented. void changedTerms(Id notificationId, IdList termIds)
notificationId - the notification Id termIds - the Ids of the updated Terms
mandatory - This method must be implemented. void deletedTerms(Id notificationId, IdList termIds)
notificationId - the notification Id termIds - the Ids of the deleted Terms
mandatory - This method must be implemented. void changedChildOfTerms(Id notificationId, IdList termIds)
notificationId - the notification Id termIds - the Ids of the Terms
whose children have changedmandatory - This method must be implemented.