Package com.day.cq.wcm.api

Examples of com.day.cq.wcm.api.PageModification


        if (EventUtil.isLocal(event)) {
            final PageEvent pageEvent = PageEvent.fromEvent(event);
            if (pageEvent != null) {
                final Iterator<PageModification> i = pageEvent.getModifications();
                while (i.hasNext()) {
                    final PageModification pm = i.next();
                    log.debug("Page event occurred: {} on {}", pm.getType(), pm.getPath());
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.day.cq.wcm.api.PageModification

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.