Package com.saya.response

Examples of com.saya.response.CreateItemRs


            validate = Boolean.valueOf(false);
            des = "Có lỗi khi thêm mới item";
          }
        }

        CreateItemRs rs = new CreateItemRs();
        if (validate.booleanValue())
          rs.setCode("0");
        else {
          rs.setCode("1");
        }
        rs.setMessage(des);
        rs.setId(itemid);

        Gson gson = new Gson();
        resp.getWriter().println(gson.toJson(rs));
      }
View Full Code Here

TOP

Related Classes of com.saya.response.CreateItemRs

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.