1
22
23 package com.liferay.portlet.messageboards.service.http;
24
25 import com.liferay.portal.kernel.json.JSONArray;
26 import com.liferay.portal.kernel.json.JSONFactoryUtil;
27 import com.liferay.portal.kernel.json.JSONObject;
28 import com.liferay.portal.kernel.util.StringPool;
29
30 import com.liferay.portlet.messageboards.model.MBBan;
31
32 import java.util.Date;
33 import java.util.List;
34
35
54 public class MBBanJSONSerializer {
55 public static JSONObject toJSONObject(MBBan model) {
56 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
57
58 jsonObj.put("banId", model.getBanId());
59 jsonObj.put("groupId", model.getGroupId());
60 jsonObj.put("companyId", model.getCompanyId());
61 jsonObj.put("userId", model.getUserId());
62 jsonObj.put("userName", model.getUserName());
63
64 Date createDate = model.getCreateDate();
65
66 String createDateJSON = StringPool.BLANK;
67
68 if (createDate != null) {
69 createDateJSON = String.valueOf(createDate.getTime());
70 }
71
72 jsonObj.put("createDate", createDateJSON);
73
74 Date modifiedDate = model.getModifiedDate();
75
76 String modifiedDateJSON = StringPool.BLANK;
77
78 if (modifiedDate != null) {
79 modifiedDateJSON = String.valueOf(modifiedDate.getTime());
80 }
81
82 jsonObj.put("modifiedDate", modifiedDateJSON);
83 jsonObj.put("banUserId", model.getBanUserId());
84
85 return jsonObj;
86 }
87
88 public static JSONArray toJSONArray(
89 com.liferay.portlet.messageboards.model.MBBan[] models) {
90 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
91
92 for (MBBan model : models) {
93 jsonArray.put(toJSONObject(model));
94 }
95
96 return jsonArray;
97 }
98
99 public static JSONArray toJSONArray(
100 com.liferay.portlet.messageboards.model.MBBan[][] models) {
101 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
102
103 for (MBBan[] model : models) {
104 jsonArray.put(toJSONArray(model));
105 }
106
107 return jsonArray;
108 }
109
110 public static JSONArray toJSONArray(
111 List<com.liferay.portlet.messageboards.model.MBBan> models) {
112 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
113
114 for (MBBan model : models) {
115 jsonArray.put(toJSONObject(model));
116 }
117
118 return jsonArray;
119 }
120 }