1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17   * SOFTWARE.
18   */
19  
20  package com.liferay.portal.service.http;
21  
22  import com.liferay.portal.kernel.json.JSONObject;
23  import com.liferay.portal.service.PasswordPolicyServiceUtil;
24  
25  /**
26   * <a href="PasswordPolicyServiceJSON.java.html"><b><i>View Source</i></b></a>
27   *
28   * <p>
29   * ServiceBuilder generated this class. Modifications in this class will be
30   * overwritten the next time is generated.
31   * </p>
32   *
33   * <p>
34   * This class provides a JSON utility for the
35   * <code>com.liferay.portal.service.PasswordPolicyServiceUtil</code>
36   * service utility. The static methods of this class calls the same methods of
37   * the service utility. However, the signatures are different because it is
38   * difficult for JSON to support certain types.
39   * </p>
40   *
41   * <p>
42   * ServiceBuilder follows certain rules in translating the methods. For example,
43   * if the method in the service utility returns a <code>java.util.List</code>,
44   * that is translated to a
45   * <code>com.liferay.portal.kernel.json.JSONArray</code>. If the method in the
46   * service utility returns a <code>com.liferay.portal.model.PasswordPolicy</code>,
47   * that is translated to a
48   * <code>com.liferay.portal.kernel.json.JSONObject</code>. Methods that JSON
49   * cannot safely use are skipped. The logic for the translation is encapsulated
50   * in <code>com.liferay.portal.service.http.PasswordPolicyJSONSerializer</code>.
51   * </p>
52   *
53   * <p>
54   * This allows you to call the the backend services directly from JavaScript.
55   * See <code>portal-web/docroot/html/portlet/tags_admin/unpacked.js</code> for a
56   * reference of how that portlet uses the generated JavaScript in
57   * <code>portal-web/docroot/html/js/service.js</code> to call the backend
58   * services directly from JavaScript.
59   * </p>
60   *
61   * <p>
62   * The JSON utility is only generated for remote services.
63   * </p>
64   *
65   * @author Brian Wing Shun Chan
66   *
67   * @see com.liferay.portal.service.PasswordPolicyServiceUtil
68   * @see com.liferay.portal.service.http.PasswordPolicyJSONSerializer
69   *
70   */
71  public class PasswordPolicyServiceJSON {
72      public static JSONObject addPasswordPolicy(java.lang.String name,
73          java.lang.String description, boolean changeable,
74          boolean changeRequired, long minAge, boolean checkSyntax,
75          boolean allowDictionaryWords, int minLength, boolean history,
76          int historyCount, boolean expireable, long maxAge, long warningTime,
77          int graceLimit, boolean lockout, int maxFailure, long lockoutDuration,
78          long resetFailureCount)
79          throws java.rmi.RemoteException, com.liferay.portal.PortalException,
80              com.liferay.portal.SystemException {
81          com.liferay.portal.model.PasswordPolicy returnValue = PasswordPolicyServiceUtil.addPasswordPolicy(name,
82                  description, changeable, changeRequired, minAge, checkSyntax,
83                  allowDictionaryWords, minLength, history, historyCount,
84                  expireable, maxAge, warningTime, graceLimit, lockout,
85                  maxFailure, lockoutDuration, resetFailureCount);
86  
87          return PasswordPolicyJSONSerializer.toJSONObject(returnValue);
88      }
89  
90      public static void deletePasswordPolicy(long passwordPolicyId)
91          throws java.rmi.RemoteException, com.liferay.portal.PortalException,
92              com.liferay.portal.SystemException {
93          PasswordPolicyServiceUtil.deletePasswordPolicy(passwordPolicyId);
94      }
95  
96      public static JSONObject updatePasswordPolicy(long passwordPolicyId,
97          java.lang.String name, java.lang.String description,
98          boolean changeable, boolean changeRequired, long minAge,
99          boolean checkSyntax, boolean allowDictionaryWords, int minLength,
100         boolean history, int historyCount, boolean expireable, long maxAge,
101         long warningTime, int graceLimit, boolean lockout, int maxFailure,
102         long lockoutDuration, long resetFailureCount)
103         throws java.rmi.RemoteException, com.liferay.portal.PortalException,
104             com.liferay.portal.SystemException {
105         com.liferay.portal.model.PasswordPolicy returnValue = PasswordPolicyServiceUtil.updatePasswordPolicy(passwordPolicyId,
106                 name, description, changeable, changeRequired, minAge,
107                 checkSyntax, allowDictionaryWords, minLength, history,
108                 historyCount, expireable, maxAge, warningTime, graceLimit,
109                 lockout, maxFailure, lockoutDuration, resetFailureCount);
110 
111         return PasswordPolicyJSONSerializer.toJSONObject(returnValue);
112     }
113 }