{@link StateScope} that stores states at user level.
States scoped to 'user' are stored at {@link HttpSession} and are shared by all the pages of the same user.
280281282283284285286
return scopeManager; } @Bean public UserSessionStateScope userSessionStateScope() { return new UserSessionStateScope(); }