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.kernel.util.StringPool;
021    import com.liferay.portal.model.Account;
022    
023    import java.util.Date;
024    import java.util.List;
025    
026    /**
027     * @author    Brian Wing Shun Chan
028     * @generated
029     */
030    public class AccountJSONSerializer {
031            public static JSONObject toJSONObject(Account model) {
032                    JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
033    
034                    jsonObj.put("accountId", model.getAccountId());
035                    jsonObj.put("companyId", model.getCompanyId());
036                    jsonObj.put("userId", model.getUserId());
037                    jsonObj.put("userName", model.getUserName());
038    
039                    Date createDate = model.getCreateDate();
040    
041                    String createDateJSON = StringPool.BLANK;
042    
043                    if (createDate != null) {
044                            createDateJSON = String.valueOf(createDate.getTime());
045                    }
046    
047                    jsonObj.put("createDate", createDateJSON);
048    
049                    Date modifiedDate = model.getModifiedDate();
050    
051                    String modifiedDateJSON = StringPool.BLANK;
052    
053                    if (modifiedDate != null) {
054                            modifiedDateJSON = String.valueOf(modifiedDate.getTime());
055                    }
056    
057                    jsonObj.put("modifiedDate", modifiedDateJSON);
058                    jsonObj.put("parentAccountId", model.getParentAccountId());
059                    jsonObj.put("name", model.getName());
060                    jsonObj.put("legalName", model.getLegalName());
061                    jsonObj.put("legalId", model.getLegalId());
062                    jsonObj.put("legalType", model.getLegalType());
063                    jsonObj.put("sicCode", model.getSicCode());
064                    jsonObj.put("tickerSymbol", model.getTickerSymbol());
065                    jsonObj.put("industry", model.getIndustry());
066                    jsonObj.put("type", model.getType());
067                    jsonObj.put("size", model.getSize());
068    
069                    return jsonObj;
070            }
071    
072            public static JSONArray toJSONArray(
073                    com.liferay.portal.model.Account[] models) {
074                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
075    
076                    for (Account model : models) {
077                            jsonArray.put(toJSONObject(model));
078                    }
079    
080                    return jsonArray;
081            }
082    
083            public static JSONArray toJSONArray(
084                    com.liferay.portal.model.Account[][] models) {
085                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
086    
087                    for (Account[] model : models) {
088                            jsonArray.put(toJSONArray(model));
089                    }
090    
091                    return jsonArray;
092            }
093    
094            public static JSONArray toJSONArray(
095                    List<com.liferay.portal.model.Account> models) {
096                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
097    
098                    for (Account model : models) {
099                            jsonArray.put(toJSONObject(model));
100                    }
101    
102                    return jsonArray;
103            }
104    }