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.Region;
021    
022    import java.util.List;
023    
024    /**
025     * @author    Brian Wing Shun Chan
026     * @generated
027     */
028    public class RegionJSONSerializer {
029            public static JSONObject toJSONObject(Region model) {
030                    JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
031    
032                    jsonObj.put("regionId", model.getRegionId());
033                    jsonObj.put("countryId", model.getCountryId());
034                    jsonObj.put("regionCode", model.getRegionCode());
035                    jsonObj.put("name", model.getName());
036                    jsonObj.put("active", model.getActive());
037    
038                    return jsonObj;
039            }
040    
041            public static JSONArray toJSONArray(
042                    com.liferay.portal.model.Region[] models) {
043                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
044    
045                    for (Region model : models) {
046                            jsonArray.put(toJSONObject(model));
047                    }
048    
049                    return jsonArray;
050            }
051    
052            public static JSONArray toJSONArray(
053                    com.liferay.portal.model.Region[][] models) {
054                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
055    
056                    for (Region[] model : models) {
057                            jsonArray.put(toJSONArray(model));
058                    }
059    
060                    return jsonArray;
061            }
062    
063            public static JSONArray toJSONArray(
064                    List<com.liferay.portal.model.Region> models) {
065                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
066    
067                    for (Region model : models) {
068                            jsonArray.put(toJSONObject(model));
069                    }
070    
071                    return jsonArray;
072            }
073    }