Package com.caucho.jsf.cfg

Examples of com.caucho.jsf.cfg.JsfPropertyGroup


    setViewHandler(new JspViewHandler());

    SessionStateManager stateManager = new SessionStateManager();
   
    JsfPropertyGroup jsfPropertyGroup = webApp.getJsf();

    if (jsfPropertyGroup != null)
      stateManager.setStateSerializationMethod(
        jsfPropertyGroup.getStateSerializationMethod());

    setStateManager(stateManager);

   
    appContext.addELResolver(new FacesJspELResolver(this));
View Full Code Here


      _viewHandler = new JspViewHandler();

    if (_stateManager == null) {
      _stateManager = new SessionStateManager();

      JsfPropertyGroup jsfPropertyGroup = WebApp.getLocal().getJsf();

      if (jsfPropertyGroup != null)
        ((SessionStateManager) _stateManager).setStateSerializationMethod(
          jsfPropertyGroup.getStateSerializationMethod());
    }
  }
View Full Code Here

   * jsf configuration
   */
  public JsfPropertyGroup createJsf()
  {
    if (_jsf == null)
      _jsf = new JsfPropertyGroup();

    return _jsf;
  }
View Full Code Here

      JspPropertyGroup jsp = app.getJsp();
      if (jsp != null)
        _tldFileSet = jsp.getTldFileSet();


      JsfPropertyGroup jsf = app.getJsf();
      if (jsf != null)
        _isFastJsf = jsf.isFastJsf();
    }

    // JSF has a global listener hidden in one of the *.tld which
    // requires Resin to search all the JSPs.
    initGlobal();
View Full Code Here

  /**
   * Sets JsfPropertyGropu
   */
  public JsfPropertyGroup createJsf() {
    if (_jsfPropertyGroup == null)
      _jsfPropertyGroup = new JsfPropertyGroup();

    return _jsfPropertyGroup;
  }
View Full Code Here

  /**
   * Returns true if fast-jsf is enabled.
   */
  public boolean isFastJsf()
  {
    JsfPropertyGroup jsf = getJsfPropertyGroup();

    if (jsf == null)
      return false;
    else
      return jsf.isFastJsf();
  }
View Full Code Here

  /**
   * Sets JsfPropertyGropu
   */
  public JsfPropertyGroup createJsf() {
    if (_jsfPropertyGroup == null)
      _jsfPropertyGroup = new JsfPropertyGroup();

    return _jsfPropertyGroup;
  }
View Full Code Here

  /**
   * Returns true if fast-jsf is enabled.
   */
  public boolean isFastJsf()
  {
    JsfPropertyGroup jsf = getJsfPropertyGroup();

    if (jsf == null)
      return false;
    else
      return jsf.isFastJsf();
  }
View Full Code Here

   * jsf configuration
   */
  public JsfPropertyGroup createJsf()
  {
    if (_jsf == null)
      _jsf = new JsfPropertyGroup();

    return _jsf;
  }
View Full Code Here

      JspPropertyGroup jsp = app.getJsp();
      if (jsp != null)
        _tldFileSet = jsp.getTldFileSet();


      JsfPropertyGroup jsf = app.getJsf();
      if (jsf != null)
        _isFastJsf = jsf.isFastJsf();
    }

    // JSF has a global listener hidden in one of the *.tld which
    // requires Resin to search all the JSPs.
    initGlobal();
View Full Code Here

TOP

Related Classes of com.caucho.jsf.cfg.JsfPropertyGroup

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.