Package com.day.cq.wcm.api

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


     */
    private Page createPage(ResourceResolver resourceResolver, String folderPath, String nodeName, String templatePath,
                            String title) throws RepositoryException, WCMException {

        final PageManager pageManager = resourceResolver.adaptTo(PageManager.class);
        final Template template = pageManager.getTemplate(templatePath);

        if (template != null) {
            // A template is defined so use that
            return pageManager.create(folderPath, nodeName, templatePath, title, false);
        } else {
View Full Code Here

TOP

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

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.