public CachedListInterceptor(PojoCacheImpl cache, Fqn fqn, Class clazz, List obj)
{
super(cache, fqn);
methodMap_ = CollectionInterceptorUtil.getMethodMap(clazz);
cacheImpl_ = new CachedListImpl(cache, this);
inMemImpl_ = obj; // lazy initialization here.
current_ = cacheImpl_;
}