Package org.exoplatform.webui.application

Examples of org.exoplatform.webui.application.ConfigurationManager


            log.debug("Application " + key + " not found");
        }

        //
        if (uiapp == null) {
            ConfigurationManager cmanager = app.getConfigurationManager();
            String uirootClass = cmanager.getApplication().getUIRootComponent().trim();
            Class<? extends UIApplication> type = (Class<UIApplication>) Thread.currentThread().getContextClassLoader()
                    .loadClass(uirootClass);
            uiapp = app.createUIComponent(type, null, null, context);
        }
View Full Code Here


            log.debug("Application " + APPLICATION_KEY + " not found");
        }

        //
        if (uiapp == null) {
            ConfigurationManager cmanager = app.getConfigurationManager();
            String uirootClass = cmanager.getApplication().getUIRootComponent().trim();
            Class<? extends UIApplication> type = (Class<UIApplication>) Thread.currentThread().getContextClassLoader()
                    .loadClass(uirootClass);
            uiapp = app.createUIComponent(type, null, null, context);
        }
View Full Code Here

    @Override
    public Component read(ComponentHandle internal) throws Exception {
        WebuiRequestContext context = WebuiRequestContext.getCurrentInstance();
        WebuiApplication webuiApp = (WebuiApplication) context.getApplication();
        ConfigurationManager configMgr = webuiApp.getConfigurationManager();
        return configMgr.getComponentConfig(internal);
    }
View Full Code Here

      }

      //
      if (uiapp == null)
      {
         ConfigurationManager cmanager = app.getConfigurationManager();
         String uirootClass = cmanager.getApplication().getUIRootComponent();
         Class<? extends UIApplication> type = (Class<UIApplication>) Thread.currentThread().getContextClassLoader().loadClass(uirootClass);
         uiapp = app.createUIComponent(type, null, null, context);
      }

      //
View Full Code Here

   @Override
   public Component read(ComponentHandle internal) throws Exception
   {
      WebuiRequestContext context = WebuiRequestContext.getCurrentInstance();
      WebuiApplication webuiApp = (WebuiApplication)context.getApplication();
      ConfigurationManager configMgr = webuiApp.getConfigurationManager();
      return configMgr.getComponentConfig(internal);
   }
View Full Code Here

TOP

Related Classes of org.exoplatform.webui.application.ConfigurationManager

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.