From b52956de75caa2be959a4bdc768462070aa6549f Mon Sep 17 00:00:00 2001
From: Fabio Pistolesi <fabio.pistolesi@forgerock.com>
Date: Wed, 06 May 2015 12:40:41 +0000
Subject: [PATCH] OPENDJ-1849 CR-6871 Remove references to JE from pluggable backend

---
 opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryID.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryID.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryID.java
index a687b82..0d20143 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryID.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/EntryID.java
@@ -29,7 +29,7 @@
 import org.forgerock.opendj.ldap.ByteString;
 
 /**
- * An integer identifier assigned to each entry in the JE backend.
+ * An integer identifier assigned to each entry in the backend.
  * An entry ID is implemented by this class as a long.
  * There are static methods to assign monotonically increasing entry IDs,
  * starting from 1.
@@ -38,7 +38,7 @@
 {
   /** The identifier integer value. */
   private final long id;
-  /** The value in database format, created when necessary. */
+  /** The value in tree format, created when necessary. */
   private ByteString value;
 
   /**
@@ -51,8 +51,8 @@
   }
 
   /**
-   * Create a new entry ID object from a value in database format.
-   * @param value The database value of the ID.
+   * Create a new entry ID object from a value in tree format.
+   * @param value The tree value of the ID.
    */
   EntryID(ByteString value)
   {
@@ -70,8 +70,8 @@
   }
 
   /**
-   * Get the value of the ID in database format.
-   * @return The value of the ID in database format.
+   * Get the value of the ID in tree format.
+   * @return The value of the ID in tree format.
    */
   ByteString toByteString()
   {

--
Gitblit v1.10.0