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

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


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

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

TOP

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

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.