001    /**
002     * Copyright (c) 2000-2013 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.portlet.wiki.service.persistence;
016    
017    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    import com.liferay.portal.kernel.dao.orm.DynamicQuery;
019    import com.liferay.portal.kernel.exception.SystemException;
020    import com.liferay.portal.kernel.util.OrderByComparator;
021    import com.liferay.portal.kernel.util.ReferenceRegistry;
022    import com.liferay.portal.service.ServiceContext;
023    
024    import com.liferay.portlet.wiki.model.WikiPageResource;
025    
026    import java.util.List;
027    
028    /**
029     * The persistence utility for the wiki page resource service. This utility wraps {@link WikiPageResourcePersistenceImpl} and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
030     *
031     * <p>
032     * Caching information and settings can be found in <code>portal.properties</code>
033     * </p>
034     *
035     * @author Brian Wing Shun Chan
036     * @see WikiPageResourcePersistence
037     * @see WikiPageResourcePersistenceImpl
038     * @generated
039     */
040    public class WikiPageResourceUtil {
041            /*
042             * NOTE FOR DEVELOPERS:
043             *
044             * Never modify this class directly. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class.
045             */
046    
047            /**
048             * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
049             */
050            public static void clearCache() {
051                    getPersistence().clearCache();
052            }
053    
054            /**
055             * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(com.liferay.portal.model.BaseModel)
056             */
057            public static void clearCache(WikiPageResource wikiPageResource) {
058                    getPersistence().clearCache(wikiPageResource);
059            }
060    
061            /**
062             * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
063             */
064            public long countWithDynamicQuery(DynamicQuery dynamicQuery)
065                    throws SystemException {
066                    return getPersistence().countWithDynamicQuery(dynamicQuery);
067            }
068    
069            /**
070             * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
071             */
072            public static List<WikiPageResource> findWithDynamicQuery(
073                    DynamicQuery dynamicQuery) throws SystemException {
074                    return getPersistence().findWithDynamicQuery(dynamicQuery);
075            }
076    
077            /**
078             * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
079             */
080            public static List<WikiPageResource> findWithDynamicQuery(
081                    DynamicQuery dynamicQuery, int start, int end)
082                    throws SystemException {
083                    return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
084            }
085    
086            /**
087             * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
088             */
089            public static List<WikiPageResource> findWithDynamicQuery(
090                    DynamicQuery dynamicQuery, int start, int end,
091                    OrderByComparator orderByComparator) throws SystemException {
092                    return getPersistence()
093                                       .findWithDynamicQuery(dynamicQuery, start, end,
094                            orderByComparator);
095            }
096    
097            /**
098             * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean)
099             */
100            public static WikiPageResource update(WikiPageResource wikiPageResource,
101                    boolean merge) throws SystemException {
102                    return getPersistence().update(wikiPageResource, merge);
103            }
104    
105            /**
106             * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)
107             */
108            public static WikiPageResource update(WikiPageResource wikiPageResource,
109                    boolean merge, ServiceContext serviceContext) throws SystemException {
110                    return getPersistence().update(wikiPageResource, merge, serviceContext);
111            }
112    
113            /**
114            * Caches the wiki page resource in the entity cache if it is enabled.
115            *
116            * @param wikiPageResource the wiki page resource
117            */
118            public static void cacheResult(
119                    com.liferay.portlet.wiki.model.WikiPageResource wikiPageResource) {
120                    getPersistence().cacheResult(wikiPageResource);
121            }
122    
123            /**
124            * Caches the wiki page resources in the entity cache if it is enabled.
125            *
126            * @param wikiPageResources the wiki page resources
127            */
128            public static void cacheResult(
129                    java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> wikiPageResources) {
130                    getPersistence().cacheResult(wikiPageResources);
131            }
132    
133            /**
134            * Creates a new wiki page resource with the primary key. Does not add the wiki page resource to the database.
135            *
136            * @param resourcePrimKey the primary key for the new wiki page resource
137            * @return the new wiki page resource
138            */
139            public static com.liferay.portlet.wiki.model.WikiPageResource create(
140                    long resourcePrimKey) {
141                    return getPersistence().create(resourcePrimKey);
142            }
143    
144            /**
145            * Removes the wiki page resource with the primary key from the database. Also notifies the appropriate model listeners.
146            *
147            * @param resourcePrimKey the primary key of the wiki page resource
148            * @return the wiki page resource that was removed
149            * @throws com.liferay.portlet.wiki.NoSuchPageResourceException if a wiki page resource with the primary key could not be found
150            * @throws SystemException if a system exception occurred
151            */
152            public static com.liferay.portlet.wiki.model.WikiPageResource remove(
153                    long resourcePrimKey)
154                    throws com.liferay.portal.kernel.exception.SystemException,
155                            com.liferay.portlet.wiki.NoSuchPageResourceException {
156                    return getPersistence().remove(resourcePrimKey);
157            }
158    
159            public static com.liferay.portlet.wiki.model.WikiPageResource updateImpl(
160                    com.liferay.portlet.wiki.model.WikiPageResource wikiPageResource,
161                    boolean merge)
162                    throws com.liferay.portal.kernel.exception.SystemException {
163                    return getPersistence().updateImpl(wikiPageResource, merge);
164            }
165    
166            /**
167            * Returns the wiki page resource with the primary key or throws a {@link com.liferay.portlet.wiki.NoSuchPageResourceException} if it could not be found.
168            *
169            * @param resourcePrimKey the primary key of the wiki page resource
170            * @return the wiki page resource
171            * @throws com.liferay.portlet.wiki.NoSuchPageResourceException if a wiki page resource with the primary key could not be found
172            * @throws SystemException if a system exception occurred
173            */
174            public static com.liferay.portlet.wiki.model.WikiPageResource findByPrimaryKey(
175                    long resourcePrimKey)
176                    throws com.liferay.portal.kernel.exception.SystemException,
177                            com.liferay.portlet.wiki.NoSuchPageResourceException {
178                    return getPersistence().findByPrimaryKey(resourcePrimKey);
179            }
180    
181            /**
182            * Returns the wiki page resource with the primary key or returns <code>null</code> if it could not be found.
183            *
184            * @param resourcePrimKey the primary key of the wiki page resource
185            * @return the wiki page resource, or <code>null</code> if a wiki page resource with the primary key could not be found
186            * @throws SystemException if a system exception occurred
187            */
188            public static com.liferay.portlet.wiki.model.WikiPageResource fetchByPrimaryKey(
189                    long resourcePrimKey)
190                    throws com.liferay.portal.kernel.exception.SystemException {
191                    return getPersistence().fetchByPrimaryKey(resourcePrimKey);
192            }
193    
194            /**
195            * Returns all the wiki page resources where uuid = &#63;.
196            *
197            * @param uuid the uuid
198            * @return the matching wiki page resources
199            * @throws SystemException if a system exception occurred
200            */
201            public static java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findByUuid(
202                    java.lang.String uuid)
203                    throws com.liferay.portal.kernel.exception.SystemException {
204                    return getPersistence().findByUuid(uuid);
205            }
206    
207            /**
208            * Returns a range of all the wiki page resources where uuid = &#63;.
209            *
210            * <p>
211            * 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.
212            * </p>
213            *
214            * @param uuid the uuid
215            * @param start the lower bound of the range of wiki page resources
216            * @param end the upper bound of the range of wiki page resources (not inclusive)
217            * @return the range of matching wiki page resources
218            * @throws SystemException if a system exception occurred
219            */
220            public static java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findByUuid(
221                    java.lang.String uuid, int start, int end)
222                    throws com.liferay.portal.kernel.exception.SystemException {
223                    return getPersistence().findByUuid(uuid, start, end);
224            }
225    
226            /**
227            * Returns an ordered range of all the wiki page resources where uuid = &#63;.
228            *
229            * <p>
230            * 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.
231            * </p>
232            *
233            * @param uuid the uuid
234            * @param start the lower bound of the range of wiki page resources
235            * @param end the upper bound of the range of wiki page resources (not inclusive)
236            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
237            * @return the ordered range of matching wiki page resources
238            * @throws SystemException if a system exception occurred
239            */
240            public static java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findByUuid(
241                    java.lang.String uuid, int start, int end,
242                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
243                    throws com.liferay.portal.kernel.exception.SystemException {
244                    return getPersistence().findByUuid(uuid, start, end, orderByComparator);
245            }
246    
247            /**
248            * Returns the first wiki page resource in the ordered set where uuid = &#63;.
249            *
250            * @param uuid the uuid
251            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
252            * @return the first matching wiki page resource
253            * @throws com.liferay.portlet.wiki.NoSuchPageResourceException if a matching wiki page resource could not be found
254            * @throws SystemException if a system exception occurred
255            */
256            public static com.liferay.portlet.wiki.model.WikiPageResource findByUuid_First(
257                    java.lang.String uuid,
258                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
259                    throws com.liferay.portal.kernel.exception.SystemException,
260                            com.liferay.portlet.wiki.NoSuchPageResourceException {
261                    return getPersistence().findByUuid_First(uuid, orderByComparator);
262            }
263    
264            /**
265            * Returns the first wiki page resource in the ordered set where uuid = &#63;.
266            *
267            * @param uuid the uuid
268            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
269            * @return the first matching wiki page resource, or <code>null</code> if a matching wiki page resource could not be found
270            * @throws SystemException if a system exception occurred
271            */
272            public static com.liferay.portlet.wiki.model.WikiPageResource fetchByUuid_First(
273                    java.lang.String uuid,
274                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
275                    throws com.liferay.portal.kernel.exception.SystemException {
276                    return getPersistence().fetchByUuid_First(uuid, orderByComparator);
277            }
278    
279            /**
280            * Returns the last wiki page resource in the ordered set where uuid = &#63;.
281            *
282            * @param uuid the uuid
283            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
284            * @return the last matching wiki page resource
285            * @throws com.liferay.portlet.wiki.NoSuchPageResourceException if a matching wiki page resource could not be found
286            * @throws SystemException if a system exception occurred
287            */
288            public static com.liferay.portlet.wiki.model.WikiPageResource findByUuid_Last(
289                    java.lang.String uuid,
290                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
291                    throws com.liferay.portal.kernel.exception.SystemException,
292                            com.liferay.portlet.wiki.NoSuchPageResourceException {
293                    return getPersistence().findByUuid_Last(uuid, orderByComparator);
294            }
295    
296            /**
297            * Returns the last wiki page resource in the ordered set where uuid = &#63;.
298            *
299            * @param uuid the uuid
300            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
301            * @return the last matching wiki page resource, or <code>null</code> if a matching wiki page resource could not be found
302            * @throws SystemException if a system exception occurred
303            */
304            public static com.liferay.portlet.wiki.model.WikiPageResource fetchByUuid_Last(
305                    java.lang.String uuid,
306                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
307                    throws com.liferay.portal.kernel.exception.SystemException {
308                    return getPersistence().fetchByUuid_Last(uuid, orderByComparator);
309            }
310    
311            /**
312            * Returns the wiki page resources before and after the current wiki page resource in the ordered set where uuid = &#63;.
313            *
314            * @param resourcePrimKey the primary key of the current wiki page resource
315            * @param uuid the uuid
316            * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
317            * @return the previous, current, and next wiki page resource
318            * @throws com.liferay.portlet.wiki.NoSuchPageResourceException if a wiki page resource with the primary key could not be found
319            * @throws SystemException if a system exception occurred
320            */
321            public static com.liferay.portlet.wiki.model.WikiPageResource[] findByUuid_PrevAndNext(
322                    long resourcePrimKey, java.lang.String uuid,
323                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
324                    throws com.liferay.portal.kernel.exception.SystemException,
325                            com.liferay.portlet.wiki.NoSuchPageResourceException {
326                    return getPersistence()
327                                       .findByUuid_PrevAndNext(resourcePrimKey, uuid,
328                            orderByComparator);
329            }
330    
331            /**
332            * Returns the wiki page resource where nodeId = &#63; and title = &#63; or throws a {@link com.liferay.portlet.wiki.NoSuchPageResourceException} if it could not be found.
333            *
334            * @param nodeId the node ID
335            * @param title the title
336            * @return the matching wiki page resource
337            * @throws com.liferay.portlet.wiki.NoSuchPageResourceException if a matching wiki page resource could not be found
338            * @throws SystemException if a system exception occurred
339            */
340            public static com.liferay.portlet.wiki.model.WikiPageResource findByN_T(
341                    long nodeId, java.lang.String title)
342                    throws com.liferay.portal.kernel.exception.SystemException,
343                            com.liferay.portlet.wiki.NoSuchPageResourceException {
344                    return getPersistence().findByN_T(nodeId, title);
345            }
346    
347            /**
348            * Returns the wiki page resource where nodeId = &#63; and title = &#63; or returns <code>null</code> if it could not be found. Uses the finder cache.
349            *
350            * @param nodeId the node ID
351            * @param title the title
352            * @return the matching wiki page resource, or <code>null</code> if a matching wiki page resource could not be found
353            * @throws SystemException if a system exception occurred
354            */
355            public static com.liferay.portlet.wiki.model.WikiPageResource fetchByN_T(
356                    long nodeId, java.lang.String title)
357                    throws com.liferay.portal.kernel.exception.SystemException {
358                    return getPersistence().fetchByN_T(nodeId, title);
359            }
360    
361            /**
362            * Returns the wiki page resource where nodeId = &#63; and title = &#63; or returns <code>null</code> if it could not be found, optionally using the finder cache.
363            *
364            * @param nodeId the node ID
365            * @param title the title
366            * @param retrieveFromCache whether to use the finder cache
367            * @return the matching wiki page resource, or <code>null</code> if a matching wiki page resource could not be found
368            * @throws SystemException if a system exception occurred
369            */
370            public static com.liferay.portlet.wiki.model.WikiPageResource fetchByN_T(
371                    long nodeId, java.lang.String title, boolean retrieveFromCache)
372                    throws com.liferay.portal.kernel.exception.SystemException {
373                    return getPersistence().fetchByN_T(nodeId, title, retrieveFromCache);
374            }
375    
376            /**
377            * Returns all the wiki page resources.
378            *
379            * @return the wiki page resources
380            * @throws SystemException if a system exception occurred
381            */
382            public static java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findAll()
383                    throws com.liferay.portal.kernel.exception.SystemException {
384                    return getPersistence().findAll();
385            }
386    
387            /**
388            * Returns a range of all the wiki page resources.
389            *
390            * <p>
391            * 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.
392            * </p>
393            *
394            * @param start the lower bound of the range of wiki page resources
395            * @param end the upper bound of the range of wiki page resources (not inclusive)
396            * @return the range of wiki page resources
397            * @throws SystemException if a system exception occurred
398            */
399            public static java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findAll(
400                    int start, int end)
401                    throws com.liferay.portal.kernel.exception.SystemException {
402                    return getPersistence().findAll(start, end);
403            }
404    
405            /**
406            * Returns an ordered range of all the wiki page resources.
407            *
408            * <p>
409            * 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.
410            * </p>
411            *
412            * @param start the lower bound of the range of wiki page resources
413            * @param end the upper bound of the range of wiki page resources (not inclusive)
414            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
415            * @return the ordered range of wiki page resources
416            * @throws SystemException if a system exception occurred
417            */
418            public static java.util.List<com.liferay.portlet.wiki.model.WikiPageResource> findAll(
419                    int start, int end,
420                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
421                    throws com.liferay.portal.kernel.exception.SystemException {
422                    return getPersistence().findAll(start, end, orderByComparator);
423            }
424    
425            /**
426            * Removes all the wiki page resources where uuid = &#63; from the database.
427            *
428            * @param uuid the uuid
429            * @throws SystemException if a system exception occurred
430            */
431            public static void removeByUuid(java.lang.String uuid)
432                    throws com.liferay.portal.kernel.exception.SystemException {
433                    getPersistence().removeByUuid(uuid);
434            }
435    
436            /**
437            * Removes the wiki page resource where nodeId = &#63; and title = &#63; from the database.
438            *
439            * @param nodeId the node ID
440            * @param title the title
441            * @return the wiki page resource that was removed
442            * @throws SystemException if a system exception occurred
443            */
444            public static com.liferay.portlet.wiki.model.WikiPageResource removeByN_T(
445                    long nodeId, java.lang.String title)
446                    throws com.liferay.portal.kernel.exception.SystemException,
447                            com.liferay.portlet.wiki.NoSuchPageResourceException {
448                    return getPersistence().removeByN_T(nodeId, title);
449            }
450    
451            /**
452            * Removes all the wiki page resources from the database.
453            *
454            * @throws SystemException if a system exception occurred
455            */
456            public static void removeAll()
457                    throws com.liferay.portal.kernel.exception.SystemException {
458                    getPersistence().removeAll();
459            }
460    
461            /**
462            * Returns the number of wiki page resources where uuid = &#63;.
463            *
464            * @param uuid the uuid
465            * @return the number of matching wiki page resources
466            * @throws SystemException if a system exception occurred
467            */
468            public static int countByUuid(java.lang.String uuid)
469                    throws com.liferay.portal.kernel.exception.SystemException {
470                    return getPersistence().countByUuid(uuid);
471            }
472    
473            /**
474            * Returns the number of wiki page resources where nodeId = &#63; and title = &#63;.
475            *
476            * @param nodeId the node ID
477            * @param title the title
478            * @return the number of matching wiki page resources
479            * @throws SystemException if a system exception occurred
480            */
481            public static int countByN_T(long nodeId, java.lang.String title)
482                    throws com.liferay.portal.kernel.exception.SystemException {
483                    return getPersistence().countByN_T(nodeId, title);
484            }
485    
486            /**
487            * Returns the number of wiki page resources.
488            *
489            * @return the number of wiki page resources
490            * @throws SystemException if a system exception occurred
491            */
492            public static int countAll()
493                    throws com.liferay.portal.kernel.exception.SystemException {
494                    return getPersistence().countAll();
495            }
496    
497            public static WikiPageResourcePersistence getPersistence() {
498                    if (_persistence == null) {
499                            _persistence = (WikiPageResourcePersistence)PortalBeanLocatorUtil.locate(WikiPageResourcePersistence.class.getName());
500    
501                            ReferenceRegistry.registerReference(WikiPageResourceUtil.class,
502                                    "_persistence");
503                    }
504    
505                    return _persistence;
506            }
507    
508            /**
509             * @deprecated
510             */
511            public void setPersistence(WikiPageResourcePersistence persistence) {
512            }
513    
514            private static WikiPageResourcePersistence _persistence;
515    }