/**
  * Set the cache size to be used by this content manager. This immediately removes the oldest
  * content by last modified time until the new cache size is not exceeded.
  *
  * @param maxCacheSize the new max cache size.
  */
 public void setContentCacheSize(final long maxCacheSize) {
   localContentCache.setMaxCacheSize(maxCacheSize);
 }