01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.terracotta.session;
06:
07: import com.tc.exception.ImplementMe;
08:
09: public class MockSessionId implements SessionId {
10:
11: public void commitLock() {
12: throw new ImplementMe();
13: }
14:
15: public String getExternalId() {
16: throw new ImplementMe();
17: }
18:
19: public String getKey() {
20: throw new ImplementMe();
21: }
22:
23: public String getRequestedId() {
24: throw new ImplementMe();
25: }
26:
27: public void getWriteLock() {
28: throw new ImplementMe();
29: }
30:
31: public boolean isNew() {
32: throw new ImplementMe();
33: }
34:
35: public boolean isServerHop() {
36: throw new ImplementMe();
37: }
38:
39: public boolean tryWriteLock() {
40: throw new ImplementMe();
41: }
42:
43: }
|