Class AuditEventLogger
- java.lang.Object
-
- org.nuxeo.ecm.platform.audit.listener.AuditEventLogger
-
- All Implemented Interfaces:
PostCommitEventListener
,PostCommitFilteringEventListener
@Deprecated public class AuditEventLogger extends Object implements PostCommitFilteringEventListener
Deprecated.since 10.10, audit event is now handled withStreamAuditEventListener
PostCommit async listener that pushesEventBundle
into the Audit log.- Author:
- tiry
-
-
Constructor Summary
Constructors Constructor Description AuditEventLogger()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
acceptEvent(Event event)
Deprecated.Checks if this event is worth passing to the asynchronousPostCommitEventListener.handleEvent(org.nuxeo.ecm.core.event.EventBundle)
.void
handleEvent(EventBundle events)
Deprecated.Handles the set of events that were raised during the life of an user operation.
-
-
-
Method Detail
-
acceptEvent
public boolean acceptEvent(Event event)
Deprecated.Description copied from interface:PostCommitFilteringEventListener
Checks if this event is worth passing to the asynchronousPostCommitEventListener.handleEvent(org.nuxeo.ecm.core.event.EventBundle)
.Note that the event's documents are usually disconnected into
ShallowDocumentModel
instances, which means that this method may not be able to get to all the information it would get from a standard DocumentModel implementation. If there is not enough information in the ShallowDocumentModel to decide whether this event is of interest, then this method should accept it an let the actual logic done inPostCommitEventListener.handleEvent(org.nuxeo.ecm.core.event.EventBundle)
do the final filtering.- Specified by:
acceptEvent
in interfacePostCommitFilteringEventListener
- Parameters:
event
- the event- Returns:
true
to accept it, orfalse
to ignore it
-
handleEvent
public void handleEvent(EventBundle events)
Deprecated.Description copied from interface:PostCommitEventListener
Handles the set of events that were raised during the life of an user operation.The events are fired as a
BundleEvent
after the transaction is committed.- Specified by:
handleEvent
in interfacePostCommitEventListener
- Parameters:
events
- the events to handle
-
-