From a634c8d90fc2581a9486d91df07e874dda33b69e Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 30 Aug 2013 10:07:10 +0000
Subject: [PATCH] OPENDJ-1116 Introduce abstraction for the changelog DB
---
opendj-sdk/opends/src/server/org/opends/server/replication/server/changelog/je/DbHandler.java | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/replication/server/changelog/je/DbHandler.java b/opendj-sdk/opends/src/server/org/opends/server/replication/server/changelog/je/DbHandler.java
index e4f4dd8..ea2991b 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/replication/server/changelog/je/DbHandler.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/replication/server/changelog/je/DbHandler.java
@@ -44,7 +44,7 @@
import org.opends.server.replication.server.ReplicationServerDomain;
import org.opends.server.replication.server.changelog.api.ChangelogException;
import org.opends.server.replication.server.changelog.api.ReplicationDBCursor;
-import org.opends.server.replication.server.changelog.je.ReplicationDB.ReplServerDBCursor;
+import org.opends.server.replication.server.changelog.je.ReplicationDB.*;
import org.opends.server.types.Attribute;
import org.opends.server.types.Attributes;
import org.opends.server.types.InitializationException;
@@ -260,18 +260,18 @@
}
/**
- * Generate a new {@link ReplicationDBCursor} that allows to browse the db
- * managed by this dbHandler and starting at the position defined by a given
- * changeNumber.
- *
- * @param startAfterCN
- * The position where the cursor must start.
- * @return a new {@link ReplicationDBCursor} that allows to browse the db
- * managed by this dbHandler and starting at the position defined by a
- * given changeNumber.
- * @throws ChangelogException
- * if a database problem happened.
- */
+ * Generate a new {@link ReplicationDBCursor} that allows to browse the db
+ * managed by this dbHandler and starting at the position defined by a given
+ * changeNumber.
+ *
+ * @param startAfterCN
+ * The position where the cursor must start.
+ * @return a new {@link ReplicationDBCursor} that allows to browse the db
+ * managed by this dbHandler and starting at the position defined by a
+ * given changeNumber.
+ * @throws ChangelogException
+ * if a database problem happened.
+ */
public ReplicationDBCursor generateCursorFrom(ChangeNumber startAfterCN)
throws ChangelogException
{
--
Gitblit v1.10.0