Package org.olat.core.gui.control.generic.portal

Examples of org.olat.core.gui.control.generic.portal.PortalImpl


          cleanedRow.add(portletName);         
        }
        // discard invalid portlet names
      }
    }
    return new PortalImpl(this.name, ureq, wContr, cleanedUserColumns, configurations);
  }
View Full Code Here


   * @param ureq
   * @return PortalImpl
   */
  public static PortalImpl createPortal(String portalName, WindowControl wControl, UserRequest ureq) {   
    // create portlet controller
    PortalImpl p = (PortalImpl) portals.get(portalName);
    if (p == null) {
      Tracing.logWarn("Could not create portal with name::" + portalName, PortalFactory.class);
      return null;
    }
    return p.createInstance(wControl, ureq);
  }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.generic.portal.PortalImpl

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.