001
014
015 package com.liferay.portlet.softwarecatalog.service.http;
016
017 import com.liferay.portal.kernel.json.JSONArray;
018 import com.liferay.portal.kernel.json.JSONFactoryUtil;
019 import com.liferay.portal.kernel.json.JSONObject;
020
021 import com.liferay.portlet.softwarecatalog.model.SCLicense;
022
023 import java.util.List;
024
025
029 public class SCLicenseJSONSerializer {
030 public static JSONObject toJSONObject(SCLicense model) {
031 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
032
033 jsonObj.put("licenseId", model.getLicenseId());
034 jsonObj.put("name", model.getName());
035 jsonObj.put("url", model.getUrl());
036 jsonObj.put("openSource", model.getOpenSource());
037 jsonObj.put("active", model.getActive());
038 jsonObj.put("recommended", model.getRecommended());
039
040 return jsonObj;
041 }
042
043 public static JSONArray toJSONArray(
044 com.liferay.portlet.softwarecatalog.model.SCLicense[] models) {
045 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
046
047 for (SCLicense model : models) {
048 jsonArray.put(toJSONObject(model));
049 }
050
051 return jsonArray;
052 }
053
054 public static JSONArray toJSONArray(
055 com.liferay.portlet.softwarecatalog.model.SCLicense[][] models) {
056 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
057
058 for (SCLicense[] model : models) {
059 jsonArray.put(toJSONArray(model));
060 }
061
062 return jsonArray;
063 }
064
065 public static JSONArray toJSONArray(
066 List<com.liferay.portlet.softwarecatalog.model.SCLicense> models) {
067 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
068
069 for (SCLicense model : models) {
070 jsonArray.put(toJSONObject(model));
071 }
072
073 return jsonArray;
074 }
075 }