String bodyString = super.handleResponse(response);
JSONObject jsonObject = null;
try {
jsonObject = JSONObject.fromObject( bodyString );
} catch(JSONException e) {
throw new HttpResponseException(0, e.getMessage());
}
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()) {