1 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 getExternalId() { 17 throw new ImplementMe(); 18 } 19 20 public String getKey() { 21 throw new ImplementMe(); 22 } 23 24 public Lock getLock() { 25 throw new ImplementMe(); 26 } 27 28 public String 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 |