Package org.jboss.cache.pojo.interceptors.dynamic

Examples of org.jboss.cache.pojo.interceptors.dynamic.CachedListInterceptor


      return CollectionInterceptorUtil.createProxy(clazz, new CachedMapInterceptor(cache, fqn, clazz, obj));
   }

   public static ClassProxy createListProxy(PojoCacheImpl cache, Fqn fqn, Class clazz, List obj) throws Exception
   {
      return CollectionInterceptorUtil.createProxy(clazz, new CachedListInterceptor(cache, fqn, clazz, obj));
   }
View Full Code Here

TOP

Related Classes of org.jboss.cache.pojo.interceptors.dynamic.CachedListInterceptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.