169170171172173174175176177178179180181
public void run() { while (!shouldStopWatching) { try { HttpSessionStore store = getHttpSessionStore(); if (store != null) { store.destroyInactiveSessions(); } Thread.sleep(5000); } catch (InterruptedException e) { return;
173174175176177178179180181182183184185
174175176177178179180181182183184185186