From 24ef7c741bf20dabe8a5be3978187f8f1eb5dd41 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 27 Mar 2015 15:57:07 +0000
Subject: [PATCH] OPENDJ-1849 Remove references to JE from pluggable backend
---
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/DatabaseContainer.java | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/DatabaseContainer.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/DatabaseContainer.java
index d4f3bc5..2698dc3 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/DatabaseContainer.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/DatabaseContainer.java
@@ -32,7 +32,7 @@
import org.opends.server.backends.pluggable.spi.WriteableTransaction;
/**
- * This class is a wrapper around the JE database object and provides basic
+ * This class is a wrapper around the tree object and provides basic
* read and write methods for entries.
*/
abstract class DatabaseContainer
@@ -51,13 +51,13 @@
}
/**
- * Opens a JE database in this database container. If the provided database configuration is
+ * Opens a database in this database container. If the provided database configuration is
* transactional, a transaction will be created and used to perform the open.
*
* @param txn
- * The transaction.
+ * a non null database transaction
* @throws StorageRuntimeException
- * if a JE database error occurs while opening the index.
+ * if a database error occurs while opening the index.
*/
void open(WriteableTransaction txn) throws StorageRuntimeException
{
@@ -68,7 +68,7 @@
* Deletes this database and all of its contents.
*
* @param txn
- * The transaction.
+ * a non null database transaction
* @throws StorageRuntimeException
* if a database error occurs while deleting the index.
*/
@@ -81,7 +81,7 @@
* Returns the number of key/value pairs in this database container.
*
* @param txn
- * The transaction.
+ * a non null database transaction
* @return the number of key/value pairs in the provided tree.
* @throws StorageRuntimeException
* If an error occurs in the DB operation.
@@ -103,9 +103,9 @@
}
/**
- * Get the JE database name for this database container.
+ * Get the database name for this database container.
*
- * @return JE database name for this database container.
+ * @return database name for this database container.
*/
final TreeName getName()
{
@@ -113,7 +113,7 @@
}
/**
- * Set the JE database name to use for this container.
+ * Set the database name to use for this container.
*
* @param name The database name to use for this container.
*/
--
Gitblit v1.10.0