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