InitConfig.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.yyrh.constant;
  2. import android.text.TextUtils;
  3. import org.json.JSONArray;
  4. import org.json.JSONException;
  5. import org.json.JSONObject;
  6. public class InitConfig {
  7. public static String fristShowPage = "";
  8. public String agreement_privacy = "";
  9. public String service_center = "";
  10. public String access_token = "";
  11. public String agreement_user = "";
  12. public JSONObject links = null;
  13. public JSONArray reg_tabs = null;
  14. public int sdk_login = 1;
  15. public int bswitch = 0;
  16. public static InitConfig toBean(JSONObject json){
  17. if (TextUtils.isEmpty(json.toString())) {
  18. return null;
  19. }
  20. InitConfig initConfig = new InitConfig();
  21. initConfig.reg_tabs = json.optJSONArray("reg_tabs");
  22. initConfig.sdk_login = json.optInt("sdk_login", 100);
  23. initConfig.access_token = json.optString("access_token");
  24. initConfig.bswitch = json.optInt("bswitch");
  25. if (initConfig.reg_tabs != null){
  26. try {
  27. if (initConfig.reg_tabs.get(0).toString().equals("phone")){
  28. InitConfig.fristShowPage = "phone";
  29. }
  30. } catch (JSONException e) {
  31. e.printStackTrace();
  32. }
  33. }
  34. initConfig.links = json.optJSONObject("links");
  35. if (initConfig.links != null){
  36. initConfig.agreement_privacy = initConfig.links.optString("agreement_privacy");
  37. initConfig.service_center = initConfig.links.optString("service_center");
  38. initConfig.agreement_user= initConfig.links.optString("agreement_user");
  39. }
  40. return initConfig;
  41. }
  42. @Override
  43. public String toString() {
  44. return "InitConfig{" +
  45. "agreement_privacy='" + agreement_privacy + '\'' +
  46. ", service_center='" + service_center + '\'' +
  47. ", agreement_user='" + agreement_user + '\'' +
  48. ", links=" + links +
  49. ", reg_tabs=" + reg_tabs +
  50. ", sdk_login=" + sdk_login +
  51. ", bswitch=" + bswitch +
  52. '}';
  53. }
  54. }