Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ISessionStore had the following changes:
String getSessionId(Request request);

...

-> String getSessionId(Request request, boolean create);
+ void onBeginRequest(Request request);
+ void onEndRequest(Request request);
+ PageMap createPageMap(String name, Session session);
By default, the creation of lasting sessions is deferred until actually needed. As long no lasting session is yet created and users are accessing stateless pages, a temporary session object is used for the current request.