Package org.vosao.business

Examples of org.vosao.business.SetupBean


        HttpServletResponse httpResponse = (HttpServletResponse)response;
        String url = httpRequest.getServletPath();
        if (url.equals(SETUP_URL)) {
            ConfigEntity config = getDao().getConfigDao().getConfig();
            if (config == null || config.getVersion() == null) {
              SetupBean setupBean = getBusiness().getSetupBean();
              setupBean.clear();
              setupBean.setup();
              logger.info("Setup was successfully completed.");
              setupBean.loadDefaultSite();
            }
          httpResponse.sendRedirect("/");
          return;
        }
        //startProfile();
View Full Code Here

TOP

Related Classes of org.vosao.business.SetupBean

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.