private Map<String, Map<String, String>> getMapping(final Map<String, List<String>> listResult) {
final Map<String, Map<String, String>> mapResult = new HashMap<String, Map<String, String>>();
for (String partition : _partitions) {
Map<String, String> rawCurStateMap = _currentMapping.get(partition);
ClusterConfig cluster =
new ClusterConfig.Builder(ClusterId.from("cluster")).addStateModelDefinition(
_stateModelDef).build();
Set<ParticipantId> liveParticipantSet = Sets.newHashSet();
for (String node : _liveNodes) {
liveParticipantSet.add(ParticipantId.from(node));