01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.session;
05:
06: public class NullSessionManager implements SessionManager,
07: SessionProvider {
08:
09: public SessionID getSessionID() {
10: return SessionID.NULL_ID;
11: }
12:
13: public SessionID nextSessionID() {
14: return SessionID.NULL_ID;
15: }
16:
17: public void newSession() {
18: return;
19: }
20:
21: public boolean isCurrentSession(SessionID sessionID) {
22: return true;
23: }
24:
25: }
|