1 24 package org.objectweb.speedo.usercache.api; 25 26 import java.util.Collection ; 27 28 35 public interface UserCacheManager { 36 37 42 UserCache getUserCache(int cacheId); 43 44 51 UserCache getUserCache(Collection fieldNames); 52 53 57 Collection getActiveUserCache(); 58 59 67 void userCacheEntryUnbound(Object oid); 68 69 74 boolean activeUserCache(String cacheName); 75 } 76 | Popular Tags |