| java.lang.Object org.shiftone.cache.CacheProxy
CacheProxy | public class CacheProxy (Code) | | Static class CacheProxy can be used to create cache proxy objects of
instances of objects that implement an interface.
Thing thing = new ThingImpl();
Thing cachedThing =
(Thing)CacheProxy.newProxyInstance(thing, Thing.class, cache);
cachedThing.doThing();
author: Jeff Drost version: $Revision: 1.6 $ |
|
|