public interface LogReceiver extends OsidReceiver
The log receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Log
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfLogs(Id notificationId,
IdList logIds)
The callback for notifications of changes to children of log hierarchy
nodes.
|
void |
changedLogs(Id notificationId,
IdList logIds)
The callback for notification of updated logs.
|
void |
deletedLogs(Id notificationId,
IdList logIds)
the callback for notification of deleted logs.
|
void |
newLogs(Id notificationId,
IdList logIds)
The callback for notifications of new logs.
|
down, upvoid newLogs(Id notificationId, IdList logIds)
notificationId - the notification Id logIds - the Ids of the new Logs mandatory - This method must be implemented. void changedLogs(Id notificationId, IdList logIds)
notificationId - the notification Id logIds - the Ids of the updated Logs
mandatory - This method must be implemented. void deletedLogs(Id notificationId, IdList logIds)
notificationId - the notification Id logIds - the Ids of the registered Logs
mandatory - This method must be implemented. void changedChildOfLogs(Id notificationId, IdList logIds)
notificationId - the notification Id logIds - the Ids of the Logs whose
children have changedmandatory - This method must be implemented.