| | |
| | | import org.opends.server.replication.common.ServerState; |
| | | import org.opends.server.replication.common.ServerStatus; |
| | | import org.opends.server.replication.protocol.*; |
| | | import org.opends.server.replication.server.changelog.api.*; |
| | | import org.opends.server.replication.server.changelog.api.CNIndexRecord; |
| | | import org.opends.server.replication.server.changelog.api.ChangeNumberIndexDB; |
| | | import org.opends.server.replication.server.changelog.api.ChangelogException; |
| | | import org.opends.server.replication.server.changelog.api.DBCursor; |
| | | import org.opends.server.types.*; |
| | | import org.opends.server.util.ServerConstants; |
| | | |
| | |
| | | { |
| | | |
| | | private static int UNDEFINED_PHASE = 0; |
| | | /** TODO JNR. */ |
| | | /** |
| | | * Constant used to indicate the handler is in the ECL initialization phase. |
| | | * |
| | | * @see #getSearchPhase() |
| | | */ |
| | | public static int INIT_PHASE = 1; |
| | | private static int PERSISTENT_PHASE = 2; |
| | | |
| | |
| | | private String operationId; |
| | | |
| | | /** Cursor on the {@link ChangeNumberIndexDB}. */ |
| | | private ChangeNumberIndexDBCursor cnIndexDBCursor; |
| | | private DBCursor<CNIndexRecord> cnIndexDBCursor; |
| | | |
| | | private boolean draftCompat = false; |
| | | /** |