Searched refs:cacheProp (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEntityContainer.java209 CacheProperties cacheProp = null; field in class:EntityContainer
402 int confMaxCacheSize = cacheProp.maxCacheSize;
459 maxSize = (cacheProp.maxCacheSize <= 0)
461 : cacheProp.maxCacheSize;
2464 this.cacheProp = null;
2615 cacheProp = new CacheProperties();
2617 int cacheSize = cacheProp.maxCacheSize;
2618 int numberOfVictimsToSelect = cacheProp.numberOfVictimsToSelect;
2620 idleTimeout = cacheProp.cacheIdleTimeoutInSeconds * 1000L;
H A DReadOnlyBeanContainer.java162 long idleTimeoutInMillis = (cacheProp.cacheIdleTimeoutInSeconds <= 0) ?
163 -1 : (cacheProp.cacheIdleTimeoutInSeconds * 1000L);
165 if( (cacheProp.maxCacheSize <= 0) && (idleTimeoutInMillis <= 0) ) {
167 robCache.init(DEFAULT_CACHE_SIZE, cacheProp.numberOfVictimsToSelect,
170 int cacheSize = (cacheProp.maxCacheSize <= 0) ?
171 DEFAULT_CACHE_SIZE : cacheProp.maxCacheSize;
175 cacheProp.numberOfVictimsToSelect,
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DWebContainer.java1194 Property cacheProp = vsBean.getProperty("setCacheControl");
1195 if (cacheProp != null) {
1196 vs.configureCacheControl(cacheProp.getValue());

Completed in 35 milliseconds