KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > terracotta > session > MockSessionId


1 /*
2  * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

5 package com.terracotta.session;
6
7 import com.tc.exception.ImplementMe;
8 import com.terracotta.session.util.Lock;
9
10 public class MockSessionId implements SessionId {
11
12   public void commitLock() {
13     throw new ImplementMe();
14   }
15
16   public String JavaDoc getExternalId() {
17     throw new ImplementMe();
18   }
19
20   public String JavaDoc getKey() {
21     throw new ImplementMe();
22   }
23
24   public Lock getLock() {
25     throw new ImplementMe();
26   }
27
28   public String JavaDoc getRequestedId() {
29     throw new ImplementMe();
30   }
31
32   public void getWriteLock() {
33     throw new ImplementMe();
34   }
35
36   public boolean isNew() {
37     throw new ImplementMe();
38   }
39
40   public boolean isServerHop() {
41     throw new ImplementMe();
42   }
43
44   public boolean tryWriteLock() {
45     throw new ImplementMe();
46   }
47
48 }
49
Popular Tags