Package org.apache.lenya.cms.publication.util

Examples of org.apache.lenya.cms.publication.util.DocumentHelper


    /**
     * @see org.apache.lenya.cms.cocoon.flow.FlowHelper#getDocumentHelper(org.apache.cocoon.components.flow.javascript.fom.FOM_Cocoon)
     */
    public DocumentHelper getDocumentHelper(FOM_Cocoon cocoon) {
        return new DocumentHelper(this.manager, cocoon.getObjectModel());
    }
View Full Code Here


        final String area = attributes[0];
        final String documentId = attributes[1];
        final String language = attributes[2];

        try {
            DocumentHelper helper = new DocumentHelper(this.manager, objectModel);
            url = helper.getDocumentUrl(documentId, area, language);
        } catch (Exception e) {
            throw new ConfigurationException("Resolving attribute [" + name + "] failed: ", e);
        }

        return url;
View Full Code Here

    /**
     * @see org.apache.lenya.cms.cocoon.flow.FlowHelper#getDocumentHelper(org.apache.cocoon.components.flow.javascript.fom.FOM_Cocoon)
     */
    public DocumentHelper getDocumentHelper(FOM_Cocoon cocoon) {
        return new DocumentHelper(this.manager, cocoon.getObjectModel());
    }
View Full Code Here

        final String area = attributes[0];
        final String uuid = attributes[1];
        final String language = attributes[2];

        try {
            DocumentHelper helper = new DocumentHelper(this.manager, objectModel);
            url = helper.getDocumentUrl(uuid, area, language);
        } catch (Exception e) {
            throw new ConfigurationException("Resolving attribute [" + name + "] failed: ", e);
        }

        return url;
View Full Code Here

TOP

Related Classes of org.apache.lenya.cms.publication.util.DocumentHelper

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.