001    /**
002     * Copyright (c) 2000-present 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    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
020    import com.liferay.portal.kernel.util.ReferenceRegistry;
021    
022    /**
023     * Provides the local service utility for PasswordTracker. This utility wraps
024     * {@link com.liferay.portal.service.impl.PasswordTrackerLocalServiceImpl} and is the
025     * primary access point for service operations in application layer code running
026     * on the local server. Methods of this service will not have security checks
027     * based on the propagated JAAS credentials because this service can only be
028     * accessed from within the same VM.
029     *
030     * @author Brian Wing Shun Chan
031     * @see PasswordTrackerLocalService
032     * @see com.liferay.portal.service.base.PasswordTrackerLocalServiceBaseImpl
033     * @see com.liferay.portal.service.impl.PasswordTrackerLocalServiceImpl
034     * @generated
035     */
036    @ProviderType
037    public class PasswordTrackerLocalServiceUtil {
038            /*
039             * NOTE FOR DEVELOPERS:
040             *
041             * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.PasswordTrackerLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
042             */
043    
044            /**
045            * Adds the password tracker to the database. Also notifies the appropriate model listeners.
046            *
047            * @param passwordTracker the password tracker
048            * @return the password tracker that was added
049            */
050            public static com.liferay.portal.model.PasswordTracker addPasswordTracker(
051                    com.liferay.portal.model.PasswordTracker passwordTracker) {
052                    return getService().addPasswordTracker(passwordTracker);
053            }
054    
055            /**
056            * Creates a new password tracker with the primary key. Does not add the password tracker to the database.
057            *
058            * @param passwordTrackerId the primary key for the new password tracker
059            * @return the new password tracker
060            */
061            public static com.liferay.portal.model.PasswordTracker createPasswordTracker(
062                    long passwordTrackerId) {
063                    return getService().createPasswordTracker(passwordTrackerId);
064            }
065    
066            /**
067            * Deletes the password tracker from the database. Also notifies the appropriate model listeners.
068            *
069            * @param passwordTracker the password tracker
070            * @return the password tracker that was removed
071            */
072            public static com.liferay.portal.model.PasswordTracker deletePasswordTracker(
073                    com.liferay.portal.model.PasswordTracker passwordTracker) {
074                    return getService().deletePasswordTracker(passwordTracker);
075            }
076    
077            /**
078            * Deletes the password tracker with the primary key from the database. Also notifies the appropriate model listeners.
079            *
080            * @param passwordTrackerId the primary key of the password tracker
081            * @return the password tracker that was removed
082            * @throws PortalException if a password tracker with the primary key could not be found
083            */
084            public static com.liferay.portal.model.PasswordTracker deletePasswordTracker(
085                    long passwordTrackerId)
086                    throws com.liferay.portal.kernel.exception.PortalException {
087                    return getService().deletePasswordTracker(passwordTrackerId);
088            }
089    
090            public static void deletePasswordTrackers(long userId) {
091                    getService().deletePasswordTrackers(userId);
092            }
093    
094            /**
095            * @throws PortalException
096            */
097            public static com.liferay.portal.model.PersistedModel deletePersistedModel(
098                    com.liferay.portal.model.PersistedModel persistedModel)
099                    throws com.liferay.portal.kernel.exception.PortalException {
100                    return getService().deletePersistedModel(persistedModel);
101            }
102    
103            public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
104                    return getService().dynamicQuery();
105            }
106    
107            /**
108            * Performs a dynamic query on the database and returns the matching rows.
109            *
110            * @param dynamicQuery the dynamic query
111            * @return the matching rows
112            */
113            public static <T> java.util.List<T> dynamicQuery(
114                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
115                    return getService().dynamicQuery(dynamicQuery);
116            }
117    
118            /**
119            * Performs a dynamic query on the database and returns a range of the matching rows.
120            *
121            * <p>
122            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.PasswordTrackerModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
123            * </p>
124            *
125            * @param dynamicQuery the dynamic query
126            * @param start the lower bound of the range of model instances
127            * @param end the upper bound of the range of model instances (not inclusive)
128            * @return the range of matching rows
129            */
130            public static <T> java.util.List<T> dynamicQuery(
131                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
132                    int end) {
133                    return getService().dynamicQuery(dynamicQuery, start, end);
134            }
135    
136            /**
137            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
138            *
139            * <p>
140            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.PasswordTrackerModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
141            * </p>
142            *
143            * @param dynamicQuery the dynamic query
144            * @param start the lower bound of the range of model instances
145            * @param end the upper bound of the range of model instances (not inclusive)
146            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
147            * @return the ordered range of matching rows
148            */
149            public static <T> java.util.List<T> dynamicQuery(
150                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
151                    int end,
152                    com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
153                    return getService()
154                                       .dynamicQuery(dynamicQuery, start, end, orderByComparator);
155            }
156    
157            /**
158            * Returns the number of rows matching the dynamic query.
159            *
160            * @param dynamicQuery the dynamic query
161            * @return the number of rows matching the dynamic query
162            */
163            public static long dynamicQueryCount(
164                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
165                    return getService().dynamicQueryCount(dynamicQuery);
166            }
167    
168            /**
169            * Returns the number of rows matching the dynamic query.
170            *
171            * @param dynamicQuery the dynamic query
172            * @param projection the projection to apply to the query
173            * @return the number of rows matching the dynamic query
174            */
175            public static long dynamicQueryCount(
176                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
177                    com.liferay.portal.kernel.dao.orm.Projection projection) {
178                    return getService().dynamicQueryCount(dynamicQuery, projection);
179            }
180    
181            public static com.liferay.portal.model.PasswordTracker fetchPasswordTracker(
182                    long passwordTrackerId) {
183                    return getService().fetchPasswordTracker(passwordTrackerId);
184            }
185    
186            public static com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
187                    return getService().getActionableDynamicQuery();
188            }
189    
190            /**
191            * Returns the Spring bean ID for this bean.
192            *
193            * @return the Spring bean ID for this bean
194            */
195            public static java.lang.String getBeanIdentifier() {
196                    return getService().getBeanIdentifier();
197            }
198    
199            /**
200            * Returns the password tracker with the primary key.
201            *
202            * @param passwordTrackerId the primary key of the password tracker
203            * @return the password tracker
204            * @throws PortalException if a password tracker with the primary key could not be found
205            */
206            public static com.liferay.portal.model.PasswordTracker getPasswordTracker(
207                    long passwordTrackerId)
208                    throws com.liferay.portal.kernel.exception.PortalException {
209                    return getService().getPasswordTracker(passwordTrackerId);
210            }
211    
212            /**
213            * Returns a range of all the password trackers.
214            *
215            * <p>
216            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.PasswordTrackerModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
217            * </p>
218            *
219            * @param start the lower bound of the range of password trackers
220            * @param end the upper bound of the range of password trackers (not inclusive)
221            * @return the range of password trackers
222            */
223            public static java.util.List<com.liferay.portal.model.PasswordTracker> getPasswordTrackers(
224                    int start, int end) {
225                    return getService().getPasswordTrackers(start, end);
226            }
227    
228            /**
229            * Returns the number of password trackers.
230            *
231            * @return the number of password trackers
232            */
233            public static int getPasswordTrackersCount() {
234                    return getService().getPasswordTrackersCount();
235            }
236    
237            public static com.liferay.portal.model.PersistedModel getPersistedModel(
238                    java.io.Serializable primaryKeyObj)
239                    throws com.liferay.portal.kernel.exception.PortalException {
240                    return getService().getPersistedModel(primaryKeyObj);
241            }
242    
243            public static boolean isSameAsCurrentPassword(long userId,
244                    java.lang.String newClearTextPwd)
245                    throws com.liferay.portal.kernel.exception.PortalException {
246                    return getService().isSameAsCurrentPassword(userId, newClearTextPwd);
247            }
248    
249            public static boolean isValidPassword(long userId,
250                    java.lang.String newClearTextPwd)
251                    throws com.liferay.portal.kernel.exception.PortalException {
252                    return getService().isValidPassword(userId, newClearTextPwd);
253            }
254    
255            /**
256            * Sets the Spring bean ID for this bean.
257            *
258            * @param beanIdentifier the Spring bean ID for this bean
259            */
260            public static void setBeanIdentifier(java.lang.String beanIdentifier) {
261                    getService().setBeanIdentifier(beanIdentifier);
262            }
263    
264            public static void trackPassword(long userId, java.lang.String encPassword)
265                    throws com.liferay.portal.kernel.exception.PortalException {
266                    getService().trackPassword(userId, encPassword);
267            }
268    
269            /**
270            * Updates the password tracker in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
271            *
272            * @param passwordTracker the password tracker
273            * @return the password tracker that was updated
274            */
275            public static com.liferay.portal.model.PasswordTracker updatePasswordTracker(
276                    com.liferay.portal.model.PasswordTracker passwordTracker) {
277                    return getService().updatePasswordTracker(passwordTracker);
278            }
279    
280            public static PasswordTrackerLocalService getService() {
281                    if (_service == null) {
282                            _service = (PasswordTrackerLocalService)PortalBeanLocatorUtil.locate(PasswordTrackerLocalService.class.getName());
283    
284                            ReferenceRegistry.registerReference(PasswordTrackerLocalServiceUtil.class,
285                                    "_service");
286                    }
287    
288                    return _service;
289            }
290    
291            /**
292             * @deprecated As of 6.2.0
293             */
294            @Deprecated
295            public void setService(PasswordTrackerLocalService service) {
296            }
297    
298            private static PasswordTrackerLocalService _service;
299    }