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

dugan
17.41.2008 272f803e2dbe9da48152ea61814e43e387146f8b
opends/src/server/org/opends/server/backends/jeb/EntryContainer.java
@@ -667,6 +667,16 @@
    return attrIndexMap.get(attrType);
  }
  /**
   * Return attribute index map.
   *
   * @return The attribute index map.
   */
  public Map<AttributeType, AttributeIndex> getAttributeIndexMap() {
    return attrIndexMap;
  }
  /**
   * Look for an VLV index for the given index name.
   *
@@ -4657,4 +4667,20 @@
    }
    return matchedDN;
  }
  /**
   * Get the exclusive lock.
   *
   */
  public void lock() {
    exclusiveLock.lock();
  }
  /**
   * Unlock the exclusive lock.
   */
  public void unlock() {
    exclusiveLock.unlock();
  }
}