From 83dd61651cb5d73c1a15dfcb7d217c0f272722d2 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Tue, 03 Oct 2006 19:09:36 +0000
Subject: [PATCH] Refactoring of the JEB backend to simplify the container and entryContainer abstraction. This also elimates exposing the JE interface to backendImpl by creating a new RootContainer class. It provides a higher-level interface to access raw data in JE from anywhere in the server (ie. unit tests). 

---
 opends/src/server/org/opends/server/backends/jeb/ImportContext.java |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/opends/src/server/org/opends/server/backends/jeb/ImportContext.java b/opends/src/server/org/opends/server/backends/jeb/ImportContext.java
index 1f3522c..5a181cf 100644
--- a/opends/src/server/org/opends/server/backends/jeb/ImportContext.java
+++ b/opends/src/server/org/opends/server/backends/jeb/ImportContext.java
@@ -41,7 +41,7 @@
 public class ImportContext
 {
   /**
-   * The name of the container for the destination base DN.
+   * The name of the entryContainer for the destination base DN.
    */
   private String containerName;
 
@@ -66,7 +66,7 @@
   private LDIFReader ldifReader;
 
   /**
-   * The entry container for the destination base DN.
+   * The entry entryContainer for the destination base DN.
    */
   private EntryContainer entryContainer;
 
@@ -120,8 +120,8 @@
   }
 
   /**
-   * Set the name of the container for the destination base DN.
-   * @param containerName The container name.
+   * Set the name of the entryContainer for the destination base DN.
+   * @param containerName The entryContainer name.
    */
   public void setContainerName(String containerName)
   {
@@ -129,8 +129,8 @@
   }
 
   /**
-   * Get the name of the container for the destination base DN.
-   * @return The container name.
+   * Get the name of the entryContainer for the destination base DN.
+   * @return The entryContainer name.
    */
   public String getContainerName()
   {
@@ -210,8 +210,8 @@
   }
 
   /**
-   * Set the entry container for the destination base DN.
-   * @param entryContainer The entry container for the destination base DN.
+   * Set the entry entryContainer for the destination base DN.
+   * @param entryContainer The entry entryContainer for the destination base DN.
    */
   public void setEntryContainer(EntryContainer entryContainer)
   {
@@ -219,8 +219,8 @@
   }
 
   /**
-   * Get the entry container for the destination base DN.
-   * @return The entry container for the destination base DN.
+   * Get the entry entryContainer for the destination base DN.
+   * @return The entry entryContainer for the destination base DN.
    */
   public EntryContainer getEntryContainer()
   {

--
Gitblit v1.10.0