public interface OublietteReceiver extends OsidReceiver
The oubliette receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Oubliette
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfOubliettes(Id notificationId,
IdList oublietteIds)
The callback for notifications of changes to children of oubliette
hierarchy nodes.
|
void |
changedOubliettes(Id notificationId,
IdList oublietteIds)
The callback for notification of updated oubliette.
|
void |
deletedOubliettes(Id notificationId,
IdList oublietteIds)
The callback for notification of deleted oubliettes.
|
void |
newOubliettes(Id notificationId,
IdList oublietteIds)
The callback for notifications of new oubliettes.
|
down, upvoid newOubliettes(Id notificationId, IdList oublietteIds)
notificationId - the notification Id oublietteIds - the Ids of the new
Oubliettes mandatory - This method must be implemented. void changedOubliettes(Id notificationId, IdList oublietteIds)
notificationId - the notification Id oublietteIds - the Ids of the updated
Oubliettes mandatory - This method must be implemented. void deletedOubliettes(Id notificationId, IdList oublietteIds)
notificationId - the notification Id oublietteIds - the Ids of the deleted
Oubliettes mandatory - This method must be implemented. void changedChildOfOubliettes(Id notificationId, IdList oublietteIds)
notificationId - the notification Id oublietteIds - the Ids of the Oubliettes
whose children have changedmandatory - This method must be implemented.