36373839404142
/** * get a json result with "ok" property. */ public JSonResult ok() { return new JSonResult().set("ok", 1); }
43444546474849
/** * get a json result with "msg" property. */ public JSonResult err(String msg) { return new JSonResult().set("msg", msg); }