public interface QualifierReceiver extends OsidReceiver
The qualifier receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Qualifier
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfBillings(Id notificationId,
IdList qualifierIds)
The callback for notifications of changes to children of qualifier
hierarchy nodes.
|
void |
changedQualifiers(Id notificationId,
IdList qualifierIds)
The callback for notification of updated qualifiers.
|
void |
deletedQualifiers(Id notificationId,
IdList qualifierIds)
the callback for notification of deleted qualifiers.
|
void |
newQualifiers(Id notificationId,
IdList qualifierIds)
The callback for notifications of new qualifiers.
|
down, upvoid newQualifiers(Id notificationId, IdList qualifierIds)
notificationId - the notification Id qualifierIds - the Id of the new
Qualifiers mandatory - This method must be implemented. void changedQualifiers(Id notificationId, IdList qualifierIds)
notificationId - the notification Id qualifierIds - the Id of the updated
Qualifiers mandatory - This method must be implemented. void deletedQualifiers(Id notificationId, IdList qualifierIds)
notificationId - the notification Id qualifierIds - the Id of the deleted
Qualifiers mandatory - This method must be implemented. void changedChildOfBillings(Id notificationId, IdList qualifierIds)
notificationId - the notification Id qualifierIds - the Ids of the Qualifiers
whose children have changedmandatory - This method must be implemented.