001    /**
002     * Copyright (c) 2000-2012 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;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link PasswordPolicyService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       PasswordPolicyService
024     * @generated
025     */
026    public class PasswordPolicyServiceWrapper implements PasswordPolicyService,
027            ServiceWrapper<PasswordPolicyService> {
028            public PasswordPolicyServiceWrapper(
029                    PasswordPolicyService passwordPolicyService) {
030                    _passwordPolicyService = passwordPolicyService;
031            }
032    
033            /**
034            * Returns the Spring bean ID for this bean.
035            *
036            * @return the Spring bean ID for this bean
037            */
038            public java.lang.String getBeanIdentifier() {
039                    return _passwordPolicyService.getBeanIdentifier();
040            }
041    
042            /**
043            * Sets the Spring bean ID for this bean.
044            *
045            * @param beanIdentifier the Spring bean ID for this bean
046            */
047            public void setBeanIdentifier(java.lang.String beanIdentifier) {
048                    _passwordPolicyService.setBeanIdentifier(beanIdentifier);
049            }
050    
051            /**
052            * @deprecated
053            */
054            public com.liferay.portal.model.PasswordPolicy addPasswordPolicy(
055                    java.lang.String name, java.lang.String description,
056                    boolean changeable, boolean changeRequired, long minAge,
057                    boolean checkSyntax, boolean allowDictionaryWords, int minAlphanumeric,
058                    int minLength, int minLowerCase, int minNumbers, int minSymbols,
059                    int minUpperCase, boolean history, int historyCount,
060                    boolean expireable, long maxAge, long warningTime, int graceLimit,
061                    boolean lockout, int maxFailure, long lockoutDuration,
062                    long resetFailureCount, long resetTicketMaxAge)
063                    throws com.liferay.portal.kernel.exception.PortalException,
064                            com.liferay.portal.kernel.exception.SystemException {
065                    return _passwordPolicyService.addPasswordPolicy(name, description,
066                            changeable, changeRequired, minAge, checkSyntax,
067                            allowDictionaryWords, minAlphanumeric, minLength, minLowerCase,
068                            minNumbers, minSymbols, minUpperCase, history, historyCount,
069                            expireable, maxAge, warningTime, graceLimit, lockout, maxFailure,
070                            lockoutDuration, resetFailureCount, resetTicketMaxAge);
071            }
072    
073            public com.liferay.portal.model.PasswordPolicy addPasswordPolicy(
074                    java.lang.String name, java.lang.String description,
075                    boolean changeable, boolean changeRequired, long minAge,
076                    boolean checkSyntax, boolean allowDictionaryWords, int minAlphanumeric,
077                    int minLength, int minLowerCase, int minNumbers, int minSymbols,
078                    int minUpperCase, java.lang.String regex, boolean history,
079                    int historyCount, boolean expireable, long maxAge, long warningTime,
080                    int graceLimit, boolean lockout, int maxFailure, long lockoutDuration,
081                    long resetFailureCount, long resetTicketMaxAge)
082                    throws com.liferay.portal.kernel.exception.PortalException,
083                            com.liferay.portal.kernel.exception.SystemException {
084                    return _passwordPolicyService.addPasswordPolicy(name, description,
085                            changeable, changeRequired, minAge, checkSyntax,
086                            allowDictionaryWords, minAlphanumeric, minLength, minLowerCase,
087                            minNumbers, minSymbols, minUpperCase, regex, history, historyCount,
088                            expireable, maxAge, warningTime, graceLimit, lockout, maxFailure,
089                            lockoutDuration, resetFailureCount, resetTicketMaxAge);
090            }
091    
092            public void deletePasswordPolicy(long passwordPolicyId)
093                    throws com.liferay.portal.kernel.exception.PortalException,
094                            com.liferay.portal.kernel.exception.SystemException {
095                    _passwordPolicyService.deletePasswordPolicy(passwordPolicyId);
096            }
097    
098            /**
099            * @deprecated
100            */
101            public com.liferay.portal.model.PasswordPolicy updatePasswordPolicy(
102                    long passwordPolicyId, java.lang.String name,
103                    java.lang.String description, boolean changeable,
104                    boolean changeRequired, long minAge, boolean checkSyntax,
105                    boolean allowDictionaryWords, int minAlphanumeric, int minLength,
106                    int minLowerCase, int minNumbers, int minSymbols, int minUpperCase,
107                    boolean history, int historyCount, boolean expireable, long maxAge,
108                    long warningTime, int graceLimit, boolean lockout, int maxFailure,
109                    long lockoutDuration, long resetFailureCount, long resetTicketMaxAge)
110                    throws com.liferay.portal.kernel.exception.PortalException,
111                            com.liferay.portal.kernel.exception.SystemException {
112                    return _passwordPolicyService.updatePasswordPolicy(passwordPolicyId,
113                            name, description, changeable, changeRequired, minAge, checkSyntax,
114                            allowDictionaryWords, minAlphanumeric, minLength, minLowerCase,
115                            minNumbers, minSymbols, minUpperCase, history, historyCount,
116                            expireable, maxAge, warningTime, graceLimit, lockout, maxFailure,
117                            lockoutDuration, resetFailureCount, resetTicketMaxAge);
118            }
119    
120            public com.liferay.portal.model.PasswordPolicy updatePasswordPolicy(
121                    long passwordPolicyId, java.lang.String name,
122                    java.lang.String description, boolean changeable,
123                    boolean changeRequired, long minAge, boolean checkSyntax,
124                    boolean allowDictionaryWords, int minAlphanumeric, int minLength,
125                    int minLowerCase, int minNumbers, int minSymbols, int minUpperCase,
126                    java.lang.String regex, boolean history, int historyCount,
127                    boolean expireable, long maxAge, long warningTime, int graceLimit,
128                    boolean lockout, int maxFailure, long lockoutDuration,
129                    long resetFailureCount, long resetTicketMaxAge)
130                    throws com.liferay.portal.kernel.exception.PortalException,
131                            com.liferay.portal.kernel.exception.SystemException {
132                    return _passwordPolicyService.updatePasswordPolicy(passwordPolicyId,
133                            name, description, changeable, changeRequired, minAge, checkSyntax,
134                            allowDictionaryWords, minAlphanumeric, minLength, minLowerCase,
135                            minNumbers, minSymbols, minUpperCase, regex, history, historyCount,
136                            expireable, maxAge, warningTime, graceLimit, lockout, maxFailure,
137                            lockoutDuration, resetFailureCount, resetTicketMaxAge);
138            }
139    
140            /**
141             * @deprecated Renamed to {@link #getWrappedService}
142             */
143            public PasswordPolicyService getWrappedPasswordPolicyService() {
144                    return _passwordPolicyService;
145            }
146    
147            /**
148             * @deprecated Renamed to {@link #setWrappedService}
149             */
150            public void setWrappedPasswordPolicyService(
151                    PasswordPolicyService passwordPolicyService) {
152                    _passwordPolicyService = passwordPolicyService;
153            }
154    
155            public PasswordPolicyService getWrappedService() {
156                    return _passwordPolicyService;
157            }
158    
159            public void setWrappedService(PasswordPolicyService passwordPolicyService) {
160                    _passwordPolicyService = passwordPolicyService;
161            }
162    
163            private PasswordPolicyService _passwordPolicyService;
164    }