/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/datastructure/ |
H A D | SynchronizedCache.java | 49 public class SynchronizedCache implements Cache { 50 private Cache cacheImpl; 76 public SynchronizedCache(Cache cacheImpl) {
|
H A D | Cache.java | 49 public interface Cache { interface
|
H A D | CacheFactory.java | 69 public static Cache getDataStructure(PoolInfo poolInfo, String className, 71 Cache stmtCacheStructure; 74 debug("Initializing LRU Cache Implementation"); 86 private static Cache initCustomCacheStructurePrivileged( 106 return (Cache) result; 113 private static Cache initializeCacheStructure(String className, 115 Cache ds; 120 ds = (Cache) constructor.newInstance(constructorParameters);
|
H A D | LRUCacheImpl.java | 58 public class LRUCacheImpl implements Cache { 100 //Cache hit 103 _logger.finest("Cache Hit"); 108 //Cache miss 110 _logger.finest("Cache Miss"); 206 * Cache object that has a key and an entry. This is used to put inside the
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/ |
H A D | EJBObjectCache.java | 43 import com.sun.appserv.util.cache.Cache; 52 extends Cache
|
H A D | Cache.java | 48 public interface Cache { interface
|
H A D | UnboundedEJBObjectCache.java | 43 import com.sun.appserv.util.cache.Cache;
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/taglibs/cache/ |
H A D | CacheContextListener.java | 43 import com.sun.appserv.util.cache.Cache; 76 Cache cache = null; 93 Cache cache = (Cache)context.getAttribute(Constants.JSPTAG_CACHE_KEY);
|
H A D | CacheRequestListener.java | 43 import com.sun.appserv.util.cache.Cache; 86 Cache cache = null; 110 Cache cache = (Cache) req.getAttribute(Constants.JSPTAG_CACHE_KEY);
|
H A D | CacheSessionListener.java | 43 import com.sun.appserv.util.cache.Cache; 86 Cache cache = null; 108 Cache cache = (Cache)session.getAttribute(Constants.JSPTAG_CACHE_KEY);
|
H A D | CacheUtil.java | 43 import com.sun.appserv.util.cache.Cache; 75 public static Cache getCache(PageContext pc, int scope) 77 return (Cache)pc.getAttribute(Constants.JSPTAG_CACHE_KEY, scope);
|
H A D | FlushTag.java | 43 import com.sun.appserv.util.cache.Cache; 98 Cache cache = CacheUtil.getCache(pageContext, _scope);
|
H A D | CacheTag.java | 43 import com.sun.appserv.util.cache.Cache; 113 private Cache _cache;
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/web/ |
H A D | CacheNode.java | 45 import com.sun.enterprise.deployment.runtime.web.Cache; 85 descriptor.setAttributeValue(Cache.MAX_ENTRIES, value); 89 descriptor.setAttributeValue(Cache.TIMEOUT_IN_SECONDS, value); 93 descriptor.setAttributeValue(Cache.ENABLED, value); 107 public Node writeDescriptor(Node parent, String nodeName, Cache descriptor) { 142 setAttribute(cache, RuntimeTagNames.MAX_ENTRIES, (String) descriptor.getAttributeValue(Cache.MAX_ENTRIES)); 143 setAttribute(cache, RuntimeTagNames.TIMEOUT_IN_SECONDS, (String) descriptor.getAttributeValue(Cache.TIMEOUT_IN_SECONDS)); 144 setAttribute(cache, RuntimeTagNames.ENABLED, (String) descriptor.getAttributeValue(Cache.ENABLED));
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/ |
H A D | CacheManager.java | 43 import com.sun.appserv.util.cache.Cache; 87 Cache defaultCache; 276 * @return the Cache implementation 279 public Cache createCache() throws Exception { 285 * @return the Cache implementation 288 public Cache createCache(int cacacity, String className) 296 Cache cacheImpl = (Cache)cacheClass.newInstance(); 314 public Cache getDefaultCache() {
|
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/web/runtime/ |
H A D | ASCache.java | 74 Cache cache = (descriptor.getSunDescriptor()).getCache(); 78 maxEntries = cache.getAttributeValue(Cache.MAX_ENTRIES); 79 timeout = cache.getAttributeValue(Cache.TIMEOUT_IN_SECONDS); 80 enabled = cache.getAttributeValue(Cache.ENABLED);
|
H A D | ASCacheHelperClass.java | 44 import com.sun.enterprise.deployment.runtime.web.Cache; 69 Cache cache = (descriptor.getSunDescriptor()).getCache();
|
H A D | ASCacheMapping.java | 47 import com.sun.enterprise.deployment.runtime.web.Cache; 71 //Cache cache = getCache(descriptor); 73 Cache cache = (descriptor.getSunDescriptor()).getCache(); 326 boolean validCacheHelperRef(String helperRef, Cache cache){ 352 public void testForKeyFields(Cache cache, int mapCount, Result result, ComponentNameConstructor compName)
|
H A D | ASCacheMappingFieldConstraint.java | 70 Cache cache = (descriptor.getSunDescriptor()).getCache();
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/web/ |
H A D | Cache.java | 50 public class Cache extends WebPropertyContainer class in inherits:WebPropertyContainer 61 public Cache() { method in class:Cache
|
H A D | SunWebApp.java | 61 static public final String CACHE = "Cache"; // NOI18N 409 public void setCache(Cache value) 415 public Cache getCache() 417 return (Cache)this.getValue(CACHE);
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/ |
H A D | Cache.java | 50 * Cache 53 public interface Cache { interface
|
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/ |
H A D | EntityManagerFactoryWrapper.java | 54 import javax.persistence.Cache; 137 public Cache getCache() {
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/ |
H A D | CacheModule.java | 88 Cache cacheConfig = bean.getCache(); 103 value = cacheConfig.getAttributeValue(Cache.ENABLED); 110 value = cacheConfig.getAttributeValue(Cache.MAX_ENTRIES); 121 value = cacheConfig.getAttributeValue(Cache.TIMEOUT_IN_SECONDS);
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/ |
H A D | CachingFilter.java | 43 import com.sun.appserv.util.cache.Cache; 74 Cache cache;
|