this.sessionTracker.expireAfter(seconds);
}
public void run(WebServer server) throws IOException {
// Track sessions using a cookie strategy and an in-memory session pool
sessionTracker = new CookieSessionTracker(new SessionPool(new SecureIdentifierPolicy(), clock));
server.add(sessionTracker)
.start(new DynamicRoutes() {{
map("/").to(new Application() {
public void handle(Request request, Response response) throws Exception {
Session session = Session.get(request);