Set<Map.Entry<String, String>> paramSet = this.parentRemoteRequest.outMap.entrySet();
Iterator<Map.Entry<String, String>> paramIter = paramSet.iterator();
Map<String, Object> parentDataMap = this.parentRemoteRequest.parent.getMap();
while (paramIter.hasNext()) {
Map.Entry<String, String> paramPair = paramIter.next();
if (jsonObject.containsKey(paramPair.getKey())) {
Object obj = jsonObject.get(paramPair.getKey());
System.out.println("RemoteRequest, param-out, name: " + paramPair.getKey() + ", value: " + obj);
parentDataMap.put(paramPair.getKey(), obj);
}
}