JSONObject warning = json.getJSONObject("warning");
String code = ((String) warning.opt("code"));
String message = ((String) warning.opt("message"));
int percentFull = warning.getInt("percent_full");
onStallWarning(new StallWarningMessage(code, message, percentFull));
}