mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
24.41.2015 e7cac727a9231ff3602e61a4ea678e0463eb0e39
opendj-server-legacy/src/main/java/org/opends/server/api/EntryCache.java
@@ -79,13 +79,17 @@
{
  private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
  // The set of filters that define the entries that should be
  // excluded from the cache.
  /**
   * The set of filters that define the entries that should be
   * excluded from the cache.
   */
  private Set<SearchFilter> excludeFilters =
       new HashSet<SearchFilter>(0);
  // The set of filters that define the entries that should be
  // included in the cache.
  /**
   * The set of filters that define the entries that should be
   * included in the cache.
   */
  private Set<SearchFilter> includeFilters =
       new HashSet<SearchFilter>(0);
@@ -99,7 +103,7 @@
   */
  protected AtomicLong cacheMisses = new AtomicLong(0);
  // The monitor associated with this entry cache.
  /** The monitor associated with this entry cache. */
  private EntryCacheMonitorProvider entryCacheMonitor;