Package org.apache.jackrabbit.oak.plugins.observation.filter

Examples of org.apache.jackrabbit.oak.plugins.observation.filter.EventFilter


                List<Iterator<Event>> eventQueues = Lists.newArrayList();
                for (FilterProvider provider : providers) {
                    // FIXME don't rely on toString for session id
                    if (provider.includeCommit(contentSession.toString(), info)) {
                        String basePath = provider.getPath();
                        EventFilter userFilter = provider.getFilter(previousRoot, root);
                        EventFilter acFilter = new ACFilter(previousRoot, root, permissionProvider, basePath);
                        EventQueue events = new EventQueue(
                                namePathMapper, info, previousRoot, root, basePath,
                                Filters.all(userFilter, acFilter));
                        eventQueues.add(events);
                    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.observation.filter.EventFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.