Hi there,
I would like register an EventListener to monitor changes under /hippo:configuration/hippo:users as in
<property name="nodeAddedEnabled" value="true"/>
<property name="nodeRemovedEnabled" value="true"/>
<property name="propertyAddedEnabled" value="true"/>
<property name="propertyChangedEnabled" value="true"/>
<property name="propertyRemovedEnabled" value="true"/>
<property name="absolutePath" value="/hippo:configuration/hippo:users"/>
<property name="deep" value="true"/>
<property name="eventListener">
<bean class="my.stuff.MyListener">
</bean>
</property>
</bean>
This does not trigger.
If I replace the absolutePath to be under /content/my/things then the Event is beeng fired as expected.
Isn’t it possible to monitor changes in the configuration ?