*/
protected List<JSONObject> handleJsonResult(JSONValue result) {
List<JSONObject> resultList = super.handleJsonResult(result);
List<JSONObject> hosts = new ArrayList<JSONObject>();
for (JSONObject row : resultList) {
Host host = Host.fromJsonObject(row);
processHost(host);
hosts.add(host);
}
return hosts;
}