public class TemplateTypeBindingListener extends Object implements PostCommitFilteringEventListener
Modifier and Type | Field and Description |
---|---|
protected static org.apache.commons.logging.Log |
log |
Constructor and Description |
---|
TemplateTypeBindingListener() |
Modifier and Type | Method and Description |
---|---|
boolean |
acceptEvent(Event event)
Checks if this event is worth passing to the asynchronous
PostCommitEventListener.handleEvent(org.nuxeo.ecm.core.event.EventBundle) . |
void |
handleEvent(EventBundle eventBundle)
Handles the set of events that were raised during the life of an user operation.
|
protected static org.apache.commons.logging.Log log
public TemplateTypeBindingListener()
public boolean acceptEvent(Event event)
PostCommitFilteringEventListener
PostCommitEventListener.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 in PostCommitEventListener.handleEvent(org.nuxeo.ecm.core.event.EventBundle)
do the final filtering.
acceptEvent
in interface PostCommitFilteringEventListener
event
- the eventtrue
to accept it, or false
to ignore itpublic void handleEvent(EventBundle eventBundle)
PostCommitEventListener
The events are fired as a BundleEvent
after the transaction is committed.
handleEvent
in interface PostCommitEventListener
eventBundle
- the events to handleCopyright © 2015 Nuxeo SA. All rights reserved.