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.service.persistence.BasePersistence;
18  
19  import com.liferay.portlet.wiki.model.WikiPage;
20  
21  /**
22   * <a href="WikiPagePersistence.java.html"><b><i>View Source</i></b></a>
23   *
24   * <p>
25   * ServiceBuilder generated this class. Modifications in this class will be
26   * overwritten the next time is generated.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       WikiPagePersistenceImpl
31   * @see       WikiPageUtil
32   * @generated
33   */
34  public interface WikiPagePersistence extends BasePersistence<WikiPage> {
35      public void cacheResult(com.liferay.portlet.wiki.model.WikiPage wikiPage);
36  
37      public void cacheResult(
38          java.util.List<com.liferay.portlet.wiki.model.WikiPage> wikiPages);
39  
40      public com.liferay.portlet.wiki.model.WikiPage create(long pageId);
41  
42      public com.liferay.portlet.wiki.model.WikiPage remove(long pageId)
43          throws com.liferay.portal.kernel.exception.SystemException,
44              com.liferay.portlet.wiki.NoSuchPageException;
45  
46      public com.liferay.portlet.wiki.model.WikiPage updateImpl(
47          com.liferay.portlet.wiki.model.WikiPage wikiPage, boolean merge)
48          throws com.liferay.portal.kernel.exception.SystemException;
49  
50      public com.liferay.portlet.wiki.model.WikiPage findByPrimaryKey(long pageId)
51          throws com.liferay.portal.kernel.exception.SystemException,
52              com.liferay.portlet.wiki.NoSuchPageException;
53  
54      public com.liferay.portlet.wiki.model.WikiPage fetchByPrimaryKey(
55          long pageId) throws com.liferay.portal.kernel.exception.SystemException;
56  
57      public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
58          java.lang.String uuid)
59          throws com.liferay.portal.kernel.exception.SystemException;
60  
61      public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
62          java.lang.String uuid, int start, int end)
63          throws com.liferay.portal.kernel.exception.SystemException;
64  
65      public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
66          java.lang.String uuid, int start, int end,
67          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
68          throws com.liferay.portal.kernel.exception.SystemException;
69  
70      public com.liferay.portlet.wiki.model.WikiPage findByUuid_First(
71          java.lang.String uuid,
72          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
73          throws com.liferay.portal.kernel.exception.SystemException,
74              com.liferay.portlet.wiki.NoSuchPageException;
75  
76      public com.liferay.portlet.wiki.model.WikiPage findByUuid_Last(
77          java.lang.String uuid,
78          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79          throws com.liferay.portal.kernel.exception.SystemException,
80              com.liferay.portlet.wiki.NoSuchPageException;
81  
82      public com.liferay.portlet.wiki.model.WikiPage[] findByUuid_PrevAndNext(
83          long pageId, java.lang.String uuid,
84          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
85          throws com.liferay.portal.kernel.exception.SystemException,
86              com.liferay.portlet.wiki.NoSuchPageException;
87  
88      public com.liferay.portlet.wiki.model.WikiPage findByUUID_G(
89          java.lang.String uuid, long groupId)
90          throws com.liferay.portal.kernel.exception.SystemException,
91              com.liferay.portlet.wiki.NoSuchPageException;
92  
93      public com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
94          java.lang.String uuid, long groupId)
95          throws com.liferay.portal.kernel.exception.SystemException;
96  
97      public com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
98          java.lang.String uuid, long groupId, boolean retrieveFromCache)
99          throws com.liferay.portal.kernel.exception.SystemException;
100 
101     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
102         long nodeId) throws com.liferay.portal.kernel.exception.SystemException;
103 
104     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
105         long nodeId, int start, int end)
106         throws com.liferay.portal.kernel.exception.SystemException;
107 
108     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
109         long nodeId, int start, int end,
110         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
111         throws com.liferay.portal.kernel.exception.SystemException;
112 
113     public com.liferay.portlet.wiki.model.WikiPage findByNodeId_First(
114         long nodeId,
115         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
116         throws com.liferay.portal.kernel.exception.SystemException,
117             com.liferay.portlet.wiki.NoSuchPageException;
118 
119     public com.liferay.portlet.wiki.model.WikiPage findByNodeId_Last(
120         long nodeId,
121         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
122         throws com.liferay.portal.kernel.exception.SystemException,
123             com.liferay.portlet.wiki.NoSuchPageException;
124 
125     public com.liferay.portlet.wiki.model.WikiPage[] findByNodeId_PrevAndNext(
126         long pageId, long nodeId,
127         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
128         throws com.liferay.portal.kernel.exception.SystemException,
129             com.liferay.portlet.wiki.NoSuchPageException;
130 
131     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
132         java.lang.String format)
133         throws com.liferay.portal.kernel.exception.SystemException;
134 
135     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
136         java.lang.String format, int start, int end)
137         throws com.liferay.portal.kernel.exception.SystemException;
138 
139     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
140         java.lang.String format, int start, int end,
141         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
142         throws com.liferay.portal.kernel.exception.SystemException;
143 
144     public com.liferay.portlet.wiki.model.WikiPage findByFormat_First(
145         java.lang.String format,
146         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
147         throws com.liferay.portal.kernel.exception.SystemException,
148             com.liferay.portlet.wiki.NoSuchPageException;
149 
150     public com.liferay.portlet.wiki.model.WikiPage findByFormat_Last(
151         java.lang.String format,
152         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
153         throws com.liferay.portal.kernel.exception.SystemException,
154             com.liferay.portlet.wiki.NoSuchPageException;
155 
156     public com.liferay.portlet.wiki.model.WikiPage[] findByFormat_PrevAndNext(
157         long pageId, java.lang.String format,
158         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
159         throws com.liferay.portal.kernel.exception.SystemException,
160             com.liferay.portlet.wiki.NoSuchPageException;
161 
162     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
163         long resourcePrimKey, long nodeId)
164         throws com.liferay.portal.kernel.exception.SystemException;
165 
166     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
167         long resourcePrimKey, long nodeId, int start, int end)
168         throws com.liferay.portal.kernel.exception.SystemException;
169 
170     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
171         long resourcePrimKey, long nodeId, int start, int end,
172         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
173         throws com.liferay.portal.kernel.exception.SystemException;
174 
175     public com.liferay.portlet.wiki.model.WikiPage findByR_N_First(
176         long resourcePrimKey, long nodeId,
177         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
178         throws com.liferay.portal.kernel.exception.SystemException,
179             com.liferay.portlet.wiki.NoSuchPageException;
180 
181     public com.liferay.portlet.wiki.model.WikiPage findByR_N_Last(
182         long resourcePrimKey, long nodeId,
183         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
184         throws com.liferay.portal.kernel.exception.SystemException,
185             com.liferay.portlet.wiki.NoSuchPageException;
186 
187     public com.liferay.portlet.wiki.model.WikiPage[] findByR_N_PrevAndNext(
188         long pageId, long resourcePrimKey, long nodeId,
189         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
190         throws com.liferay.portal.kernel.exception.SystemException,
191             com.liferay.portlet.wiki.NoSuchPageException;
192 
193     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
194         long nodeId, java.lang.String title)
195         throws com.liferay.portal.kernel.exception.SystemException;
196 
197     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
198         long nodeId, java.lang.String title, int start, int end)
199         throws com.liferay.portal.kernel.exception.SystemException;
200 
201     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
202         long nodeId, java.lang.String title, int start, int end,
203         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
204         throws com.liferay.portal.kernel.exception.SystemException;
205 
206     public com.liferay.portlet.wiki.model.WikiPage findByN_T_First(
207         long nodeId, java.lang.String title,
208         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
209         throws com.liferay.portal.kernel.exception.SystemException,
210             com.liferay.portlet.wiki.NoSuchPageException;
211 
212     public com.liferay.portlet.wiki.model.WikiPage findByN_T_Last(long nodeId,
213         java.lang.String title,
214         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
215         throws com.liferay.portal.kernel.exception.SystemException,
216             com.liferay.portlet.wiki.NoSuchPageException;
217 
218     public com.liferay.portlet.wiki.model.WikiPage[] findByN_T_PrevAndNext(
219         long pageId, long nodeId, java.lang.String title,
220         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
221         throws com.liferay.portal.kernel.exception.SystemException,
222             com.liferay.portlet.wiki.NoSuchPageException;
223 
224     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
225         long nodeId, boolean head)
226         throws com.liferay.portal.kernel.exception.SystemException;
227 
228     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
229         long nodeId, boolean head, int start, int end)
230         throws com.liferay.portal.kernel.exception.SystemException;
231 
232     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
233         long nodeId, boolean head, int start, int end,
234         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
235         throws com.liferay.portal.kernel.exception.SystemException;
236 
237     public com.liferay.portlet.wiki.model.WikiPage findByN_H_First(
238         long nodeId, boolean head,
239         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
240         throws com.liferay.portal.kernel.exception.SystemException,
241             com.liferay.portlet.wiki.NoSuchPageException;
242 
243     public com.liferay.portlet.wiki.model.WikiPage findByN_H_Last(long nodeId,
244         boolean head,
245         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
246         throws com.liferay.portal.kernel.exception.SystemException,
247             com.liferay.portlet.wiki.NoSuchPageException;
248 
249     public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_PrevAndNext(
250         long pageId, long nodeId, boolean head,
251         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
252         throws com.liferay.portal.kernel.exception.SystemException,
253             com.liferay.portlet.wiki.NoSuchPageException;
254 
255     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
256         long nodeId, java.lang.String parentTitle)
257         throws com.liferay.portal.kernel.exception.SystemException;
258 
259     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
260         long nodeId, java.lang.String parentTitle, int start, int end)
261         throws com.liferay.portal.kernel.exception.SystemException;
262 
263     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
264         long nodeId, java.lang.String parentTitle, int start, int end,
265         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
266         throws com.liferay.portal.kernel.exception.SystemException;
267 
268     public com.liferay.portlet.wiki.model.WikiPage findByN_P_First(
269         long nodeId, java.lang.String parentTitle,
270         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
271         throws com.liferay.portal.kernel.exception.SystemException,
272             com.liferay.portlet.wiki.NoSuchPageException;
273 
274     public com.liferay.portlet.wiki.model.WikiPage findByN_P_Last(long nodeId,
275         java.lang.String parentTitle,
276         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
277         throws com.liferay.portal.kernel.exception.SystemException,
278             com.liferay.portlet.wiki.NoSuchPageException;
279 
280     public com.liferay.portlet.wiki.model.WikiPage[] findByN_P_PrevAndNext(
281         long pageId, long nodeId, java.lang.String parentTitle,
282         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
283         throws com.liferay.portal.kernel.exception.SystemException,
284             com.liferay.portlet.wiki.NoSuchPageException;
285 
286     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
287         long nodeId, java.lang.String redirectTitle)
288         throws com.liferay.portal.kernel.exception.SystemException;
289 
290     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
291         long nodeId, java.lang.String redirectTitle, int start, int end)
292         throws com.liferay.portal.kernel.exception.SystemException;
293 
294     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
295         long nodeId, java.lang.String redirectTitle, int start, int end,
296         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
297         throws com.liferay.portal.kernel.exception.SystemException;
298 
299     public com.liferay.portlet.wiki.model.WikiPage findByN_R_First(
300         long nodeId, java.lang.String redirectTitle,
301         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
302         throws com.liferay.portal.kernel.exception.SystemException,
303             com.liferay.portlet.wiki.NoSuchPageException;
304 
305     public com.liferay.portlet.wiki.model.WikiPage findByN_R_Last(long nodeId,
306         java.lang.String redirectTitle,
307         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
308         throws com.liferay.portal.kernel.exception.SystemException,
309             com.liferay.portlet.wiki.NoSuchPageException;
310 
311     public com.liferay.portlet.wiki.model.WikiPage[] findByN_R_PrevAndNext(
312         long pageId, long nodeId, java.lang.String redirectTitle,
313         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
314         throws com.liferay.portal.kernel.exception.SystemException,
315             com.liferay.portlet.wiki.NoSuchPageException;
316 
317     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
318         long nodeId, int status)
319         throws com.liferay.portal.kernel.exception.SystemException;
320 
321     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
322         long nodeId, int status, int start, int end)
323         throws com.liferay.portal.kernel.exception.SystemException;
324 
325     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
326         long nodeId, int status, int start, int end,
327         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
328         throws com.liferay.portal.kernel.exception.SystemException;
329 
330     public com.liferay.portlet.wiki.model.WikiPage findByN_S_First(
331         long nodeId, int status,
332         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
333         throws com.liferay.portal.kernel.exception.SystemException,
334             com.liferay.portlet.wiki.NoSuchPageException;
335 
336     public com.liferay.portlet.wiki.model.WikiPage findByN_S_Last(long nodeId,
337         int status,
338         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
339         throws com.liferay.portal.kernel.exception.SystemException,
340             com.liferay.portlet.wiki.NoSuchPageException;
341 
342     public com.liferay.portlet.wiki.model.WikiPage[] findByN_S_PrevAndNext(
343         long pageId, long nodeId, int status,
344         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
345         throws com.liferay.portal.kernel.exception.SystemException,
346             com.liferay.portlet.wiki.NoSuchPageException;
347 
348     public com.liferay.portlet.wiki.model.WikiPage findByR_N_V(
349         long resourcePrimKey, long nodeId, double version)
350         throws com.liferay.portal.kernel.exception.SystemException,
351             com.liferay.portlet.wiki.NoSuchPageException;
352 
353     public com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
354         long resourcePrimKey, long nodeId, double version)
355         throws com.liferay.portal.kernel.exception.SystemException;
356 
357     public com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
358         long resourcePrimKey, long nodeId, double version,
359         boolean retrieveFromCache)
360         throws com.liferay.portal.kernel.exception.SystemException;
361 
362     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
363         long resourcePrimKey, long nodeId, int status)
364         throws com.liferay.portal.kernel.exception.SystemException;
365 
366     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
367         long resourcePrimKey, long nodeId, int status, int start, int end)
368         throws com.liferay.portal.kernel.exception.SystemException;
369 
370     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
371         long resourcePrimKey, long nodeId, int status, int start, int end,
372         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
373         throws com.liferay.portal.kernel.exception.SystemException;
374 
375     public com.liferay.portlet.wiki.model.WikiPage findByR_N_S_First(
376         long resourcePrimKey, long nodeId, int status,
377         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
378         throws com.liferay.portal.kernel.exception.SystemException,
379             com.liferay.portlet.wiki.NoSuchPageException;
380 
381     public com.liferay.portlet.wiki.model.WikiPage findByR_N_S_Last(
382         long resourcePrimKey, long nodeId, int status,
383         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
384         throws com.liferay.portal.kernel.exception.SystemException,
385             com.liferay.portlet.wiki.NoSuchPageException;
386 
387     public com.liferay.portlet.wiki.model.WikiPage[] findByR_N_S_PrevAndNext(
388         long pageId, long resourcePrimKey, long nodeId, int status,
389         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
390         throws com.liferay.portal.kernel.exception.SystemException,
391             com.liferay.portlet.wiki.NoSuchPageException;
392 
393     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
394         long userId, long nodeId, int status)
395         throws com.liferay.portal.kernel.exception.SystemException;
396 
397     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
398         long userId, long nodeId, int status, int start, int end)
399         throws com.liferay.portal.kernel.exception.SystemException;
400 
401     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
402         long userId, long nodeId, int status, int start, int end,
403         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
404         throws com.liferay.portal.kernel.exception.SystemException;
405 
406     public com.liferay.portlet.wiki.model.WikiPage findByU_N_S_First(
407         long userId, long nodeId, int status,
408         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
409         throws com.liferay.portal.kernel.exception.SystemException,
410             com.liferay.portlet.wiki.NoSuchPageException;
411 
412     public com.liferay.portlet.wiki.model.WikiPage findByU_N_S_Last(
413         long userId, long nodeId, int status,
414         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
415         throws com.liferay.portal.kernel.exception.SystemException,
416             com.liferay.portlet.wiki.NoSuchPageException;
417 
418     public com.liferay.portlet.wiki.model.WikiPage[] findByU_N_S_PrevAndNext(
419         long pageId, long userId, long nodeId, int status,
420         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
421         throws com.liferay.portal.kernel.exception.SystemException,
422             com.liferay.portlet.wiki.NoSuchPageException;
423 
424     public com.liferay.portlet.wiki.model.WikiPage findByN_T_V(long nodeId,
425         java.lang.String title, double version)
426         throws com.liferay.portal.kernel.exception.SystemException,
427             com.liferay.portlet.wiki.NoSuchPageException;
428 
429     public com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(long nodeId,
430         java.lang.String title, double version)
431         throws com.liferay.portal.kernel.exception.SystemException;
432 
433     public com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(long nodeId,
434         java.lang.String title, double version, boolean retrieveFromCache)
435         throws com.liferay.portal.kernel.exception.SystemException;
436 
437     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
438         long nodeId, java.lang.String title, boolean head)
439         throws com.liferay.portal.kernel.exception.SystemException;
440 
441     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
442         long nodeId, java.lang.String title, boolean head, int start, int end)
443         throws com.liferay.portal.kernel.exception.SystemException;
444 
445     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
446         long nodeId, java.lang.String title, boolean head, int start, int end,
447         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
448         throws com.liferay.portal.kernel.exception.SystemException;
449 
450     public com.liferay.portlet.wiki.model.WikiPage findByN_T_H_First(
451         long nodeId, java.lang.String title, boolean head,
452         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
453         throws com.liferay.portal.kernel.exception.SystemException,
454             com.liferay.portlet.wiki.NoSuchPageException;
455 
456     public com.liferay.portlet.wiki.model.WikiPage findByN_T_H_Last(
457         long nodeId, java.lang.String title, boolean head,
458         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
459         throws com.liferay.portal.kernel.exception.SystemException,
460             com.liferay.portlet.wiki.NoSuchPageException;
461 
462     public com.liferay.portlet.wiki.model.WikiPage[] findByN_T_H_PrevAndNext(
463         long pageId, long nodeId, java.lang.String title, boolean head,
464         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
465         throws com.liferay.portal.kernel.exception.SystemException,
466             com.liferay.portlet.wiki.NoSuchPageException;
467 
468     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
469         long nodeId, java.lang.String title, int status)
470         throws com.liferay.portal.kernel.exception.SystemException;
471 
472     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
473         long nodeId, java.lang.String title, int status, int start, int end)
474         throws com.liferay.portal.kernel.exception.SystemException;
475 
476     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
477         long nodeId, java.lang.String title, int status, int start, int end,
478         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
479         throws com.liferay.portal.kernel.exception.SystemException;
480 
481     public com.liferay.portlet.wiki.model.WikiPage findByN_T_S_First(
482         long nodeId, java.lang.String title, int status,
483         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
484         throws com.liferay.portal.kernel.exception.SystemException,
485             com.liferay.portlet.wiki.NoSuchPageException;
486 
487     public com.liferay.portlet.wiki.model.WikiPage findByN_T_S_Last(
488         long nodeId, java.lang.String title, int status,
489         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
490         throws com.liferay.portal.kernel.exception.SystemException,
491             com.liferay.portlet.wiki.NoSuchPageException;
492 
493     public com.liferay.portlet.wiki.model.WikiPage[] findByN_T_S_PrevAndNext(
494         long pageId, long nodeId, java.lang.String title, int status,
495         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
496         throws com.liferay.portal.kernel.exception.SystemException,
497             com.liferay.portlet.wiki.NoSuchPageException;
498 
499     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
500         long nodeId, boolean head, java.lang.String parentTitle)
501         throws com.liferay.portal.kernel.exception.SystemException;
502 
503     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
504         long nodeId, boolean head, java.lang.String parentTitle, int start,
505         int end) throws com.liferay.portal.kernel.exception.SystemException;
506 
507     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
508         long nodeId, boolean head, java.lang.String parentTitle, int start,
509         int end,
510         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
511         throws com.liferay.portal.kernel.exception.SystemException;
512 
513     public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_First(
514         long nodeId, boolean head, java.lang.String parentTitle,
515         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
516         throws com.liferay.portal.kernel.exception.SystemException,
517             com.liferay.portlet.wiki.NoSuchPageException;
518 
519     public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_Last(
520         long nodeId, boolean head, java.lang.String parentTitle,
521         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
522         throws com.liferay.portal.kernel.exception.SystemException,
523             com.liferay.portlet.wiki.NoSuchPageException;
524 
525     public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_PrevAndNext(
526         long pageId, long nodeId, boolean head, java.lang.String parentTitle,
527         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
528         throws com.liferay.portal.kernel.exception.SystemException,
529             com.liferay.portlet.wiki.NoSuchPageException;
530 
531     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
532         long nodeId, boolean head, int status)
533         throws com.liferay.portal.kernel.exception.SystemException;
534 
535     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
536         long nodeId, boolean head, int status, int start, int end)
537         throws com.liferay.portal.kernel.exception.SystemException;
538 
539     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
540         long nodeId, boolean head, int status, int start, int end,
541         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
542         throws com.liferay.portal.kernel.exception.SystemException;
543 
544     public com.liferay.portlet.wiki.model.WikiPage findByN_H_S_First(
545         long nodeId, boolean head, int status,
546         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
547         throws com.liferay.portal.kernel.exception.SystemException,
548             com.liferay.portlet.wiki.NoSuchPageException;
549 
550     public com.liferay.portlet.wiki.model.WikiPage findByN_H_S_Last(
551         long nodeId, boolean head, 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 
556     public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_S_PrevAndNext(
557         long pageId, long nodeId, boolean head, int status,
558         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
559         throws com.liferay.portal.kernel.exception.SystemException,
560             com.liferay.portlet.wiki.NoSuchPageException;
561 
562     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
563         long nodeId, boolean head, java.lang.String parentTitle, int status)
564         throws com.liferay.portal.kernel.exception.SystemException;
565 
566     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
567         long nodeId, boolean head, java.lang.String parentTitle, int status,
568         int start, int end)
569         throws com.liferay.portal.kernel.exception.SystemException;
570 
571     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
572         long nodeId, boolean head, java.lang.String parentTitle, int status,
573         int start, int end,
574         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
575         throws com.liferay.portal.kernel.exception.SystemException;
576 
577     public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_First(
578         long nodeId, boolean head, java.lang.String parentTitle, int status,
579         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
580         throws com.liferay.portal.kernel.exception.SystemException,
581             com.liferay.portlet.wiki.NoSuchPageException;
582 
583     public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_Last(
584         long nodeId, boolean head, java.lang.String parentTitle, int status,
585         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
586         throws com.liferay.portal.kernel.exception.SystemException,
587             com.liferay.portlet.wiki.NoSuchPageException;
588 
589     public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_S_PrevAndNext(
590         long pageId, long nodeId, boolean head, java.lang.String parentTitle,
591         int status,
592         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
593         throws com.liferay.portal.kernel.exception.SystemException,
594             com.liferay.portlet.wiki.NoSuchPageException;
595 
596     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll()
597         throws com.liferay.portal.kernel.exception.SystemException;
598 
599     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
600         int start, int end)
601         throws com.liferay.portal.kernel.exception.SystemException;
602 
603     public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
604         int start, int end,
605         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
606         throws com.liferay.portal.kernel.exception.SystemException;
607 
608     public void removeByUuid(java.lang.String uuid)
609         throws com.liferay.portal.kernel.exception.SystemException;
610 
611     public void removeByUUID_G(java.lang.String uuid, long groupId)
612         throws com.liferay.portal.kernel.exception.SystemException,
613             com.liferay.portlet.wiki.NoSuchPageException;
614 
615     public void removeByNodeId(long nodeId)
616         throws com.liferay.portal.kernel.exception.SystemException;
617 
618     public void removeByFormat(java.lang.String format)
619         throws com.liferay.portal.kernel.exception.SystemException;
620 
621     public void removeByR_N(long resourcePrimKey, long nodeId)
622         throws com.liferay.portal.kernel.exception.SystemException;
623 
624     public void removeByN_T(long nodeId, java.lang.String title)
625         throws com.liferay.portal.kernel.exception.SystemException;
626 
627     public void removeByN_H(long nodeId, boolean head)
628         throws com.liferay.portal.kernel.exception.SystemException;
629 
630     public void removeByN_P(long nodeId, java.lang.String parentTitle)
631         throws com.liferay.portal.kernel.exception.SystemException;
632 
633     public void removeByN_R(long nodeId, java.lang.String redirectTitle)
634         throws com.liferay.portal.kernel.exception.SystemException;
635 
636     public void removeByN_S(long nodeId, int status)
637         throws com.liferay.portal.kernel.exception.SystemException;
638 
639     public void removeByR_N_V(long resourcePrimKey, long nodeId, double version)
640         throws com.liferay.portal.kernel.exception.SystemException,
641             com.liferay.portlet.wiki.NoSuchPageException;
642 
643     public void removeByR_N_S(long resourcePrimKey, long nodeId, int status)
644         throws com.liferay.portal.kernel.exception.SystemException;
645 
646     public void removeByU_N_S(long userId, long nodeId, int status)
647         throws com.liferay.portal.kernel.exception.SystemException;
648 
649     public void removeByN_T_V(long nodeId, java.lang.String title,
650         double version)
651         throws com.liferay.portal.kernel.exception.SystemException,
652             com.liferay.portlet.wiki.NoSuchPageException;
653 
654     public void removeByN_T_H(long nodeId, java.lang.String title, boolean head)
655         throws com.liferay.portal.kernel.exception.SystemException;
656 
657     public void removeByN_T_S(long nodeId, java.lang.String title, int status)
658         throws com.liferay.portal.kernel.exception.SystemException;
659 
660     public void removeByN_H_P(long nodeId, boolean head,
661         java.lang.String parentTitle)
662         throws com.liferay.portal.kernel.exception.SystemException;
663 
664     public void removeByN_H_S(long nodeId, boolean head, int status)
665         throws com.liferay.portal.kernel.exception.SystemException;
666 
667     public void removeByN_H_P_S(long nodeId, boolean head,
668         java.lang.String parentTitle, int status)
669         throws com.liferay.portal.kernel.exception.SystemException;
670 
671     public void removeAll()
672         throws com.liferay.portal.kernel.exception.SystemException;
673 
674     public int countByUuid(java.lang.String uuid)
675         throws com.liferay.portal.kernel.exception.SystemException;
676 
677     public int countByUUID_G(java.lang.String uuid, long groupId)
678         throws com.liferay.portal.kernel.exception.SystemException;
679 
680     public int countByNodeId(long nodeId)
681         throws com.liferay.portal.kernel.exception.SystemException;
682 
683     public int countByFormat(java.lang.String format)
684         throws com.liferay.portal.kernel.exception.SystemException;
685 
686     public int countByR_N(long resourcePrimKey, long nodeId)
687         throws com.liferay.portal.kernel.exception.SystemException;
688 
689     public int countByN_T(long nodeId, java.lang.String title)
690         throws com.liferay.portal.kernel.exception.SystemException;
691 
692     public int countByN_H(long nodeId, boolean head)
693         throws com.liferay.portal.kernel.exception.SystemException;
694 
695     public int countByN_P(long nodeId, java.lang.String parentTitle)
696         throws com.liferay.portal.kernel.exception.SystemException;
697 
698     public int countByN_R(long nodeId, java.lang.String redirectTitle)
699         throws com.liferay.portal.kernel.exception.SystemException;
700 
701     public int countByN_S(long nodeId, int status)
702         throws com.liferay.portal.kernel.exception.SystemException;
703 
704     public int countByR_N_V(long resourcePrimKey, long nodeId, double version)
705         throws com.liferay.portal.kernel.exception.SystemException;
706 
707     public int countByR_N_S(long resourcePrimKey, long nodeId, int status)
708         throws com.liferay.portal.kernel.exception.SystemException;
709 
710     public int countByU_N_S(long userId, long nodeId, int status)
711         throws com.liferay.portal.kernel.exception.SystemException;
712 
713     public int countByN_T_V(long nodeId, java.lang.String title, double version)
714         throws com.liferay.portal.kernel.exception.SystemException;
715 
716     public int countByN_T_H(long nodeId, java.lang.String title, boolean head)
717         throws com.liferay.portal.kernel.exception.SystemException;
718 
719     public int countByN_T_S(long nodeId, java.lang.String title, int status)
720         throws com.liferay.portal.kernel.exception.SystemException;
721 
722     public int countByN_H_P(long nodeId, boolean head,
723         java.lang.String parentTitle)
724         throws com.liferay.portal.kernel.exception.SystemException;
725 
726     public int countByN_H_S(long nodeId, boolean head, int status)
727         throws com.liferay.portal.kernel.exception.SystemException;
728 
729     public int countByN_H_P_S(long nodeId, boolean head,
730         java.lang.String parentTitle, int status)
731         throws com.liferay.portal.kernel.exception.SystemException;
732 
733     public int countAll()
734         throws com.liferay.portal.kernel.exception.SystemException;
735 }