Map<ResourceId, CurrentState> currentStateMap = Collections.emptyMap();
Map<ParticipantId, Participant> liveParticipantMap =
new HashMap<ParticipantId, Participant>();
// set up some participants
for (String nodeName : _liveNodes) {
ParticipantId participantId = ParticipantId.from(nodeName);
Participant participant =
new Participant(participantId, "hostname", 0, true, disabledPartitionIdSet, tags,
null, currentStateMap, messageMap, new UserConfig(
Scope.participant(participantId)));
liveParticipantMap.put(participantId, participant);