1 21 package oracle.toplink.essentials.internal.identitymaps; 23 24 import java.util.*; 25 26 35 public class LinkedCacheKey extends CacheKey { 36 37 38 protected LinkedCacheKey previous; 39 40 41 protected LinkedCacheKey next; 42 43 48 public LinkedCacheKey(Vector primaryKey, Object object, Object writeLockValue, long readTime) { 49 super(primaryKey, object, writeLockValue, readTime); 50 } 51 52 public LinkedCacheKey getNext() { 53 return next; 54 } 55 56 public LinkedCacheKey getPrevious() { 57 return previous; 58 } 59 60 public void setNext(LinkedCacheKey next) { 61 this.next = next; 62 } 63 64 public void setPrevious(LinkedCacheKey previous) { 65 this.previous = previous; 66 } 67 } 68 | Popular Tags |