Package org.apache.cocoon.portal.layout.aspect

Examples of org.apache.cocoon.portal.layout.aspect.CompositeLayoutStatus


                        PortalService service,
                        ContentHandler handler)
    throws SAXException {
        if (layout instanceof CompositeLayout) {

            CompositeLayoutStatus status = (CompositeLayoutStatus)this.getStatus( CompositeLayoutStatus.class, ProfileManager.REQUEST_STATUS, layout.getId());
            if ( status != null && status.getMaxpageLayout() != null) {
                // TODO - implement this
            }
            context.invokeNext( layout, service, handler );
        } else {
            throw new SAXException("Expecting composite layout, received: " + layout);
View Full Code Here

TOP

Related Classes of org.apache.cocoon.portal.layout.aspect.CompositeLayoutStatus

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.