1
22
23 package com.liferay.portlet.softwarecatalog.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.softwarecatalog.model.SCProductVersion;
31
32 import java.util.Date;
33 import java.util.List;
34
35
54 public class SCProductVersionJSONSerializer {
55 public static JSONObject toJSONObject(SCProductVersion model) {
56 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
57
58 jsonObj.put("productVersionId", model.getProductVersionId());
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("productEntryId", model.getProductEntryId());
83 jsonObj.put("version", model.getVersion());
84 jsonObj.put("changeLog", model.getChangeLog());
85 jsonObj.put("downloadPageURL", model.getDownloadPageURL());
86 jsonObj.put("directDownloadURL", model.getDirectDownloadURL());
87 jsonObj.put("repoStoreArtifact", model.getRepoStoreArtifact());
88
89 return jsonObj;
90 }
91
92 public static JSONArray toJSONArray(
93 List<com.liferay.portlet.softwarecatalog.model.SCProductVersion> models) {
94 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
95
96 for (SCProductVersion model : models) {
97 jsonArray.put(toJSONObject(model));
98 }
99
100 return jsonArray;
101 }
102 }