public interface LogEntryReceiver extends OsidReceiver
The log entry receiver is the consumer supplied interface for receiving notifications pertaining to new log entries.
| Modifier and Type | Method and Description |
|---|---|
void |
changedLogEntries(Id notificationId,
IdList entryIds)
The callback for notifications of changed log entries.
|
void |
deletedLogEntries(Id notificationId,
IdList entryIds)
the callback for notification of deleted log entries.
|
void |
newLogEntries(Id notificationId,
IdList entryIds)
The callback for notifications of new log entries.
|
down, upvoid newLogEntries(Id notificationId, IdList entryIds)
notificationId - the notification Id entryIds - the Ids of the new entriesmandatory - This method must be implemented. void changedLogEntries(Id notificationId, IdList entryIds)
notificationId - the notification Id entryIds - the Ids of the changed entriesmandatory - This method must be implemented.