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.kernel.util.StringPool;
021    import com.liferay.portal.model.PasswordPolicy;
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 PasswordPolicyJSONSerializer {
031            public static JSONObject toJSONObject(PasswordPolicy model) {
032                    JSONObject jsonObj = JSONFactoryUtil.createJSONObject();
033    
034                    jsonObj.put("passwordPolicyId", model.getPasswordPolicyId());
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("defaultPolicy", model.getDefaultPolicy());
059                    jsonObj.put("name", model.getName());
060                    jsonObj.put("description", model.getDescription());
061                    jsonObj.put("changeable", model.getChangeable());
062                    jsonObj.put("changeRequired", model.getChangeRequired());
063                    jsonObj.put("minAge", model.getMinAge());
064                    jsonObj.put("checkSyntax", model.getCheckSyntax());
065                    jsonObj.put("allowDictionaryWords", model.getAllowDictionaryWords());
066                    jsonObj.put("minAlphanumeric", model.getMinAlphanumeric());
067                    jsonObj.put("minLength", model.getMinLength());
068                    jsonObj.put("minLowerCase", model.getMinLowerCase());
069                    jsonObj.put("minNumbers", model.getMinNumbers());
070                    jsonObj.put("minSymbols", model.getMinSymbols());
071                    jsonObj.put("minUpperCase", model.getMinUpperCase());
072                    jsonObj.put("history", model.getHistory());
073                    jsonObj.put("historyCount", model.getHistoryCount());
074                    jsonObj.put("expireable", model.getExpireable());
075                    jsonObj.put("maxAge", model.getMaxAge());
076                    jsonObj.put("warningTime", model.getWarningTime());
077                    jsonObj.put("graceLimit", model.getGraceLimit());
078                    jsonObj.put("lockout", model.getLockout());
079                    jsonObj.put("maxFailure", model.getMaxFailure());
080                    jsonObj.put("lockoutDuration", model.getLockoutDuration());
081                    jsonObj.put("requireUnlock", model.getRequireUnlock());
082                    jsonObj.put("resetFailureCount", model.getResetFailureCount());
083                    jsonObj.put("resetTicketMaxAge", model.getResetTicketMaxAge());
084    
085                    return jsonObj;
086            }
087    
088            public static JSONArray toJSONArray(
089                    com.liferay.portal.model.PasswordPolicy[] models) {
090                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
091    
092                    for (PasswordPolicy model : models) {
093                            jsonArray.put(toJSONObject(model));
094                    }
095    
096                    return jsonArray;
097            }
098    
099            public static JSONArray toJSONArray(
100                    com.liferay.portal.model.PasswordPolicy[][] models) {
101                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
102    
103                    for (PasswordPolicy[] model : models) {
104                            jsonArray.put(toJSONArray(model));
105                    }
106    
107                    return jsonArray;
108            }
109    
110            public static JSONArray toJSONArray(
111                    List<com.liferay.portal.model.PasswordPolicy> models) {
112                    JSONArray jsonArray = JSONFactoryUtil.createJSONArray();
113    
114                    for (PasswordPolicy model : models) {
115                            jsonArray.put(toJSONObject(model));
116                    }
117    
118                    return jsonArray;
119            }
120    }