001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portal.service;
022:
023: /**
024: * <a href="PasswordPolicyServiceUtil.java.html"><b><i>View Source</i></b></a>
025: *
026: * <p>
027: * ServiceBuilder generated this class. Modifications in this class will be
028: * overwritten the next time is generated.
029: * </p>
030: *
031: * <p>
032: * This class provides static methods for the
033: * <code>com.liferay.portal.service.PasswordPolicyService</code>
034: * bean. The static methods of this class calls the same methods of the bean
035: * instance. It's convenient to be able to just write one line to call a method
036: * on a bean instead of writing a lookup call and a method call.
037: * </p>
038: *
039: * <p>
040: * <code>com.liferay.portal.service.PasswordPolicyServiceFactory</code>
041: * is responsible for the lookup of the bean.
042: * </p>
043: *
044: * @author Brian Wing Shun Chan
045: *
046: * @see com.liferay.portal.service.PasswordPolicyService
047: * @see com.liferay.portal.service.PasswordPolicyServiceFactory
048: *
049: */
050: public class PasswordPolicyServiceUtil {
051: public static com.liferay.portal.model.PasswordPolicy addPasswordPolicy(
052: java.lang.String name, java.lang.String description,
053: boolean changeable, boolean changeRequired, long minAge,
054: boolean checkSyntax, boolean allowDictionaryWords,
055: int minLength, boolean history, int historyCount,
056: boolean expireable, long maxAge, long warningTime,
057: int graceLimit, boolean lockout, int maxFailure,
058: long lockoutDuration, long resetFailureCount)
059: throws com.liferay.portal.PortalException,
060: com.liferay.portal.SystemException,
061: java.rmi.RemoteException {
062: PasswordPolicyService passwordPolicyService = PasswordPolicyServiceFactory
063: .getService();
064:
065: return passwordPolicyService.addPasswordPolicy(name,
066: description, changeable, changeRequired, minAge,
067: checkSyntax, allowDictionaryWords, minLength, history,
068: historyCount, expireable, maxAge, warningTime,
069: graceLimit, lockout, maxFailure, lockoutDuration,
070: resetFailureCount);
071: }
072:
073: public static void deletePasswordPolicy(long passwordPolicyId)
074: throws com.liferay.portal.PortalException,
075: com.liferay.portal.SystemException,
076: java.rmi.RemoteException {
077: PasswordPolicyService passwordPolicyService = PasswordPolicyServiceFactory
078: .getService();
079:
080: passwordPolicyService.deletePasswordPolicy(passwordPolicyId);
081: }
082:
083: public static com.liferay.portal.model.PasswordPolicy updatePasswordPolicy(
084: long passwordPolicyId, java.lang.String name,
085: java.lang.String description, boolean changeable,
086: boolean changeRequired, long minAge, boolean checkSyntax,
087: boolean allowDictionaryWords, int minLength,
088: boolean history, int historyCount, boolean expireable,
089: long maxAge, long warningTime, int graceLimit,
090: boolean lockout, int maxFailure, long lockoutDuration,
091: long resetFailureCount)
092: throws com.liferay.portal.PortalException,
093: com.liferay.portal.SystemException,
094: java.rmi.RemoteException {
095: PasswordPolicyService passwordPolicyService = PasswordPolicyServiceFactory
096: .getService();
097:
098: return passwordPolicyService.updatePasswordPolicy(
099: passwordPolicyId, name, description, changeable,
100: changeRequired, minAge, checkSyntax,
101: allowDictionaryWords, minLength, history, historyCount,
102: expireable, maxAge, warningTime, graceLimit, lockout,
103: maxFailure, lockoutDuration, resetFailureCount);
104: }
105: }
|