001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
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.PortletPreferences;
021    
022    import java.util.List;
023    
024    /**
025     * @author    Brian Wing Shun Chan
026     * @generated
027     */
028    public class PortletPreferencesJSONSerializer {
029            public static JSONObject toJSONObject(PortletPreferences model) {
030                    JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
031    
032                    jsonObj.put("portletPreferencesId", model.getPortletPreferencesId());
033                    jsonObj.put("ownerId", model.getOwnerId());
034                    jsonObj.put("ownerType", model.getOwnerType());
035                    jsonObj.put("plid", model.getPlid());
036                    jsonObj.put("portletId", model.getPortletId());
037                    jsonObj.put("preferences", model.getPreferences());
038    
039                    return jsonObj;
040            }
041    
042            public static JSONArray toJSONArray(
043                    com.liferay.portal.model.PortletPreferences[] models) {
044                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
045    
046                    for (PortletPreferences model : models) {
047                            jsonArray.put(toJSONObject(model));
048                    }
049    
050                    return jsonArray;
051            }
052    
053            public static JSONArray toJSONArray(
054                    com.liferay.portal.model.PortletPreferences[][] models) {
055                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
056    
057                    for (PortletPreferences[] model : models) {
058                            jsonArray.put(toJSONArray(model));
059                    }
060    
061                    return jsonArray;
062            }
063    
064            public static JSONArray toJSONArray(
065                    List<com.liferay.portal.model.PortletPreferences> models) {
066                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
067    
068                    for (PortletPreferences model : models) {
069                            jsonArray.put(toJSONObject(model));
070                    }
071    
072                    return jsonArray;
073            }
074    }