Versions Compared

Key

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

...

Code Block
public final class MyApplication extends WebApplication {
...
    	@Override
    	public final WebSessionSession newSession(Request request, Response response) {
        		return new MySession(request);
    	}
...
}

In your WebPage you can get/set your object:

...