1
22
23 package com.liferay.portlet.tasks.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.tasks.model.TasksReview;
31
32 import java.util.Date;
33 import java.util.List;
34
35
54 public class TasksReviewJSONSerializer {
55 public static JSONObject toJSONObject(TasksReview model) {
56 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
57
58 jsonObj.put("reviewId", model.getReviewId());
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("proposalId", model.getProposalId());
84 jsonObj.put("assignedByUserId", model.getAssignedByUserId());
85 jsonObj.put("assignedByUserName", model.getAssignedByUserName());
86 jsonObj.put("stage", model.getStage());
87 jsonObj.put("completed", model.getCompleted());
88 jsonObj.put("rejected", model.getRejected());
89
90 return jsonObj;
91 }
92
93 public static JSONArray toJSONArray(
94 List<com.liferay.portlet.tasks.model.TasksReview> models) {
95 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
96
97 for (TasksReview model : models) {
98 jsonArray.put(toJSONObject(model));
99 }
100
101 return jsonArray;
102 }
103 }