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.portlet.polls.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    
022    import com.liferay.portlet.polls.model.PollsVote;
023    
024    import java.util.Date;
025    import java.util.List;
026    
027    /**
028     * @author    Brian Wing Shun Chan
029     * @generated
030     */
031    public class PollsVoteJSONSerializer {
032            public static JSONObject toJSONObject(PollsVote model) {
033                    JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
034    
035                    jsonObj.put("voteId", model.getVoteId());
036                    jsonObj.put("userId", model.getUserId());
037                    jsonObj.put("questionId", model.getQuestionId());
038                    jsonObj.put("choiceId", model.getChoiceId());
039    
040                    Date voteDate = model.getVoteDate();
041    
042                    String voteDateJSON = StringPool.BLANK;
043    
044                    if (voteDate != null) {
045                            voteDateJSON = String.valueOf(voteDate.getTime());
046                    }
047    
048                    jsonObj.put("voteDate", voteDateJSON);
049    
050                    return jsonObj;
051            }
052    
053            public static JSONArray toJSONArray(
054                    com.liferay.portlet.polls.model.PollsVote[] models) {
055                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
056    
057                    for (PollsVote model : models) {
058                            jsonArray.put(toJSONObject(model));
059                    }
060    
061                    return jsonArray;
062            }
063    
064            public static JSONArray toJSONArray(
065                    com.liferay.portlet.polls.model.PollsVote[][] models) {
066                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
067    
068                    for (PollsVote[] model : models) {
069                            jsonArray.put(toJSONArray(model));
070                    }
071    
072                    return jsonArray;
073            }
074    
075            public static JSONArray toJSONArray(
076                    List<com.liferay.portlet.polls.model.PollsVote> models) {
077                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
078    
079                    for (PollsVote model : models) {
080                            jsonArray.put(toJSONObject(model));
081                    }
082    
083                    return jsonArray;
084            }
085    }