public static JSONObject addErrorInfo(JSONObject response, Key key) throws JSONException { Util.addResultInfo(response, "error", key); return response; }
public static JSONObject addSuccessInfo(JSONObject response, Key key) throws JSONException { Util.addResultInfo(response, "ok", key); return response; }