1
22
23 package com.liferay.portal.service;
24
25
26
46 public class PasswordPolicyLocalServiceUtil {
47 public static com.liferay.portal.model.PasswordPolicy addPasswordPolicy(
48 com.liferay.portal.model.PasswordPolicy passwordPolicy)
49 throws com.liferay.portal.SystemException {
50 return getService().addPasswordPolicy(passwordPolicy);
51 }
52
53 public static com.liferay.portal.model.PasswordPolicy createPasswordPolicy(
54 long passwordPolicyId) {
55 return getService().createPasswordPolicy(passwordPolicyId);
56 }
57
58 public static void deletePasswordPolicy(long passwordPolicyId)
59 throws com.liferay.portal.PortalException,
60 com.liferay.portal.SystemException {
61 getService().deletePasswordPolicy(passwordPolicyId);
62 }
63
64 public static void deletePasswordPolicy(
65 com.liferay.portal.model.PasswordPolicy passwordPolicy)
66 throws com.liferay.portal.SystemException {
67 getService().deletePasswordPolicy(passwordPolicy);
68 }
69
70 public static java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
72 throws com.liferay.portal.SystemException {
73 return getService().dynamicQuery(dynamicQuery);
74 }
75
76 public static java.util.List<Object> dynamicQuery(
77 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
78 int end) throws com.liferay.portal.SystemException {
79 return getService().dynamicQuery(dynamicQuery, start, end);
80 }
81
82 public static com.liferay.portal.model.PasswordPolicy getPasswordPolicy(
83 long passwordPolicyId)
84 throws com.liferay.portal.PortalException,
85 com.liferay.portal.SystemException {
86 return getService().getPasswordPolicy(passwordPolicyId);
87 }
88
89 public static java.util.List<com.liferay.portal.model.PasswordPolicy> getPasswordPolicies(
90 int start, int end) throws com.liferay.portal.SystemException {
91 return getService().getPasswordPolicies(start, end);
92 }
93
94 public static int getPasswordPoliciesCount()
95 throws com.liferay.portal.SystemException {
96 return getService().getPasswordPoliciesCount();
97 }
98
99 public static com.liferay.portal.model.PasswordPolicy updatePasswordPolicy(
100 com.liferay.portal.model.PasswordPolicy passwordPolicy)
101 throws com.liferay.portal.SystemException {
102 return getService().updatePasswordPolicy(passwordPolicy);
103 }
104
105 public static com.liferay.portal.model.PasswordPolicy updatePasswordPolicy(
106 com.liferay.portal.model.PasswordPolicy passwordPolicy, boolean merge)
107 throws com.liferay.portal.SystemException {
108 return getService().updatePasswordPolicy(passwordPolicy, merge);
109 }
110
111 public static com.liferay.portal.model.PasswordPolicy addPasswordPolicy(
112 long userId, boolean defaultPolicy, java.lang.String name,
113 java.lang.String description, boolean changeable,
114 boolean changeRequired, long minAge, boolean checkSyntax,
115 boolean allowDictionaryWords, int minLength, boolean history,
116 int historyCount, boolean expireable, long maxAge, long warningTime,
117 int graceLimit, boolean lockout, int maxFailure, long lockoutDuration,
118 long resetFailureCount)
119 throws com.liferay.portal.PortalException,
120 com.liferay.portal.SystemException {
121 return getService()
122 .addPasswordPolicy(userId, defaultPolicy, name, description,
123 changeable, changeRequired, minAge, checkSyntax,
124 allowDictionaryWords, minLength, history, historyCount, expireable,
125 maxAge, warningTime, graceLimit, lockout, maxFailure,
126 lockoutDuration, resetFailureCount);
127 }
128
129 public static void checkDefaultPasswordPolicy(long companyId)
130 throws com.liferay.portal.PortalException,
131 com.liferay.portal.SystemException {
132 getService().checkDefaultPasswordPolicy(companyId);
133 }
134
135 public static com.liferay.portal.model.PasswordPolicy getDefaultPasswordPolicy(
136 long companyId)
137 throws com.liferay.portal.PortalException,
138 com.liferay.portal.SystemException {
139 return getService().getDefaultPasswordPolicy(companyId);
140 }
141
142 public static com.liferay.portal.model.PasswordPolicy getPasswordPolicy(
143 long companyId, long organizationId, long locationId)
144 throws com.liferay.portal.PortalException,
145 com.liferay.portal.SystemException {
146 return getService()
147 .getPasswordPolicy(companyId, organizationId, locationId);
148 }
149
150 public static com.liferay.portal.model.PasswordPolicy getPasswordPolicy(
151 long companyId, long[] organizationIds)
152 throws com.liferay.portal.PortalException,
153 com.liferay.portal.SystemException {
154 return getService().getPasswordPolicy(companyId, organizationIds);
155 }
156
157 public static com.liferay.portal.model.PasswordPolicy getPasswordPolicyByUserId(
158 long userId)
159 throws com.liferay.portal.PortalException,
160 com.liferay.portal.SystemException {
161 return getService().getPasswordPolicyByUserId(userId);
162 }
163
164 public static java.util.List<com.liferay.portal.model.PasswordPolicy> search(
165 long companyId, java.lang.String name, int start, int end,
166 com.liferay.portal.kernel.util.OrderByComparator obc)
167 throws com.liferay.portal.SystemException {
168 return getService().search(companyId, name, start, end, obc);
169 }
170
171 public static int searchCount(long companyId, java.lang.String name)
172 throws com.liferay.portal.SystemException {
173 return getService().searchCount(companyId, name);
174 }
175
176 public static com.liferay.portal.model.PasswordPolicy updatePasswordPolicy(
177 long passwordPolicyId, java.lang.String name,
178 java.lang.String description, boolean changeable,
179 boolean changeRequired, long minAge, boolean checkSyntax,
180 boolean allowDictionaryWords, int minLength, boolean history,
181 int historyCount, boolean expireable, long maxAge, long warningTime,
182 int graceLimit, boolean lockout, int maxFailure, long lockoutDuration,
183 long resetFailureCount)
184 throws com.liferay.portal.PortalException,
185 com.liferay.portal.SystemException {
186 return getService()
187 .updatePasswordPolicy(passwordPolicyId, name, description,
188 changeable, changeRequired, minAge, checkSyntax,
189 allowDictionaryWords, minLength, history, historyCount, expireable,
190 maxAge, warningTime, graceLimit, lockout, maxFailure,
191 lockoutDuration, resetFailureCount);
192 }
193
194 public static PasswordPolicyLocalService getService() {
195 if (_service == null) {
196 throw new RuntimeException("PasswordPolicyLocalService is not set");
197 }
198
199 return _service;
200 }
201
202 public void setService(PasswordPolicyLocalService service) {
203 _service = service;
204 }
205
206 private static PasswordPolicyLocalService _service;
207 }