Package org.hdiv.state.scope

Examples of org.hdiv.state.scope.DefaultStateScopeManager


  @Bean
  public StateScopeManager stateScopeManager() {
    List<StateScope> stateScopes = new ArrayList<StateScope>();
    stateScopes.add(userSessionStateScope());
    stateScopes.add(appStateScope());
    DefaultStateScopeManager scopeManager = new DefaultStateScopeManager(stateScopes);
    return scopeManager;
  }
View Full Code Here

TOP

Related Classes of org.hdiv.state.scope.DefaultStateScopeManager

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.