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

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


      throw new AssertException("null value for portalList not allowed.");
    // check beans
    ExtensionManager extMgr = ExtensionManager.getInstance();
    try {
      for (Iterator iter = portalList.iterator(); iter.hasNext();) {
        Portal portal = (Portal) iter.next();
        portals.put(portal.getName(), portal);
        Tracing.logInfo("Adding portal from configuraton:: " + portal.getName(), PortalFactory.class);

        if (portal instanceof OLATExtension) {
          try {
            extMgr.deployExtension((OLATExtension)portal);
          } catch (IOException ioe) {
View Full Code Here

TOP

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

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.