Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added description on how to access the custom session

...

Code Block
@Override
public Session newSession(Request request, Response response) {
   return new MySession(request);
}

retreive the Session by

Code Block

MySession session = (MySession )WebSession.get();

Custom RequestCycles

Describe how to use custom request cycles.