From 272f803e2dbe9da48152ea61814e43e387146f8b Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Mon, 17 Mar 2008 15:41:50 +0000
Subject: [PATCH] These changes remove the temporary file limitation from import-ldif. Several other changes were made also:
---
opends/src/server/org/opends/server/backends/jeb/EntryContainer.java | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/backends/jeb/EntryContainer.java b/opends/src/server/org/opends/server/backends/jeb/EntryContainer.java
index e885246..50aa260 100644
--- a/opends/src/server/org/opends/server/backends/jeb/EntryContainer.java
+++ b/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();
+ }
+
}
--
Gitblit v1.10.0