Package com.saya.response

Examples of com.saya.response.ProductsRs


    } catch (Exception ex) {
      des = ex.getMessage();
      status = Boolean.valueOf(false);
    }

    ProductsRs rs = new ProductsRs();
    if (status.booleanValue())
      rs.setCode("0");
    else {
      rs.setCode("1");
    }
    rs.setMessage(des);
    rs.setLstProduct(lstProduct);
    Gson gson = new Gson();
    resp.getWriter().println(gson.toJson(rs));
  }
View Full Code Here

TOP

Related Classes of com.saya.response.ProductsRs

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.