| | |
| | | * |
| | | * Copyright 2008-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2013-2016 ForgeRock AS. |
| | | * Portions Copyright 2025 3A Systems LLC. |
| | | */ |
| | | package org.opends.server.replication.service; |
| | | |
| | |
| | | private BlockingQueue<UpdateMsg> queue; |
| | | /** A string that will be exported should exportBackend be called. */ |
| | | private String exportString; |
| | | /** A StringBuilder that will be used to build a new String should the import be called. */ |
| | | private StringBuilder importString; |
| | | /** A StringBuffer that will be used to build a new String should the import be called. */ |
| | | private StringBuffer importString; |
| | | private int exportedEntryCount; |
| | | |
| | | private FakeReplicationDomain(DN baseDN, int serverID, |
| | |
| | | |
| | | FakeReplicationDomain(DN baseDN, int serverID, |
| | | SortedSet<String> replicationServers, long heartbeatInterval, |
| | | String exportString, StringBuilder importString, int exportedEntryCount) |
| | | String exportString, StringBuffer importString, int exportedEntryCount) |
| | | throws ConfigException |
| | | { |
| | | this(baseDN, serverID, replicationServers, 100, heartbeatInterval, 1); |