public interface LogEntryReceiver extends OsidReceiver
The log entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted log entries.
Modifier and Type | Method and Description |
---|---|
void |
changedLogEntries(IdList logEntryIds)
The callback for notification of updated log entries.
|
void |
deletedLogEntries(IdList logEntryIds)
The callback for notification of deleted log entries.
|
void |
newLogEntries(IdList logEntryIds)
The callback for notifications of new log entries.
|
down, up
void newLogEntries(IdList logEntryIds)
logEntryIds
- the Ids
of the new
LogEntries
mandatory
- This method must be implemented. void changedLogEntries(IdList logEntryIds)
logEntryIds
- the Ids
of the updated
LogEntries
mandatory
- This method must be implemented. void deletedLogEntries(IdList logEntryIds)
logEntryIds
- the Ids
of the deleted
LogEntries
mandatory
- This method must be implemented.