Package org.apache.jetspeed.om.page.psml

Examples of org.apache.jetspeed.om.page.psml.ContentPageImpl


    /* (non-Javadoc)
     * @see org.apache.jetspeed.page.PageManager#getContentPage(java.lang.String)
     */
    public ContentPage getContentPage(String path) throws PageNotFoundException, NodeException
    {
        return new ContentPageImpl(getPage(path));
    }
View Full Code Here


    /* (non-Javadoc)
     * @see org.apache.jetspeed.page.PageManager#getContentPage(java.lang.String)
     */
    public ContentPage getContentPage(String path) throws PageNotFoundException, NodeException
    {       
        return new ContentPageImpl(getPage(path));
    }
View Full Code Here

            {
                throw new NodeNotFoundException("Unable to profile request: " + request.getPath());
            }
           
            // set request page and profile locator
            request.setPage(new ContentPageImpl(profiledPageContext.getPage()));
            request.setProfileLocators(profiledPageContext.getLocators());

            // return profiled page context in request attribute
            HttpServletRequest httpRequest = request.getRequest();
            httpRequest.setAttribute(PROFILED_PAGE_CONTEXT_ATTR_KEY, profiledPageContext);
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.om.page.psml.ContentPageImpl

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.