| | |
| | | import java.io.StringReader; |
| | | import java.net.*; |
| | | import java.util.*; |
| | | import java.util.concurrent.CopyOnWriteArraySet; |
| | | |
| | | import org.opends.messages.Category; |
| | | import org.opends.messages.Message; |
| | |
| | | private ECLWorkflowElement eclwe; |
| | | private WorkflowImpl externalChangeLogWorkflowImpl = null; |
| | | |
| | | // FIXME: why is this a set of ports? Do we claim to support multiple ports? |
| | | private static HashSet<Integer> localPorts = new HashSet<Integer>(); |
| | | // This is required for unit testing, so that we can keep track of all the |
| | | // replication servers which are running in the VM. |
| | | private static Set<Integer> localPorts = new CopyOnWriteArraySet<Integer>(); |
| | | |
| | | // Monitors for synchronizing domain creation with the connect thread. |
| | | private final Object domainTicketLock = new Object(); |