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/AttributeIndex.java | 17 ++++++++---------
1 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AttributeIndex.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AttributeIndex.java
index e254e2d..122a64f 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AttributeIndex.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/AttributeIndex.java
@@ -131,7 +131,7 @@
*
* @param indexConfig The attribute index configuration.
* @param entryContainer The entryContainer of this attribute index.
- * @param txn The database transaction
+ * @param txn a non null database transaction
* @throws ConfigException if a configuration related error occurs.
*/
AttributeIndex(BackendIndexCfg indexConfig, EntryContainer entryContainer, WriteableTransaction txn)
@@ -260,9 +260,8 @@
/**
* Open the attribute index.
*
- * @param txn The database transaction
- * @throws StorageRuntimeException if a JE database error occurs while
- * opening the index.
+ * @param txn a non null database transaction
+ * @throws StorageRuntimeException if a database error occurs while opening the index
*/
void open(WriteableTransaction txn) throws StorageRuntimeException
{
@@ -313,7 +312,7 @@
* @param buffer The index buffer to use to store the added keys
* @param entryID The entry ID.
* @param entry The contents of the new entry.
- * @throws StorageRuntimeException If an error occurs in the JE database.
+ * @throws StorageRuntimeException If an error occurs in the database.
* @throws DirectoryException If a Directory Server error occurs.
*/
void addEntry(IndexBuffer buffer, EntryID entryID, Entry entry)
@@ -331,7 +330,7 @@
* @param buffer The index buffer to use to store the deleted keys
* @param entryID The entry ID
* @param entry The contents of the deleted entry.
- * @throws StorageRuntimeException If an error occurs in the JE database.
+ * @throws StorageRuntimeException If an error occurs in the database.
* @throws DirectoryException If a Directory Server error occurs.
*/
void removeEntry(IndexBuffer buffer, EntryID entryID, Entry entry)
@@ -353,7 +352,7 @@
* @param newEntry The entry after the modifications were applied.
* @param mods The sequence of modifications in the Modify operation.
* @throws StorageRuntimeException If an error occurs during an operation on a
- * JE database.
+ * database.
*/
void modifyEntry(IndexBuffer buffer,
EntryID entryID,
@@ -882,9 +881,9 @@
}
/**
- * Get the JE database name prefix for indexes in this attribute index.
+ * Get the database name prefix for indexes in this attribute index.
*
- * @return JE database name for this database container.
+ * @return database name for this database container.
*/
String getName()
{
--
Gitblit v1.10.0