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 WebDAVProps. This utility wraps
024     * {@link com.liferay.portal.service.impl.WebDAVPropsLocalServiceImpl} 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 WebDAVPropsLocalService
032     * @see com.liferay.portal.service.base.WebDAVPropsLocalServiceBaseImpl
033     * @see com.liferay.portal.service.impl.WebDAVPropsLocalServiceImpl
034     * @generated
035     */
036    @ProviderType
037    public class WebDAVPropsLocalServiceUtil {
038            /*
039             * NOTE FOR DEVELOPERS:
040             *
041             * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.WebDAVPropsLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
042             */
043    
044            /**
045            * Adds the web d a v props to the database. Also notifies the appropriate model listeners.
046            *
047            * @param webDAVProps the web d a v props
048            * @return the web d a v props that was added
049            */
050            public static com.liferay.portal.model.WebDAVProps addWebDAVProps(
051                    com.liferay.portal.model.WebDAVProps webDAVProps) {
052                    return getService().addWebDAVProps(webDAVProps);
053            }
054    
055            /**
056            * Creates a new web d a v props with the primary key. Does not add the web d a v props to the database.
057            *
058            * @param webDavPropsId the primary key for the new web d a v props
059            * @return the new web d a v props
060            */
061            public static com.liferay.portal.model.WebDAVProps createWebDAVProps(
062                    long webDavPropsId) {
063                    return getService().createWebDAVProps(webDavPropsId);
064            }
065    
066            /**
067            * @throws PortalException
068            */
069            public static com.liferay.portal.model.PersistedModel deletePersistedModel(
070                    com.liferay.portal.model.PersistedModel persistedModel)
071                    throws com.liferay.portal.kernel.exception.PortalException {
072                    return getService().deletePersistedModel(persistedModel);
073            }
074    
075            public static void deleteWebDAVProps(java.lang.String className,
076                    long classPK) {
077                    getService().deleteWebDAVProps(className, classPK);
078            }
079    
080            /**
081            * Deletes the web d a v props from the database. Also notifies the appropriate model listeners.
082            *
083            * @param webDAVProps the web d a v props
084            * @return the web d a v props that was removed
085            */
086            public static com.liferay.portal.model.WebDAVProps deleteWebDAVProps(
087                    com.liferay.portal.model.WebDAVProps webDAVProps) {
088                    return getService().deleteWebDAVProps(webDAVProps);
089            }
090    
091            /**
092            * Deletes the web d a v props with the primary key from the database. Also notifies the appropriate model listeners.
093            *
094            * @param webDavPropsId the primary key of the web d a v props
095            * @return the web d a v props that was removed
096            * @throws PortalException if a web d a v props with the primary key could not be found
097            */
098            public static com.liferay.portal.model.WebDAVProps deleteWebDAVProps(
099                    long webDavPropsId)
100                    throws com.liferay.portal.kernel.exception.PortalException {
101                    return getService().deleteWebDAVProps(webDavPropsId);
102            }
103    
104            public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
105                    return getService().dynamicQuery();
106            }
107    
108            /**
109            * Performs a dynamic query on the database and returns the matching rows.
110            *
111            * @param dynamicQuery the dynamic query
112            * @return the matching rows
113            */
114            public static <T> java.util.List<T> dynamicQuery(
115                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
116                    return getService().dynamicQuery(dynamicQuery);
117            }
118    
119            /**
120            * Performs a dynamic query on the database and returns a range of the matching rows.
121            *
122            * <p>
123            * 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.WebDAVPropsModelImpl}. 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.
124            * </p>
125            *
126            * @param dynamicQuery the dynamic query
127            * @param start the lower bound of the range of model instances
128            * @param end the upper bound of the range of model instances (not inclusive)
129            * @return the range of matching rows
130            */
131            public static <T> java.util.List<T> dynamicQuery(
132                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133                    int end) {
134                    return getService().dynamicQuery(dynamicQuery, start, end);
135            }
136    
137            /**
138            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
139            *
140            * <p>
141            * 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.WebDAVPropsModelImpl}. 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.
142            * </p>
143            *
144            * @param dynamicQuery the dynamic query
145            * @param start the lower bound of the range of model instances
146            * @param end the upper bound of the range of model instances (not inclusive)
147            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
148            * @return the ordered range of matching rows
149            */
150            public static <T> java.util.List<T> dynamicQuery(
151                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
152                    int end,
153                    com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
154                    return getService()
155                                       .dynamicQuery(dynamicQuery, start, end, orderByComparator);
156            }
157    
158            /**
159            * Returns the number of rows matching the dynamic query.
160            *
161            * @param dynamicQuery the dynamic query
162            * @return the number of rows matching the dynamic query
163            */
164            public static long dynamicQueryCount(
165                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
166                    return getService().dynamicQueryCount(dynamicQuery);
167            }
168    
169            /**
170            * Returns the number of rows matching the dynamic query.
171            *
172            * @param dynamicQuery the dynamic query
173            * @param projection the projection to apply to the query
174            * @return the number of rows matching the dynamic query
175            */
176            public static long dynamicQueryCount(
177                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
178                    com.liferay.portal.kernel.dao.orm.Projection projection) {
179                    return getService().dynamicQueryCount(dynamicQuery, projection);
180            }
181    
182            public static com.liferay.portal.model.WebDAVProps fetchWebDAVProps(
183                    long webDavPropsId) {
184                    return getService().fetchWebDAVProps(webDavPropsId);
185            }
186    
187            public static com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
188                    return getService().getActionableDynamicQuery();
189            }
190    
191            /**
192            * Returns the OSGi service identifier.
193            *
194            * @return the OSGi service identifier
195            */
196            public static java.lang.String getOSGiServiceIdentifier() {
197                    return getService().getOSGiServiceIdentifier();
198            }
199    
200            public static com.liferay.portal.model.PersistedModel getPersistedModel(
201                    java.io.Serializable primaryKeyObj)
202                    throws com.liferay.portal.kernel.exception.PortalException {
203                    return getService().getPersistedModel(primaryKeyObj);
204            }
205    
206            public static com.liferay.portal.model.WebDAVProps getWebDAVProps(
207                    long companyId, java.lang.String className, long classPK) {
208                    return getService().getWebDAVProps(companyId, className, classPK);
209            }
210    
211            /**
212            * Returns the web d a v props with the primary key.
213            *
214            * @param webDavPropsId the primary key of the web d a v props
215            * @return the web d a v props
216            * @throws PortalException if a web d a v props with the primary key could not be found
217            */
218            public static com.liferay.portal.model.WebDAVProps getWebDAVProps(
219                    long webDavPropsId)
220                    throws com.liferay.portal.kernel.exception.PortalException {
221                    return getService().getWebDAVProps(webDavPropsId);
222            }
223    
224            /**
225            * Returns a range of all the web d a v propses.
226            *
227            * <p>
228            * 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.WebDAVPropsModelImpl}. 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.
229            * </p>
230            *
231            * @param start the lower bound of the range of web d a v propses
232            * @param end the upper bound of the range of web d a v propses (not inclusive)
233            * @return the range of web d a v propses
234            */
235            public static java.util.List<com.liferay.portal.model.WebDAVProps> getWebDAVPropses(
236                    int start, int end) {
237                    return getService().getWebDAVPropses(start, end);
238            }
239    
240            /**
241            * Returns the number of web d a v propses.
242            *
243            * @return the number of web d a v propses
244            */
245            public static int getWebDAVPropsesCount() {
246                    return getService().getWebDAVPropsesCount();
247            }
248    
249            public static void storeWebDAVProps(
250                    com.liferay.portal.model.WebDAVProps webDavProps)
251                    throws com.liferay.portal.kernel.exception.PortalException {
252                    getService().storeWebDAVProps(webDavProps);
253            }
254    
255            /**
256            * Updates the web d a v props in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
257            *
258            * @param webDAVProps the web d a v props
259            * @return the web d a v props that was updated
260            */
261            public static com.liferay.portal.model.WebDAVProps updateWebDAVProps(
262                    com.liferay.portal.model.WebDAVProps webDAVProps) {
263                    return getService().updateWebDAVProps(webDAVProps);
264            }
265    
266            public static WebDAVPropsLocalService getService() {
267                    if (_service == null) {
268                            _service = (WebDAVPropsLocalService)PortalBeanLocatorUtil.locate(WebDAVPropsLocalService.class.getName());
269    
270                            ReferenceRegistry.registerReference(WebDAVPropsLocalServiceUtil.class,
271                                    "_service");
272                    }
273    
274                    return _service;
275            }
276    
277            /**
278             * @deprecated As of 6.2.0
279             */
280            @Deprecated
281            public void setService(WebDAVPropsLocalService service) {
282            }
283    
284            private static WebDAVPropsLocalService _service;
285    }