/**
  * Remove local content from the cache.
  *
  * @param filePath the path to the content to remove.
  * @return true if file will be removed asyncronously, false if the file could not be removed.
  */
 public boolean removeLocal(final String filePath) {
   return localContentCache.removeFile(filePath);
 }