CQ 5.6.1 - PageEvent, Filter for modifications
Hi everyone,
we use an EventHandler to listen for Events from type PageEvent and we want to use a specific filter. The problem is that all information are saved inside an array (called: modifications). Here is a code example:
@Component(immediate = true) @Service(value = EventHandler.class) @Properties({ @Property(name = EventConstants.EVENT_TOPIC, value = PageEvent.EVENT_TOPIC), @Property(name = EventConstants.EVENT_FILTER, value = "(modifications=*)") })Is there an opportunity to filter specific attributes from "modifications", like "path" or "type"? We already tried LDAP filters like: "modifications.path=...", "modifications/path=...", etc.
Are there any suggestions?