1 23 24 package com.sun.jdo.spi.persistence.support.sqlstore; 25 26 32 public interface VersionConsistencyCache { 33 42 public StateManager put(Class pcType, Object oid, StateManager sm); 43 44 49 public StateManager get(Class pcType, Object oid); 50 51 57 public StateManager remove(Class pcType, Object oid); 58 59 64 public void addPCType(Class pcType); 65 66 70 public void removePCType(Class pcType); 71 } 72 | Popular Tags |