01: /*
02: * User: Michael Rettig
03: * Date: Aug 12, 2002
04: * Time: 4:13:25 PM
05: */
06: package net.sourceforge.jaxor.impl;
07:
08: import net.sourceforge.jaxor.PrimaryKeySet;
09: import net.sourceforge.jaxor.api.EntityInterface;
10: import net.sourceforge.jaxor.api.InstanceCache;
11:
12: public class NullInstanceCacheImpl implements InstanceCache {
13:
14: public void remove(EntityInterface abstractEntity) {
15: }
16:
17: public EntityInterface updateCache(EntityInterface result) {
18: return result;
19: }
20:
21: public EntityInterface getFromCache(Class _implClass,
22: PrimaryKeySet pk) {
23: return null;
24: }
25:
26: public void clear() {
27: }
28: }
|