Component org.nuxeo.ecm.platform.notification.listener
In bundle org.nuxeo.ecm.platform.notification
Resolution Order
427
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.notification.listener" version="1.0.0">
<extension target="org.nuxeo.ecm.core.event.EventServiceComponent" point="listener">
<documentation>
Remove notification subscriptions from document when it is checked in.
</documentation>
<listener name="notificationCheckedInListener" async="false" postCommit="false"
class="org.nuxeo.ecm.platform.ec.notification.NotificationCheckedInListener" priority="-30">
<event>documentCheckedIn</event>
</listener>
<documentation>
Copy relations from the source document to the newly published proxy.
</documentation>
<listener name="proxySubscriptionPropagationListener" async="false" postCommit="false"
class="org.nuxeo.ecm.platform.ec.notification.ProxySubscriptionPropagationListener" priority="-20">
<event>documentProxyPublished</event>
</listener>
<documentation>
Then the notifications to subscribed users.
</documentation>
<listener name="notificationListener" async="true" postCommit="true"
class="org.nuxeo.ecm.platform.ec.notification.NotificationEventListener" priority="120">
</listener>
</extension>
</component>