1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.wiki.service.persistence;
16  
17  import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
19  import com.liferay.portal.kernel.exception.SystemException;
20  
21  import com.liferay.portlet.wiki.model.WikiPage;
22  
23  import java.util.List;
24  
25  /**
26   * <a href="WikiPageUtil.java.html"><b><i>View Source</i></b></a>
27   *
28   * <p>
29   * ServiceBuilder generated this class. Modifications in this class will be
30   * overwritten the next time is generated.
31   * </p>
32   *
33   * @author    Brian Wing Shun Chan
34   * @see       WikiPagePersistence
35   * @see       WikiPagePersistenceImpl
36   * @generated
37   */
38  public class WikiPageUtil {
39      /**
40       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
41       */
42      public static void clearCache() {
43          getPersistence().clearCache();
44      }
45  
46      /**
47       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(WikiPage)
48       */
49      public static void clearCache(WikiPage wikiPage) {
50          getPersistence().clearCache(wikiPage);
51      }
52  
53      /**
54       * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
55       */
56      public long countWithDynamicQuery(DynamicQuery dynamicQuery)
57          throws SystemException {
58          return getPersistence().countWithDynamicQuery(dynamicQuery);
59      }
60  
61      /**
62       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
63       */
64      public static List<WikiPage> findWithDynamicQuery(DynamicQuery dynamicQuery)
65          throws SystemException {
66          return getPersistence().findWithDynamicQuery(dynamicQuery);
67      }
68  
69      /**
70       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
71       */
72      public static List<WikiPage> findWithDynamicQuery(
73          DynamicQuery dynamicQuery, int start, int end)
74          throws SystemException {
75          return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
76      }
77  
78      /**
79       * @see com.liferay.portal.service.persistence.BasePersistence#remove(com.liferay.portal.model.BaseModel)
80       */
81      public static WikiPage remove(WikiPage wikiPage) throws SystemException {
82          return getPersistence().remove(wikiPage);
83      }
84  
85      /**
86       * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean)
87       */
88      public static WikiPage update(WikiPage wikiPage, boolean merge)
89          throws SystemException {
90          return getPersistence().update(wikiPage, merge);
91      }
92  
93      public static void cacheResult(
94          com.liferay.portlet.wiki.model.WikiPage wikiPage) {
95          getPersistence().cacheResult(wikiPage);
96      }
97  
98      public static void cacheResult(
99          java.util.List<com.liferay.portlet.wiki.model.WikiPage> wikiPages) {
100         getPersistence().cacheResult(wikiPages);
101     }
102 
103     public static com.liferay.portlet.wiki.model.WikiPage create(long pageId) {
104         return getPersistence().create(pageId);
105     }
106 
107     public static com.liferay.portlet.wiki.model.WikiPage remove(long pageId)
108         throws com.liferay.portal.kernel.exception.SystemException,
109             com.liferay.portlet.wiki.NoSuchPageException {
110         return getPersistence().remove(pageId);
111     }
112 
113     public static com.liferay.portlet.wiki.model.WikiPage updateImpl(
114         com.liferay.portlet.wiki.model.WikiPage wikiPage, boolean merge)
115         throws com.liferay.portal.kernel.exception.SystemException {
116         return getPersistence().updateImpl(wikiPage, merge);
117     }
118 
119     public static com.liferay.portlet.wiki.model.WikiPage findByPrimaryKey(
120         long pageId)
121         throws com.liferay.portal.kernel.exception.SystemException,
122             com.liferay.portlet.wiki.NoSuchPageException {
123         return getPersistence().findByPrimaryKey(pageId);
124     }
125 
126     public static com.liferay.portlet.wiki.model.WikiPage fetchByPrimaryKey(
127         long pageId) throws com.liferay.portal.kernel.exception.SystemException {
128         return getPersistence().fetchByPrimaryKey(pageId);
129     }
130 
131     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
132         java.lang.String uuid)
133         throws com.liferay.portal.kernel.exception.SystemException {
134         return getPersistence().findByUuid(uuid);
135     }
136 
137     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
138         java.lang.String uuid, int start, int end)
139         throws com.liferay.portal.kernel.exception.SystemException {
140         return getPersistence().findByUuid(uuid, start, end);
141     }
142 
143     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
144         java.lang.String uuid, int start, int end,
145         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
146         throws com.liferay.portal.kernel.exception.SystemException {
147         return getPersistence().findByUuid(uuid, start, end, orderByComparator);
148     }
149 
150     public static com.liferay.portlet.wiki.model.WikiPage findByUuid_First(
151         java.lang.String uuid,
152         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
153         throws com.liferay.portal.kernel.exception.SystemException,
154             com.liferay.portlet.wiki.NoSuchPageException {
155         return getPersistence().findByUuid_First(uuid, orderByComparator);
156     }
157 
158     public static com.liferay.portlet.wiki.model.WikiPage findByUuid_Last(
159         java.lang.String uuid,
160         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
161         throws com.liferay.portal.kernel.exception.SystemException,
162             com.liferay.portlet.wiki.NoSuchPageException {
163         return getPersistence().findByUuid_Last(uuid, orderByComparator);
164     }
165 
166     public static com.liferay.portlet.wiki.model.WikiPage[] findByUuid_PrevAndNext(
167         long pageId, java.lang.String uuid,
168         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
169         throws com.liferay.portal.kernel.exception.SystemException,
170             com.liferay.portlet.wiki.NoSuchPageException {
171         return getPersistence()
172                    .findByUuid_PrevAndNext(pageId, uuid, orderByComparator);
173     }
174 
175     public static com.liferay.portlet.wiki.model.WikiPage findByUUID_G(
176         java.lang.String uuid, long groupId)
177         throws com.liferay.portal.kernel.exception.SystemException,
178             com.liferay.portlet.wiki.NoSuchPageException {
179         return getPersistence().findByUUID_G(uuid, groupId);
180     }
181 
182     public static com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
183         java.lang.String uuid, long groupId)
184         throws com.liferay.portal.kernel.exception.SystemException {
185         return getPersistence().fetchByUUID_G(uuid, groupId);
186     }
187 
188     public static com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
189         java.lang.String uuid, long groupId, boolean retrieveFromCache)
190         throws com.liferay.portal.kernel.exception.SystemException {
191         return getPersistence().fetchByUUID_G(uuid, groupId, retrieveFromCache);
192     }
193 
194     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
195         long nodeId) throws com.liferay.portal.kernel.exception.SystemException {
196         return getPersistence().findByNodeId(nodeId);
197     }
198 
199     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
200         long nodeId, int start, int end)
201         throws com.liferay.portal.kernel.exception.SystemException {
202         return getPersistence().findByNodeId(nodeId, start, end);
203     }
204 
205     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
206         long nodeId, int start, int end,
207         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
208         throws com.liferay.portal.kernel.exception.SystemException {
209         return getPersistence()
210                    .findByNodeId(nodeId, start, end, orderByComparator);
211     }
212 
213     public static com.liferay.portlet.wiki.model.WikiPage findByNodeId_First(
214         long nodeId,
215         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
216         throws com.liferay.portal.kernel.exception.SystemException,
217             com.liferay.portlet.wiki.NoSuchPageException {
218         return getPersistence().findByNodeId_First(nodeId, orderByComparator);
219     }
220 
221     public static com.liferay.portlet.wiki.model.WikiPage findByNodeId_Last(
222         long nodeId,
223         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
224         throws com.liferay.portal.kernel.exception.SystemException,
225             com.liferay.portlet.wiki.NoSuchPageException {
226         return getPersistence().findByNodeId_Last(nodeId, orderByComparator);
227     }
228 
229     public static com.liferay.portlet.wiki.model.WikiPage[] findByNodeId_PrevAndNext(
230         long pageId, long nodeId,
231         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
232         throws com.liferay.portal.kernel.exception.SystemException,
233             com.liferay.portlet.wiki.NoSuchPageException {
234         return getPersistence()
235                    .findByNodeId_PrevAndNext(pageId, nodeId, orderByComparator);
236     }
237 
238     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
239         java.lang.String format)
240         throws com.liferay.portal.kernel.exception.SystemException {
241         return getPersistence().findByFormat(format);
242     }
243 
244     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
245         java.lang.String format, int start, int end)
246         throws com.liferay.portal.kernel.exception.SystemException {
247         return getPersistence().findByFormat(format, start, end);
248     }
249 
250     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
251         java.lang.String format, int start, int end,
252         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
253         throws com.liferay.portal.kernel.exception.SystemException {
254         return getPersistence()
255                    .findByFormat(format, start, end, orderByComparator);
256     }
257 
258     public static com.liferay.portlet.wiki.model.WikiPage findByFormat_First(
259         java.lang.String format,
260         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
261         throws com.liferay.portal.kernel.exception.SystemException,
262             com.liferay.portlet.wiki.NoSuchPageException {
263         return getPersistence().findByFormat_First(format, orderByComparator);
264     }
265 
266     public static com.liferay.portlet.wiki.model.WikiPage findByFormat_Last(
267         java.lang.String format,
268         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
269         throws com.liferay.portal.kernel.exception.SystemException,
270             com.liferay.portlet.wiki.NoSuchPageException {
271         return getPersistence().findByFormat_Last(format, orderByComparator);
272     }
273 
274     public static com.liferay.portlet.wiki.model.WikiPage[] findByFormat_PrevAndNext(
275         long pageId, java.lang.String format,
276         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
277         throws com.liferay.portal.kernel.exception.SystemException,
278             com.liferay.portlet.wiki.NoSuchPageException {
279         return getPersistence()
280                    .findByFormat_PrevAndNext(pageId, format, orderByComparator);
281     }
282 
283     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
284         long resourcePrimKey, long nodeId)
285         throws com.liferay.portal.kernel.exception.SystemException {
286         return getPersistence().findByR_N(resourcePrimKey, nodeId);
287     }
288 
289     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
290         long resourcePrimKey, long nodeId, int start, int end)
291         throws com.liferay.portal.kernel.exception.SystemException {
292         return getPersistence().findByR_N(resourcePrimKey, nodeId, start, end);
293     }
294 
295     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
296         long resourcePrimKey, long nodeId, int start, int end,
297         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
298         throws com.liferay.portal.kernel.exception.SystemException {
299         return getPersistence()
300                    .findByR_N(resourcePrimKey, nodeId, start, end,
301             orderByComparator);
302     }
303 
304     public static com.liferay.portlet.wiki.model.WikiPage findByR_N_First(
305         long resourcePrimKey, long nodeId,
306         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
307         throws com.liferay.portal.kernel.exception.SystemException,
308             com.liferay.portlet.wiki.NoSuchPageException {
309         return getPersistence()
310                    .findByR_N_First(resourcePrimKey, nodeId, orderByComparator);
311     }
312 
313     public static com.liferay.portlet.wiki.model.WikiPage findByR_N_Last(
314         long resourcePrimKey, long nodeId,
315         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
316         throws com.liferay.portal.kernel.exception.SystemException,
317             com.liferay.portlet.wiki.NoSuchPageException {
318         return getPersistence()
319                    .findByR_N_Last(resourcePrimKey, nodeId, orderByComparator);
320     }
321 
322     public static com.liferay.portlet.wiki.model.WikiPage[] findByR_N_PrevAndNext(
323         long pageId, long resourcePrimKey, long nodeId,
324         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
325         throws com.liferay.portal.kernel.exception.SystemException,
326             com.liferay.portlet.wiki.NoSuchPageException {
327         return getPersistence()
328                    .findByR_N_PrevAndNext(pageId, resourcePrimKey, nodeId,
329             orderByComparator);
330     }
331 
332     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
333         long nodeId, java.lang.String title)
334         throws com.liferay.portal.kernel.exception.SystemException {
335         return getPersistence().findByN_T(nodeId, title);
336     }
337 
338     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
339         long nodeId, java.lang.String title, int start, int end)
340         throws com.liferay.portal.kernel.exception.SystemException {
341         return getPersistence().findByN_T(nodeId, title, start, end);
342     }
343 
344     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
345         long nodeId, java.lang.String title, int start, int end,
346         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
347         throws com.liferay.portal.kernel.exception.SystemException {
348         return getPersistence()
349                    .findByN_T(nodeId, title, start, end, orderByComparator);
350     }
351 
352     public static com.liferay.portlet.wiki.model.WikiPage findByN_T_First(
353         long nodeId, java.lang.String title,
354         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
355         throws com.liferay.portal.kernel.exception.SystemException,
356             com.liferay.portlet.wiki.NoSuchPageException {
357         return getPersistence().findByN_T_First(nodeId, title, orderByComparator);
358     }
359 
360     public static com.liferay.portlet.wiki.model.WikiPage findByN_T_Last(
361         long nodeId, java.lang.String title,
362         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
363         throws com.liferay.portal.kernel.exception.SystemException,
364             com.liferay.portlet.wiki.NoSuchPageException {
365         return getPersistence().findByN_T_Last(nodeId, title, orderByComparator);
366     }
367 
368     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_T_PrevAndNext(
369         long pageId, long nodeId, java.lang.String title,
370         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
371         throws com.liferay.portal.kernel.exception.SystemException,
372             com.liferay.portlet.wiki.NoSuchPageException {
373         return getPersistence()
374                    .findByN_T_PrevAndNext(pageId, nodeId, title,
375             orderByComparator);
376     }
377 
378     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
379         long nodeId, boolean head)
380         throws com.liferay.portal.kernel.exception.SystemException {
381         return getPersistence().findByN_H(nodeId, head);
382     }
383 
384     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
385         long nodeId, boolean head, int start, int end)
386         throws com.liferay.portal.kernel.exception.SystemException {
387         return getPersistence().findByN_H(nodeId, head, start, end);
388     }
389 
390     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
391         long nodeId, boolean head, int start, int end,
392         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
393         throws com.liferay.portal.kernel.exception.SystemException {
394         return getPersistence()
395                    .findByN_H(nodeId, head, start, end, orderByComparator);
396     }
397 
398     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_First(
399         long nodeId, boolean head,
400         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
401         throws com.liferay.portal.kernel.exception.SystemException,
402             com.liferay.portlet.wiki.NoSuchPageException {
403         return getPersistence().findByN_H_First(nodeId, head, orderByComparator);
404     }
405 
406     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_Last(
407         long nodeId, boolean head,
408         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
409         throws com.liferay.portal.kernel.exception.SystemException,
410             com.liferay.portlet.wiki.NoSuchPageException {
411         return getPersistence().findByN_H_Last(nodeId, head, orderByComparator);
412     }
413 
414     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_PrevAndNext(
415         long pageId, long nodeId, boolean head,
416         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
417         throws com.liferay.portal.kernel.exception.SystemException,
418             com.liferay.portlet.wiki.NoSuchPageException {
419         return getPersistence()
420                    .findByN_H_PrevAndNext(pageId, nodeId, head,
421             orderByComparator);
422     }
423 
424     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
425         long nodeId, java.lang.String parentTitle)
426         throws com.liferay.portal.kernel.exception.SystemException {
427         return getPersistence().findByN_P(nodeId, parentTitle);
428     }
429 
430     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
431         long nodeId, java.lang.String parentTitle, int start, int end)
432         throws com.liferay.portal.kernel.exception.SystemException {
433         return getPersistence().findByN_P(nodeId, parentTitle, start, end);
434     }
435 
436     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
437         long nodeId, java.lang.String parentTitle, int start, int end,
438         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
439         throws com.liferay.portal.kernel.exception.SystemException {
440         return getPersistence()
441                    .findByN_P(nodeId, parentTitle, start, end, orderByComparator);
442     }
443 
444     public static com.liferay.portlet.wiki.model.WikiPage findByN_P_First(
445         long nodeId, java.lang.String parentTitle,
446         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
447         throws com.liferay.portal.kernel.exception.SystemException,
448             com.liferay.portlet.wiki.NoSuchPageException {
449         return getPersistence()
450                    .findByN_P_First(nodeId, parentTitle, orderByComparator);
451     }
452 
453     public static com.liferay.portlet.wiki.model.WikiPage findByN_P_Last(
454         long nodeId, java.lang.String parentTitle,
455         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
456         throws com.liferay.portal.kernel.exception.SystemException,
457             com.liferay.portlet.wiki.NoSuchPageException {
458         return getPersistence()
459                    .findByN_P_Last(nodeId, parentTitle, orderByComparator);
460     }
461 
462     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_P_PrevAndNext(
463         long pageId, long nodeId, java.lang.String parentTitle,
464         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
465         throws com.liferay.portal.kernel.exception.SystemException,
466             com.liferay.portlet.wiki.NoSuchPageException {
467         return getPersistence()
468                    .findByN_P_PrevAndNext(pageId, nodeId, parentTitle,
469             orderByComparator);
470     }
471 
472     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
473         long nodeId, java.lang.String redirectTitle)
474         throws com.liferay.portal.kernel.exception.SystemException {
475         return getPersistence().findByN_R(nodeId, redirectTitle);
476     }
477 
478     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
479         long nodeId, java.lang.String redirectTitle, int start, int end)
480         throws com.liferay.portal.kernel.exception.SystemException {
481         return getPersistence().findByN_R(nodeId, redirectTitle, start, end);
482     }
483 
484     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
485         long nodeId, java.lang.String redirectTitle, int start, int end,
486         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
487         throws com.liferay.portal.kernel.exception.SystemException {
488         return getPersistence()
489                    .findByN_R(nodeId, redirectTitle, start, end,
490             orderByComparator);
491     }
492 
493     public static com.liferay.portlet.wiki.model.WikiPage findByN_R_First(
494         long nodeId, java.lang.String redirectTitle,
495         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
496         throws com.liferay.portal.kernel.exception.SystemException,
497             com.liferay.portlet.wiki.NoSuchPageException {
498         return getPersistence()
499                    .findByN_R_First(nodeId, redirectTitle, orderByComparator);
500     }
501 
502     public static com.liferay.portlet.wiki.model.WikiPage findByN_R_Last(
503         long nodeId, java.lang.String redirectTitle,
504         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
505         throws com.liferay.portal.kernel.exception.SystemException,
506             com.liferay.portlet.wiki.NoSuchPageException {
507         return getPersistence()
508                    .findByN_R_Last(nodeId, redirectTitle, orderByComparator);
509     }
510 
511     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_R_PrevAndNext(
512         long pageId, long nodeId, java.lang.String redirectTitle,
513         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
514         throws com.liferay.portal.kernel.exception.SystemException,
515             com.liferay.portlet.wiki.NoSuchPageException {
516         return getPersistence()
517                    .findByN_R_PrevAndNext(pageId, nodeId, redirectTitle,
518             orderByComparator);
519     }
520 
521     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
522         long nodeId, int status)
523         throws com.liferay.portal.kernel.exception.SystemException {
524         return getPersistence().findByN_S(nodeId, status);
525     }
526 
527     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
528         long nodeId, int status, int start, int end)
529         throws com.liferay.portal.kernel.exception.SystemException {
530         return getPersistence().findByN_S(nodeId, status, start, end);
531     }
532 
533     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
534         long nodeId, int status, int start, int end,
535         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
536         throws com.liferay.portal.kernel.exception.SystemException {
537         return getPersistence()
538                    .findByN_S(nodeId, status, start, end, orderByComparator);
539     }
540 
541     public static com.liferay.portlet.wiki.model.WikiPage findByN_S_First(
542         long nodeId, int status,
543         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
544         throws com.liferay.portal.kernel.exception.SystemException,
545             com.liferay.portlet.wiki.NoSuchPageException {
546         return getPersistence()
547                    .findByN_S_First(nodeId, status, orderByComparator);
548     }
549 
550     public static com.liferay.portlet.wiki.model.WikiPage findByN_S_Last(
551         long nodeId, int status,
552         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
553         throws com.liferay.portal.kernel.exception.SystemException,
554             com.liferay.portlet.wiki.NoSuchPageException {
555         return getPersistence().findByN_S_Last(nodeId, status, orderByComparator);
556     }
557 
558     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_S_PrevAndNext(
559         long pageId, long nodeId, int status,
560         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
561         throws com.liferay.portal.kernel.exception.SystemException,
562             com.liferay.portlet.wiki.NoSuchPageException {
563         return getPersistence()
564                    .findByN_S_PrevAndNext(pageId, nodeId, status,
565             orderByComparator);
566     }
567 
568     public static com.liferay.portlet.wiki.model.WikiPage findByR_N_V(
569         long resourcePrimKey, long nodeId, double version)
570         throws com.liferay.portal.kernel.exception.SystemException,
571             com.liferay.portlet.wiki.NoSuchPageException {
572         return getPersistence().findByR_N_V(resourcePrimKey, nodeId, version);
573     }
574 
575     public static com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
576         long resourcePrimKey, long nodeId, double version)
577         throws com.liferay.portal.kernel.exception.SystemException {
578         return getPersistence().fetchByR_N_V(resourcePrimKey, nodeId, version);
579     }
580 
581     public static com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
582         long resourcePrimKey, long nodeId, double version,
583         boolean retrieveFromCache)
584         throws com.liferay.portal.kernel.exception.SystemException {
585         return getPersistence()
586                    .fetchByR_N_V(resourcePrimKey, nodeId, version,
587             retrieveFromCache);
588     }
589 
590     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
591         long resourcePrimKey, long nodeId, int status)
592         throws com.liferay.portal.kernel.exception.SystemException {
593         return getPersistence().findByR_N_S(resourcePrimKey, nodeId, status);
594     }
595 
596     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
597         long resourcePrimKey, long nodeId, int status, int start, int end)
598         throws com.liferay.portal.kernel.exception.SystemException {
599         return getPersistence()
600                    .findByR_N_S(resourcePrimKey, nodeId, status, start, end);
601     }
602 
603     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
604         long resourcePrimKey, long nodeId, int status, int start, int end,
605         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
606         throws com.liferay.portal.kernel.exception.SystemException {
607         return getPersistence()
608                    .findByR_N_S(resourcePrimKey, nodeId, status, start, end,
609             orderByComparator);
610     }
611 
612     public static com.liferay.portlet.wiki.model.WikiPage findByR_N_S_First(
613         long resourcePrimKey, long nodeId, int status,
614         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
615         throws com.liferay.portal.kernel.exception.SystemException,
616             com.liferay.portlet.wiki.NoSuchPageException {
617         return getPersistence()
618                    .findByR_N_S_First(resourcePrimKey, nodeId, status,
619             orderByComparator);
620     }
621 
622     public static com.liferay.portlet.wiki.model.WikiPage findByR_N_S_Last(
623         long resourcePrimKey, long nodeId, int status,
624         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
625         throws com.liferay.portal.kernel.exception.SystemException,
626             com.liferay.portlet.wiki.NoSuchPageException {
627         return getPersistence()
628                    .findByR_N_S_Last(resourcePrimKey, nodeId, status,
629             orderByComparator);
630     }
631 
632     public static com.liferay.portlet.wiki.model.WikiPage[] findByR_N_S_PrevAndNext(
633         long pageId, long resourcePrimKey, long nodeId, int status,
634         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
635         throws com.liferay.portal.kernel.exception.SystemException,
636             com.liferay.portlet.wiki.NoSuchPageException {
637         return getPersistence()
638                    .findByR_N_S_PrevAndNext(pageId, resourcePrimKey, nodeId,
639             status, orderByComparator);
640     }
641 
642     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
643         long userId, long nodeId, int status)
644         throws com.liferay.portal.kernel.exception.SystemException {
645         return getPersistence().findByU_N_S(userId, nodeId, status);
646     }
647 
648     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
649         long userId, long nodeId, int status, int start, int end)
650         throws com.liferay.portal.kernel.exception.SystemException {
651         return getPersistence().findByU_N_S(userId, nodeId, status, start, end);
652     }
653 
654     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
655         long userId, long nodeId, int status, int start, int end,
656         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
657         throws com.liferay.portal.kernel.exception.SystemException {
658         return getPersistence()
659                    .findByU_N_S(userId, nodeId, status, start, end,
660             orderByComparator);
661     }
662 
663     public static com.liferay.portlet.wiki.model.WikiPage findByU_N_S_First(
664         long userId, long nodeId, int status,
665         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
666         throws com.liferay.portal.kernel.exception.SystemException,
667             com.liferay.portlet.wiki.NoSuchPageException {
668         return getPersistence()
669                    .findByU_N_S_First(userId, nodeId, status, orderByComparator);
670     }
671 
672     public static com.liferay.portlet.wiki.model.WikiPage findByU_N_S_Last(
673         long userId, long nodeId, int status,
674         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
675         throws com.liferay.portal.kernel.exception.SystemException,
676             com.liferay.portlet.wiki.NoSuchPageException {
677         return getPersistence()
678                    .findByU_N_S_Last(userId, nodeId, status, orderByComparator);
679     }
680 
681     public static com.liferay.portlet.wiki.model.WikiPage[] findByU_N_S_PrevAndNext(
682         long pageId, long userId, long nodeId, int status,
683         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
684         throws com.liferay.portal.kernel.exception.SystemException,
685             com.liferay.portlet.wiki.NoSuchPageException {
686         return getPersistence()
687                    .findByU_N_S_PrevAndNext(pageId, userId, nodeId, status,
688             orderByComparator);
689     }
690 
691     public static com.liferay.portlet.wiki.model.WikiPage findByN_T_V(
692         long nodeId, java.lang.String title, double version)
693         throws com.liferay.portal.kernel.exception.SystemException,
694             com.liferay.portlet.wiki.NoSuchPageException {
695         return getPersistence().findByN_T_V(nodeId, title, version);
696     }
697 
698     public static com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(
699         long nodeId, java.lang.String title, double version)
700         throws com.liferay.portal.kernel.exception.SystemException {
701         return getPersistence().fetchByN_T_V(nodeId, title, version);
702     }
703 
704     public static com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(
705         long nodeId, java.lang.String title, double version,
706         boolean retrieveFromCache)
707         throws com.liferay.portal.kernel.exception.SystemException {
708         return getPersistence()
709                    .fetchByN_T_V(nodeId, title, version, retrieveFromCache);
710     }
711 
712     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
713         long nodeId, java.lang.String title, boolean head)
714         throws com.liferay.portal.kernel.exception.SystemException {
715         return getPersistence().findByN_T_H(nodeId, title, head);
716     }
717 
718     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
719         long nodeId, java.lang.String title, boolean head, int start, int end)
720         throws com.liferay.portal.kernel.exception.SystemException {
721         return getPersistence().findByN_T_H(nodeId, title, head, start, end);
722     }
723 
724     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
725         long nodeId, java.lang.String title, boolean head, int start, int end,
726         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
727         throws com.liferay.portal.kernel.exception.SystemException {
728         return getPersistence()
729                    .findByN_T_H(nodeId, title, head, start, end,
730             orderByComparator);
731     }
732 
733     public static com.liferay.portlet.wiki.model.WikiPage findByN_T_H_First(
734         long nodeId, java.lang.String title, boolean head,
735         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
736         throws com.liferay.portal.kernel.exception.SystemException,
737             com.liferay.portlet.wiki.NoSuchPageException {
738         return getPersistence()
739                    .findByN_T_H_First(nodeId, title, head, orderByComparator);
740     }
741 
742     public static com.liferay.portlet.wiki.model.WikiPage findByN_T_H_Last(
743         long nodeId, java.lang.String title, boolean head,
744         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
745         throws com.liferay.portal.kernel.exception.SystemException,
746             com.liferay.portlet.wiki.NoSuchPageException {
747         return getPersistence()
748                    .findByN_T_H_Last(nodeId, title, head, orderByComparator);
749     }
750 
751     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_T_H_PrevAndNext(
752         long pageId, long nodeId, java.lang.String title, boolean head,
753         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
754         throws com.liferay.portal.kernel.exception.SystemException,
755             com.liferay.portlet.wiki.NoSuchPageException {
756         return getPersistence()
757                    .findByN_T_H_PrevAndNext(pageId, nodeId, title, head,
758             orderByComparator);
759     }
760 
761     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
762         long nodeId, java.lang.String title, int status)
763         throws com.liferay.portal.kernel.exception.SystemException {
764         return getPersistence().findByN_T_S(nodeId, title, status);
765     }
766 
767     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
768         long nodeId, java.lang.String title, int status, int start, int end)
769         throws com.liferay.portal.kernel.exception.SystemException {
770         return getPersistence().findByN_T_S(nodeId, title, status, start, end);
771     }
772 
773     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
774         long nodeId, java.lang.String title, int status, int start, int end,
775         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
776         throws com.liferay.portal.kernel.exception.SystemException {
777         return getPersistence()
778                    .findByN_T_S(nodeId, title, status, start, end,
779             orderByComparator);
780     }
781 
782     public static com.liferay.portlet.wiki.model.WikiPage findByN_T_S_First(
783         long nodeId, java.lang.String title, int status,
784         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
785         throws com.liferay.portal.kernel.exception.SystemException,
786             com.liferay.portlet.wiki.NoSuchPageException {
787         return getPersistence()
788                    .findByN_T_S_First(nodeId, title, status, orderByComparator);
789     }
790 
791     public static com.liferay.portlet.wiki.model.WikiPage findByN_T_S_Last(
792         long nodeId, java.lang.String title, int status,
793         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
794         throws com.liferay.portal.kernel.exception.SystemException,
795             com.liferay.portlet.wiki.NoSuchPageException {
796         return getPersistence()
797                    .findByN_T_S_Last(nodeId, title, status, orderByComparator);
798     }
799 
800     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_T_S_PrevAndNext(
801         long pageId, long nodeId, java.lang.String title, int status,
802         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
803         throws com.liferay.portal.kernel.exception.SystemException,
804             com.liferay.portlet.wiki.NoSuchPageException {
805         return getPersistence()
806                    .findByN_T_S_PrevAndNext(pageId, nodeId, title, status,
807             orderByComparator);
808     }
809 
810     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
811         long nodeId, boolean head, java.lang.String parentTitle)
812         throws com.liferay.portal.kernel.exception.SystemException {
813         return getPersistence().findByN_H_P(nodeId, head, parentTitle);
814     }
815 
816     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
817         long nodeId, boolean head, java.lang.String parentTitle, int start,
818         int end) throws com.liferay.portal.kernel.exception.SystemException {
819         return getPersistence()
820                    .findByN_H_P(nodeId, head, parentTitle, start, end);
821     }
822 
823     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
824         long nodeId, boolean head, java.lang.String parentTitle, int start,
825         int end,
826         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
827         throws com.liferay.portal.kernel.exception.SystemException {
828         return getPersistence()
829                    .findByN_H_P(nodeId, head, parentTitle, start, end,
830             orderByComparator);
831     }
832 
833     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_First(
834         long nodeId, boolean head, java.lang.String parentTitle,
835         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
836         throws com.liferay.portal.kernel.exception.SystemException,
837             com.liferay.portlet.wiki.NoSuchPageException {
838         return getPersistence()
839                    .findByN_H_P_First(nodeId, head, parentTitle,
840             orderByComparator);
841     }
842 
843     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_Last(
844         long nodeId, boolean head, java.lang.String parentTitle,
845         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
846         throws com.liferay.portal.kernel.exception.SystemException,
847             com.liferay.portlet.wiki.NoSuchPageException {
848         return getPersistence()
849                    .findByN_H_P_Last(nodeId, head, parentTitle,
850             orderByComparator);
851     }
852 
853     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_PrevAndNext(
854         long pageId, long nodeId, boolean head, java.lang.String parentTitle,
855         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
856         throws com.liferay.portal.kernel.exception.SystemException,
857             com.liferay.portlet.wiki.NoSuchPageException {
858         return getPersistence()
859                    .findByN_H_P_PrevAndNext(pageId, nodeId, head, parentTitle,
860             orderByComparator);
861     }
862 
863     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
864         long nodeId, boolean head, int status)
865         throws com.liferay.portal.kernel.exception.SystemException {
866         return getPersistence().findByN_H_S(nodeId, head, status);
867     }
868 
869     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
870         long nodeId, boolean head, int status, int start, int end)
871         throws com.liferay.portal.kernel.exception.SystemException {
872         return getPersistence().findByN_H_S(nodeId, head, status, start, end);
873     }
874 
875     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
876         long nodeId, boolean head, int status, int start, int end,
877         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
878         throws com.liferay.portal.kernel.exception.SystemException {
879         return getPersistence()
880                    .findByN_H_S(nodeId, head, status, start, end,
881             orderByComparator);
882     }
883 
884     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_S_First(
885         long nodeId, boolean head, int status,
886         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
887         throws com.liferay.portal.kernel.exception.SystemException,
888             com.liferay.portlet.wiki.NoSuchPageException {
889         return getPersistence()
890                    .findByN_H_S_First(nodeId, head, status, orderByComparator);
891     }
892 
893     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_S_Last(
894         long nodeId, boolean head, int status,
895         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
896         throws com.liferay.portal.kernel.exception.SystemException,
897             com.liferay.portlet.wiki.NoSuchPageException {
898         return getPersistence()
899                    .findByN_H_S_Last(nodeId, head, status, orderByComparator);
900     }
901 
902     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_S_PrevAndNext(
903         long pageId, long nodeId, boolean head, int status,
904         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
905         throws com.liferay.portal.kernel.exception.SystemException,
906             com.liferay.portlet.wiki.NoSuchPageException {
907         return getPersistence()
908                    .findByN_H_S_PrevAndNext(pageId, nodeId, head, status,
909             orderByComparator);
910     }
911 
912     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
913         long nodeId, boolean head, java.lang.String parentTitle, int status)
914         throws com.liferay.portal.kernel.exception.SystemException {
915         return getPersistence().findByN_H_P_S(nodeId, head, parentTitle, status);
916     }
917 
918     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
919         long nodeId, boolean head, java.lang.String parentTitle, int status,
920         int start, int end)
921         throws com.liferay.portal.kernel.exception.SystemException {
922         return getPersistence()
923                    .findByN_H_P_S(nodeId, head, parentTitle, status, start, end);
924     }
925 
926     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
927         long nodeId, boolean head, java.lang.String parentTitle, int status,
928         int start, int end,
929         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
930         throws com.liferay.portal.kernel.exception.SystemException {
931         return getPersistence()
932                    .findByN_H_P_S(nodeId, head, parentTitle, status, start,
933             end, orderByComparator);
934     }
935 
936     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_First(
937         long nodeId, boolean head, java.lang.String parentTitle, int status,
938         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
939         throws com.liferay.portal.kernel.exception.SystemException,
940             com.liferay.portlet.wiki.NoSuchPageException {
941         return getPersistence()
942                    .findByN_H_P_S_First(nodeId, head, parentTitle, status,
943             orderByComparator);
944     }
945 
946     public static com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_Last(
947         long nodeId, boolean head, java.lang.String parentTitle, int status,
948         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
949         throws com.liferay.portal.kernel.exception.SystemException,
950             com.liferay.portlet.wiki.NoSuchPageException {
951         return getPersistence()
952                    .findByN_H_P_S_Last(nodeId, head, parentTitle, status,
953             orderByComparator);
954     }
955 
956     public static com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_S_PrevAndNext(
957         long pageId, long nodeId, boolean head, java.lang.String parentTitle,
958         int status,
959         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
960         throws com.liferay.portal.kernel.exception.SystemException,
961             com.liferay.portlet.wiki.NoSuchPageException {
962         return getPersistence()
963                    .findByN_H_P_S_PrevAndNext(pageId, nodeId, head,
964             parentTitle, status, orderByComparator);
965     }
966 
967     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll()
968         throws com.liferay.portal.kernel.exception.SystemException {
969         return getPersistence().findAll();
970     }
971 
972     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
973         int start, int end)
974         throws com.liferay.portal.kernel.exception.SystemException {
975         return getPersistence().findAll(start, end);
976     }
977 
978     public static java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
979         int start, int end,
980         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
981         throws com.liferay.portal.kernel.exception.SystemException {
982         return getPersistence().findAll(start, end, orderByComparator);
983     }
984 
985     public static void removeByUuid(java.lang.String uuid)
986         throws com.liferay.portal.kernel.exception.SystemException {
987         getPersistence().removeByUuid(uuid);
988     }
989 
990     public static void removeByUUID_G(java.lang.String uuid, long groupId)
991         throws com.liferay.portal.kernel.exception.SystemException,
992             com.liferay.portlet.wiki.NoSuchPageException {
993         getPersistence().removeByUUID_G(uuid, groupId);
994     }
995 
996     public static void removeByNodeId(long nodeId)
997         throws com.liferay.portal.kernel.exception.SystemException {
998         getPersistence().removeByNodeId(nodeId);
999     }
1000
1001    public static void removeByFormat(java.lang.String format)
1002        throws com.liferay.portal.kernel.exception.SystemException {
1003        getPersistence().removeByFormat(format);
1004    }
1005
1006    public static void removeByR_N(long resourcePrimKey, long nodeId)
1007        throws com.liferay.portal.kernel.exception.SystemException {
1008        getPersistence().removeByR_N(resourcePrimKey, nodeId);
1009    }
1010
1011    public static void removeByN_T(long nodeId, java.lang.String title)
1012        throws com.liferay.portal.kernel.exception.SystemException {
1013        getPersistence().removeByN_T(nodeId, title);
1014    }
1015
1016    public static void removeByN_H(long nodeId, boolean head)
1017        throws com.liferay.portal.kernel.exception.SystemException {
1018        getPersistence().removeByN_H(nodeId, head);
1019    }
1020
1021    public static void removeByN_P(long nodeId, java.lang.String parentTitle)
1022        throws com.liferay.portal.kernel.exception.SystemException {
1023        getPersistence().removeByN_P(nodeId, parentTitle);
1024    }
1025
1026    public static void removeByN_R(long nodeId, java.lang.String redirectTitle)
1027        throws com.liferay.portal.kernel.exception.SystemException {
1028        getPersistence().removeByN_R(nodeId, redirectTitle);
1029    }
1030
1031    public static void removeByN_S(long nodeId, int status)
1032        throws com.liferay.portal.kernel.exception.SystemException {
1033        getPersistence().removeByN_S(nodeId, status);
1034    }
1035
1036    public static void removeByR_N_V(long resourcePrimKey, long nodeId,
1037        double version)
1038        throws com.liferay.portal.kernel.exception.SystemException,
1039            com.liferay.portlet.wiki.NoSuchPageException {
1040        getPersistence().removeByR_N_V(resourcePrimKey, nodeId, version);
1041    }
1042
1043    public static void removeByR_N_S(long resourcePrimKey, long nodeId,
1044        int status) throws com.liferay.portal.kernel.exception.SystemException {
1045        getPersistence().removeByR_N_S(resourcePrimKey, nodeId, status);
1046    }
1047
1048    public static void removeByU_N_S(long userId, long nodeId, int status)
1049        throws com.liferay.portal.kernel.exception.SystemException {
1050        getPersistence().removeByU_N_S(userId, nodeId, status);
1051    }
1052
1053    public static void removeByN_T_V(long nodeId, java.lang.String title,
1054        double version)
1055        throws com.liferay.portal.kernel.exception.SystemException,
1056            com.liferay.portlet.wiki.NoSuchPageException {
1057        getPersistence().removeByN_T_V(nodeId, title, version);
1058    }
1059
1060    public static void removeByN_T_H(long nodeId, java.lang.String title,
1061        boolean head)
1062        throws com.liferay.portal.kernel.exception.SystemException {
1063        getPersistence().removeByN_T_H(nodeId, title, head);
1064    }
1065
1066    public static void removeByN_T_S(long nodeId, java.lang.String title,
1067        int status) throws com.liferay.portal.kernel.exception.SystemException {
1068        getPersistence().removeByN_T_S(nodeId, title, status);
1069    }
1070
1071    public static void removeByN_H_P(long nodeId, boolean head,
1072        java.lang.String parentTitle)
1073        throws com.liferay.portal.kernel.exception.SystemException {
1074        getPersistence().removeByN_H_P(nodeId, head, parentTitle);
1075    }
1076
1077    public static void removeByN_H_S(long nodeId, boolean head, int status)
1078        throws com.liferay.portal.kernel.exception.SystemException {
1079        getPersistence().removeByN_H_S(nodeId, head, status);
1080    }
1081
1082    public static void removeByN_H_P_S(long nodeId, boolean head,
1083        java.lang.String parentTitle, int status)
1084        throws com.liferay.portal.kernel.exception.SystemException {
1085        getPersistence().removeByN_H_P_S(nodeId, head, parentTitle, status);
1086    }
1087
1088    public static void removeAll()
1089        throws com.liferay.portal.kernel.exception.SystemException {
1090        getPersistence().removeAll();
1091    }
1092
1093    public static int countByUuid(java.lang.String uuid)
1094        throws com.liferay.portal.kernel.exception.SystemException {
1095        return getPersistence().countByUuid(uuid);
1096    }
1097
1098    public static int countByUUID_G(java.lang.String uuid, long groupId)
1099        throws com.liferay.portal.kernel.exception.SystemException {
1100        return getPersistence().countByUUID_G(uuid, groupId);
1101    }
1102
1103    public static int countByNodeId(long nodeId)
1104        throws com.liferay.portal.kernel.exception.SystemException {
1105        return getPersistence().countByNodeId(nodeId);
1106    }
1107
1108    public static int countByFormat(java.lang.String format)
1109        throws com.liferay.portal.kernel.exception.SystemException {
1110        return getPersistence().countByFormat(format);
1111    }
1112
1113    public static int countByR_N(long resourcePrimKey, long nodeId)
1114        throws com.liferay.portal.kernel.exception.SystemException {
1115        return getPersistence().countByR_N(resourcePrimKey, nodeId);
1116    }
1117
1118    public static int countByN_T(long nodeId, java.lang.String title)
1119        throws com.liferay.portal.kernel.exception.SystemException {
1120        return getPersistence().countByN_T(nodeId, title);
1121    }
1122
1123    public static int countByN_H(long nodeId, boolean head)
1124        throws com.liferay.portal.kernel.exception.SystemException {
1125        return getPersistence().countByN_H(nodeId, head);
1126    }
1127
1128    public static int countByN_P(long nodeId, java.lang.String parentTitle)
1129        throws com.liferay.portal.kernel.exception.SystemException {
1130        return getPersistence().countByN_P(nodeId, parentTitle);
1131    }
1132
1133    public static int countByN_R(long nodeId, java.lang.String redirectTitle)
1134        throws com.liferay.portal.kernel.exception.SystemException {
1135        return getPersistence().countByN_R(nodeId, redirectTitle);
1136    }
1137
1138    public static int countByN_S(long nodeId, int status)
1139        throws com.liferay.portal.kernel.exception.SystemException {
1140        return getPersistence().countByN_S(nodeId, status);
1141    }
1142
1143    public static int countByR_N_V(long resourcePrimKey, long nodeId,
1144        double version)
1145        throws com.liferay.portal.kernel.exception.SystemException {
1146        return getPersistence().countByR_N_V(resourcePrimKey, nodeId, version);
1147    }
1148
1149    public static int countByR_N_S(long resourcePrimKey, long nodeId, int status)
1150        throws com.liferay.portal.kernel.exception.SystemException {
1151        return getPersistence().countByR_N_S(resourcePrimKey, nodeId, status);
1152    }
1153
1154    public static int countByU_N_S(long userId, long nodeId, int status)
1155        throws com.liferay.portal.kernel.exception.SystemException {
1156        return getPersistence().countByU_N_S(userId, nodeId, status);
1157    }
1158
1159    public static int countByN_T_V(long nodeId, java.lang.String title,
1160        double version)
1161        throws com.liferay.portal.kernel.exception.SystemException {
1162        return getPersistence().countByN_T_V(nodeId, title, version);
1163    }
1164
1165    public static int countByN_T_H(long nodeId, java.lang.String title,
1166        boolean head)
1167        throws com.liferay.portal.kernel.exception.SystemException {
1168        return getPersistence().countByN_T_H(nodeId, title, head);
1169    }
1170
1171    public static int countByN_T_S(long nodeId, java.lang.String title,
1172        int status) throws com.liferay.portal.kernel.exception.SystemException {
1173        return getPersistence().countByN_T_S(nodeId, title, status);
1174    }
1175
1176    public static int countByN_H_P(long nodeId, boolean head,
1177        java.lang.String parentTitle)
1178        throws com.liferay.portal.kernel.exception.SystemException {
1179        return getPersistence().countByN_H_P(nodeId, head, parentTitle);
1180    }
1181
1182    public static int countByN_H_S(long nodeId, boolean head, int status)
1183        throws com.liferay.portal.kernel.exception.SystemException {
1184        return getPersistence().countByN_H_S(nodeId, head, status);
1185    }
1186
1187    public static int countByN_H_P_S(long nodeId, boolean head,
1188        java.lang.String parentTitle, int status)
1189        throws com.liferay.portal.kernel.exception.SystemException {
1190        return getPersistence().countByN_H_P_S(nodeId, head, parentTitle, status);
1191    }
1192
1193    public static int countAll()
1194        throws com.liferay.portal.kernel.exception.SystemException {
1195        return getPersistence().countAll();
1196    }
1197
1198    public static WikiPagePersistence getPersistence() {
1199        if (_persistence == null) {
1200            _persistence = (WikiPagePersistence)PortalBeanLocatorUtil.locate(WikiPagePersistence.class.getName());
1201        }
1202
1203        return _persistence;
1204    }
1205
1206    public void setPersistence(WikiPagePersistence persistence) {
1207        _persistence = persistence;
1208    }
1209
1210    private static WikiPagePersistence _persistence;
1211}