001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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.Resource;
021    
022    import java.util.List;
023    
024    /**
025     * @author    Brian Wing Shun Chan
026     * @generated
027     */
028    public class ResourceJSONSerializer {
029            public static JSONObject toJSONObject(Resource model) {
030                    JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
031    
032                    jsonObj.put("resourceId", model.getResourceId());
033                    jsonObj.put("codeId", model.getCodeId());
034                    jsonObj.put("primKey", model.getPrimKey());
035    
036                    return jsonObj;
037            }
038    
039            public static JSONArray toJSONArray(
040                    com.liferay.portal.model.Resource[] models) {
041                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
042    
043                    for (Resource model : models) {
044                            jsonArray.put(toJSONObject(model));
045                    }
046    
047                    return jsonArray;
048            }
049    
050            public static JSONArray toJSONArray(
051                    com.liferay.portal.model.Resource[][] models) {
052                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
053    
054                    for (Resource[] model : models) {
055                            jsonArray.put(toJSONArray(model));
056                    }
057    
058                    return jsonArray;
059            }
060    
061            public static JSONArray toJSONArray(
062                    List<com.liferay.portal.model.Resource> models) {
063                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
064    
065                    for (Resource model : models) {
066                            jsonArray.put(toJSONObject(model));
067                    }
068    
069                    return jsonArray;
070            }
071    }