Package com.day.cq.wcm.api.reference

Examples of com.day.cq.wcm.api.reference.Reference


        Design design = designer.getDesign(page);
        if (design == null) {
            return Collections.emptyList();
        }

        return Collections.singletonList(new Reference(TYPE_DESIGN_PAGE,
                String.format("%s (Design)", design.getId()),
                design.getContentResource(),
                getLastModified(design)));
    }
View Full Code Here


            }
        }
    }

    private Reference getReference(Page page) {
        return new Reference(TYPE_PAGE,
                String.format("%s (Page)", page.getName()),
                page.getContentResource(),
                getLastModifiedTimeOfResource(page));
    }
View Full Code Here

TOP

Related Classes of com.day.cq.wcm.api.reference.Reference

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.