Examples of JsfPropertyGroup


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

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

      _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

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

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

    return _jsf;
  }
View Full Code Here

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

      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

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

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

    return _jsfPropertyGroup;
  }
View Full Code Here

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

  /**
   * 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

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

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

    return _jsfPropertyGroup;
  }
View Full Code Here

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

  /**
   * 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

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

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

    return _jsf;
  }
View Full Code Here

Examples of com.caucho.jsf.cfg.JsfPropertyGroup

      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
Copyright © 2018 www.massapi.com. 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.