Package org.apache.cocoon.portal

Examples of org.apache.cocoon.portal.PortalManager


   * @see org.apache.cocoon.generation.Generator#generate()
   */
  public void generate()
    throws IOException, SAXException, ProcessingException {
       
        PortalManager pm = null;
        try {
            pm = (PortalManager)this.manager.lookup(PortalManager.ROLE);
            pm.process();
            pm.showPortal(this.xmlConsumer, this.parameters);
        } catch (ServiceException ce) {
            throw new ProcessingException("Unable to lookup portal manager.", ce);
        } finally {
            this.manager.release(pm);
        }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.portal.PortalManager

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.