Package org.hdiv.state.scope

Examples of org.hdiv.state.scope.StateScopeManager


    assertEquals(CsrfRequestDataValueProcessor.class, inner.getClass());
  }

  public void testStateScopeManager() {

    StateScopeManager scopeManager = this.context.getBean(StateScopeManager.class);
    assertNotNull(scopeManager);

    StateScope appScope = scopeManager.getStateScopeByName("app");
    StateScope sessionScope = scopeManager.getStateScopeByName("user-session");

    assertNotNull(appScope);
    assertNotNull(sessionScope);
  }
View Full Code Here

TOP

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

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.