| | |
| | | */ |
| | | package org.opends.server.replication.common; |
| | | |
| | | import static org.opends.server.loggers.debug.DebugLogger.getTracer; |
| | | |
| | | import java.util.Iterator; |
| | | import java.util.TreeMap; |
| | | |
| | | import org.opends.server.loggers.debug.DebugTracer; |
| | | |
| | | |
| | | /** |
| | | * This object is used to store a list of ServerState object, one by |
| | |
| | | public class MultiDomainServerState implements Iterable<String> |
| | | { |
| | | /** |
| | | * The tracer object for the debug logger. |
| | | */ |
| | | private static final DebugTracer TRACER = getTracer(); |
| | | |
| | | /** |
| | | * The list of (domain service id, ServerState). |
| | | */ |
| | | private TreeMap<String, ServerState> list; |