opendj3-server-dev/src/server/org/opends/server/replication/server/changelog/api/DBCursor.java
@@ -54,6 +54,7 @@ * * @param <T> * type of the record being returned * \@NotThreadSafe */ public interface DBCursor<T> extends Closeable { opendj3-server-dev/src/server/org/opends/server/replication/server/changelog/je/CompositeDBCursor.java
@@ -41,6 +41,7 @@ * * @param <Data> * The type of data associated with each cursor * \@NotThreadSafe */ abstract class CompositeDBCursor<Data> implements DBCursor<UpdateMsg> { opendj3-server-dev/src/server/org/opends/server/replication/server/changelog/je/DomainDBCursor.java
@@ -38,6 +38,8 @@ /** * Cursor iterating over a replication domain's replica DBs. * * \@NotThreadSafe */ public class DomainDBCursor extends CompositeDBCursor<Void> { opendj3-server-dev/src/server/org/opends/server/replication/server/changelog/je/JEChangeNumberIndexDBCursor.java
@@ -31,8 +31,9 @@ import org.opends.server.replication.server.changelog.je.DraftCNDB.*; /** * This class allows to iterate through the changes received from a given * LDAP Server Identifier. * This class allows to iterate through the changes comming from the change number index DB. * * \@NotThreadSafe */ public class JEChangeNumberIndexDBCursor implements DBCursor<ChangeNumberIndexRecord> opendj3-server-dev/src/server/org/opends/server/replication/server/changelog/je/JEReplicaDBCursor.java
@@ -34,6 +34,8 @@ /** * Berkeley DB JE implementation of {@link DBCursor}. * * \@NotThreadSafe */ public class JEReplicaDBCursor implements DBCursor<UpdateMsg> { opendj3-server-dev/src/server/org/opends/server/replication/server/changelog/je/MultiDomainDBCursor.java
@@ -38,6 +38,8 @@ /** * Cursor iterating over a all the replication domain known to the changelog DB. * * \@NotThreadSafe */ public class MultiDomainDBCursor extends CompositeDBCursor<DN> {