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

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.