001
014
015 package com.liferay.portal.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 import com.liferay.portal.model.OrgLabor;
021
022 import java.util.List;
023
024
028 public class OrgLaborJSONSerializer {
029 public static JSONObject toJSONObject(OrgLabor model) {
030 JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
031
032 jsonObj.put("orgLaborId", model.getOrgLaborId());
033 jsonObj.put("organizationId", model.getOrganizationId());
034 jsonObj.put("typeId", model.getTypeId());
035 jsonObj.put("sunOpen", model.getSunOpen());
036 jsonObj.put("sunClose", model.getSunClose());
037 jsonObj.put("monOpen", model.getMonOpen());
038 jsonObj.put("monClose", model.getMonClose());
039 jsonObj.put("tueOpen", model.getTueOpen());
040 jsonObj.put("tueClose", model.getTueClose());
041 jsonObj.put("wedOpen", model.getWedOpen());
042 jsonObj.put("wedClose", model.getWedClose());
043 jsonObj.put("thuOpen", model.getThuOpen());
044 jsonObj.put("thuClose", model.getThuClose());
045 jsonObj.put("friOpen", model.getFriOpen());
046 jsonObj.put("friClose", model.getFriClose());
047 jsonObj.put("satOpen", model.getSatOpen());
048 jsonObj.put("satClose", model.getSatClose());
049
050 return jsonObj;
051 }
052
053 public static JSONArray toJSONArray(
054 com.liferay.portal.model.OrgLabor[] models) {
055 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
056
057 for (OrgLabor model : models) {
058 jsonArray.put(toJSONObject(model));
059 }
060
061 return jsonArray;
062 }
063
064 public static JSONArray toJSONArray(
065 com.liferay.portal.model.OrgLabor[][] models) {
066 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
067
068 for (OrgLabor[] model : models) {
069 jsonArray.put(toJSONArray(model));
070 }
071
072 return jsonArray;
073 }
074
075 public static JSONArray toJSONArray(
076 List<com.liferay.portal.model.OrgLabor> models) {
077 JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
078
079 for (OrgLabor model : models) {
080 jsonArray.put(toJSONObject(model));
081 }
082
083 return jsonArray;
084 }
085 }