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/State.java | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java
index cad1363..a46a9b0 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/State.java
@@ -57,7 +57,7 @@
*
* @param index The index we need the key for.
* @return the key
- * @throws StorageRuntimeException If an error occurs in the JE database.
+ * @throws StorageRuntimeException If an error occurs in the database.
*/
private ByteString keyForIndex(DatabaseContainer index)
throws StorageRuntimeException
@@ -69,10 +69,10 @@
/**
* Remove a record from the entry database.
*
- * @param txn The database transaction or null if none.
+ * @param txn a non null database transaction
* @param index The index storing the trusted state info.
* @return true if the entry was removed, false if it was not.
- * @throws StorageRuntimeException If an error occurs in the JE database.
+ * @throws StorageRuntimeException If an error occurs in the database.
*/
boolean removeIndexTrustState(WriteableTransaction txn, DatabaseContainer index) throws StorageRuntimeException
{
@@ -82,10 +82,10 @@
/**
* Fetch index state from the database.
- * @param txn The database transaction or null if none.
+ * @param txn a non null database transaction
* @param index The index storing the trusted state info.
* @return The trusted state of the index in the database.
- * @throws StorageRuntimeException If an error occurs in the JE database.
+ * @throws StorageRuntimeException If an error occurs in the database.
*/
boolean getIndexTrustState(ReadableTransaction txn, DatabaseContainer index)
throws StorageRuntimeException
@@ -98,10 +98,10 @@
/**
* Put index state to database.
- * @param txn The database transaction or null if none.
+ * @param txn a non null database transaction
* @param index The index storing the trusted state info.
* @param trusted The state value to put into the database.
- * @throws StorageRuntimeException If an error occurs in the JE database.
+ * @throws StorageRuntimeException If an error occurs in the database.
*/
void putIndexTrustState(WriteableTransaction txn, DatabaseContainer index, boolean trusted)
throws StorageRuntimeException
--
Gitblit v1.10.0