1
22
23 package com.liferay.portlet.tags.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.tags.model.TagsEntry;
31
32 import java.util.Date;
33 import java.util.List;
34
35
54 public class TagsEntryJSONSerializer {
55 public static JSONObject toJSONObject(TagsEntry model) {
56 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
57
58 jsonObj.put("entryId", model.getEntryId());
59 jsonObj.put("companyId", model.getCompanyId());
60 jsonObj.put("userId", model.getUserId());
61 jsonObj.put("userName", model.getUserName());
62
63 Date createDate = model.getCreateDate();
64
65 String createDateJSON = StringPool.BLANK;
66
67 if (createDate != null) {
68 createDateJSON = String.valueOf(createDate.getTime());
69 }
70
71 jsonObj.put("createDate", createDateJSON);
72
73 Date modifiedDate = model.getModifiedDate();
74
75 String modifiedDateJSON = StringPool.BLANK;
76
77 if (modifiedDate != null) {
78 modifiedDateJSON = String.valueOf(modifiedDate.getTime());
79 }
80
81 jsonObj.put("modifiedDate", modifiedDateJSON);
82 jsonObj.put("name", model.getName());
83
84 return jsonObj;
85 }
86
87 public static JSONArray toJSONArray(
88 com.liferay.portlet.tags.model.TagsEntry[] models) {
89 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
90
91 for (TagsEntry model : models) {
92 jsonArray.put(toJSONObject(model));
93 }
94
95 return jsonArray;
96 }
97
98 public static JSONArray toJSONArray(
99 com.liferay.portlet.tags.model.TagsEntry[][] models) {
100 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
101
102 for (TagsEntry[] model : models) {
103 jsonArray.put(toJSONArray(model));
104 }
105
106 return jsonArray;
107 }
108
109 public static JSONArray toJSONArray(
110 List<com.liferay.portlet.tags.model.TagsEntry> models) {
111 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
112
113 for (TagsEntry model : models) {
114 jsonArray.put(toJSONObject(model));
115 }
116
117 return jsonArray;
118 }
119 }