| permissionsCacheSize = PropertyUtil.getServiceInt( tc,
Property.LANG_PERMISSIONS_CACHE_SIZE,
40, /* min value */
Integer.MAX_VALUE,
permissionsCacheSize /* value from boot time. */);
permissionsCache = cf.newCacheManager( this,
"PermissionsCache",
permissionsCacheSize,
permissionsCacheSize);
}
return permissionsCache;
|