Hi There,
Does anyone know why this is not triggered, i want to get the removed event under this node /conf.
@component(
service = EventHandler.class,
immediate = true,
property = {
EventConstants.EVENT_TOPIC + "=" + TestEventHandler.EVENT_TOPIC,
EventConstants.EVENT_FILTER + "=(path=/conf/*)"
}
)
@Slf4j
public class TestEventHandler implements EventHandler {
public static final String EVENT_TOPIC = "org/apache/sling/api/resource/Resource/REMOVED";
........
-