Package org.nuxeo.ecm.platform.ui.web.rest.api

Examples of org.nuxeo.ecm.platform.ui.web.rest.api.URLPolicyService


    public String getDocumentURL(String repositoryName, String documentId) {
        DocumentLocation docLoc = new DocumentLocationImpl(repositoryName,
                new IdRef(documentId));
        DocumentView docView = new DocumentViewImpl(docLoc,
                "view_social_document");
        URLPolicyService urlPolicyService = Framework.getLocalService(URLPolicyService.class);
        return VirtualHostHelper.getContextPathProperty()
                + "/"
                + urlPolicyService.getUrlFromDocumentView("collaboration",
                        docView, null);
    }
View Full Code Here

TOP

Related Classes of org.nuxeo.ecm.platform.ui.web.rest.api.URLPolicyService

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.