public interface AntimatroidReceiver extends OsidReceiver
The antimatroid receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Antimatroid objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAntimatroids(Id notificationId,
IdList antimatroidIds)
The callback for notification of updated antimatroid.
|
void |
changedChildOfAntimatroids(Id notificationId,
IdList antimatroidIds)
The callback for notifications of changes to children of antimatroid
hierarchy nodes.
|
void |
deletedAntimatroids(Id notificationId,
IdList antimatroidIds)
The callback for notification of deleted antimatroids.
|
void |
newAntimatroids(Id notificationId,
IdList antimatroidIds)
The callback for notifications of new antimatroids.
|
down, upvoid newAntimatroids(Id notificationId, IdList antimatroidIds)
notificationId - the notification Id antimatroidIds - the Ids of the new
Antimatroids mandatory - This method must be implemented. void changedAntimatroids(Id notificationId, IdList antimatroidIds)
notificationId - the notification Id antimatroidIds - the Ids of the updated
Antimatroids mandatory - This method must be implemented. void deletedAntimatroids(Id notificationId, IdList antimatroidIds)
notificationId - the notification Id antimatroidIds - the Ids of the deleted
Antimatroids mandatory - This method must be implemented. void changedChildOfAntimatroids(Id notificationId, IdList antimatroidIds)
notificationId - the notification Id antimatroidIds - the Ids of the
Antimatroids whose children have changedmandatory - This method must be implemented.