001
014
015 package com.liferay.portlet.wiki.service.persistence;
016
017 import com.liferay.portal.service.persistence.BasePersistence;
018
019 import com.liferay.portlet.wiki.model.WikiPage;
020
021
027 public interface WikiPagePersistence extends BasePersistence<WikiPage> {
028 public void cacheResult(com.liferay.portlet.wiki.model.WikiPage wikiPage);
029
030 public void cacheResult(
031 java.util.List<com.liferay.portlet.wiki.model.WikiPage> wikiPages);
032
033 public com.liferay.portlet.wiki.model.WikiPage create(long pageId);
034
035 public com.liferay.portlet.wiki.model.WikiPage remove(long pageId)
036 throws com.liferay.portal.kernel.exception.SystemException,
037 com.liferay.portlet.wiki.NoSuchPageException;
038
039 public com.liferay.portlet.wiki.model.WikiPage updateImpl(
040 com.liferay.portlet.wiki.model.WikiPage wikiPage, boolean merge)
041 throws com.liferay.portal.kernel.exception.SystemException;
042
043 public com.liferay.portlet.wiki.model.WikiPage findByPrimaryKey(long pageId)
044 throws com.liferay.portal.kernel.exception.SystemException,
045 com.liferay.portlet.wiki.NoSuchPageException;
046
047 public com.liferay.portlet.wiki.model.WikiPage fetchByPrimaryKey(
048 long pageId) throws com.liferay.portal.kernel.exception.SystemException;
049
050 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
051 java.lang.String uuid)
052 throws com.liferay.portal.kernel.exception.SystemException;
053
054 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
055 java.lang.String uuid, int start, int end)
056 throws com.liferay.portal.kernel.exception.SystemException;
057
058 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByUuid(
059 java.lang.String uuid, int start, int end,
060 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
061 throws com.liferay.portal.kernel.exception.SystemException;
062
063 public com.liferay.portlet.wiki.model.WikiPage findByUuid_First(
064 java.lang.String uuid,
065 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
066 throws com.liferay.portal.kernel.exception.SystemException,
067 com.liferay.portlet.wiki.NoSuchPageException;
068
069 public com.liferay.portlet.wiki.model.WikiPage findByUuid_Last(
070 java.lang.String uuid,
071 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
072 throws com.liferay.portal.kernel.exception.SystemException,
073 com.liferay.portlet.wiki.NoSuchPageException;
074
075 public com.liferay.portlet.wiki.model.WikiPage[] findByUuid_PrevAndNext(
076 long pageId, java.lang.String uuid,
077 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
078 throws com.liferay.portal.kernel.exception.SystemException,
079 com.liferay.portlet.wiki.NoSuchPageException;
080
081 public com.liferay.portlet.wiki.model.WikiPage findByUUID_G(
082 java.lang.String uuid, long groupId)
083 throws com.liferay.portal.kernel.exception.SystemException,
084 com.liferay.portlet.wiki.NoSuchPageException;
085
086 public com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
087 java.lang.String uuid, long groupId)
088 throws com.liferay.portal.kernel.exception.SystemException;
089
090 public com.liferay.portlet.wiki.model.WikiPage fetchByUUID_G(
091 java.lang.String uuid, long groupId, boolean retrieveFromCache)
092 throws com.liferay.portal.kernel.exception.SystemException;
093
094 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
095 long nodeId) throws com.liferay.portal.kernel.exception.SystemException;
096
097 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
098 long nodeId, int start, int end)
099 throws com.liferay.portal.kernel.exception.SystemException;
100
101 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByNodeId(
102 long nodeId, int start, int end,
103 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
104 throws com.liferay.portal.kernel.exception.SystemException;
105
106 public com.liferay.portlet.wiki.model.WikiPage findByNodeId_First(
107 long nodeId,
108 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
109 throws com.liferay.portal.kernel.exception.SystemException,
110 com.liferay.portlet.wiki.NoSuchPageException;
111
112 public com.liferay.portlet.wiki.model.WikiPage findByNodeId_Last(
113 long nodeId,
114 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
115 throws com.liferay.portal.kernel.exception.SystemException,
116 com.liferay.portlet.wiki.NoSuchPageException;
117
118 public com.liferay.portlet.wiki.model.WikiPage[] findByNodeId_PrevAndNext(
119 long pageId, long nodeId,
120 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
121 throws com.liferay.portal.kernel.exception.SystemException,
122 com.liferay.portlet.wiki.NoSuchPageException;
123
124 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
125 java.lang.String format)
126 throws com.liferay.portal.kernel.exception.SystemException;
127
128 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
129 java.lang.String format, int start, int end)
130 throws com.liferay.portal.kernel.exception.SystemException;
131
132 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByFormat(
133 java.lang.String format, int start, int end,
134 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135 throws com.liferay.portal.kernel.exception.SystemException;
136
137 public com.liferay.portlet.wiki.model.WikiPage findByFormat_First(
138 java.lang.String format,
139 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
140 throws com.liferay.portal.kernel.exception.SystemException,
141 com.liferay.portlet.wiki.NoSuchPageException;
142
143 public com.liferay.portlet.wiki.model.WikiPage findByFormat_Last(
144 java.lang.String format,
145 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
146 throws com.liferay.portal.kernel.exception.SystemException,
147 com.liferay.portlet.wiki.NoSuchPageException;
148
149 public com.liferay.portlet.wiki.model.WikiPage[] findByFormat_PrevAndNext(
150 long pageId, java.lang.String format,
151 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
152 throws com.liferay.portal.kernel.exception.SystemException,
153 com.liferay.portlet.wiki.NoSuchPageException;
154
155 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
156 long resourcePrimKey, long nodeId)
157 throws com.liferay.portal.kernel.exception.SystemException;
158
159 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
160 long resourcePrimKey, long nodeId, int start, int end)
161 throws com.liferay.portal.kernel.exception.SystemException;
162
163 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N(
164 long resourcePrimKey, long nodeId, int start, int end,
165 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166 throws com.liferay.portal.kernel.exception.SystemException;
167
168 public com.liferay.portlet.wiki.model.WikiPage findByR_N_First(
169 long resourcePrimKey, long nodeId,
170 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
171 throws com.liferay.portal.kernel.exception.SystemException,
172 com.liferay.portlet.wiki.NoSuchPageException;
173
174 public com.liferay.portlet.wiki.model.WikiPage findByR_N_Last(
175 long resourcePrimKey, long nodeId,
176 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
177 throws com.liferay.portal.kernel.exception.SystemException,
178 com.liferay.portlet.wiki.NoSuchPageException;
179
180 public com.liferay.portlet.wiki.model.WikiPage[] findByR_N_PrevAndNext(
181 long pageId, long resourcePrimKey, long nodeId,
182 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
183 throws com.liferay.portal.kernel.exception.SystemException,
184 com.liferay.portlet.wiki.NoSuchPageException;
185
186 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
187 long nodeId, java.lang.String title)
188 throws com.liferay.portal.kernel.exception.SystemException;
189
190 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
191 long nodeId, java.lang.String title, int start, int end)
192 throws com.liferay.portal.kernel.exception.SystemException;
193
194 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T(
195 long nodeId, java.lang.String title, int start, int end,
196 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
197 throws com.liferay.portal.kernel.exception.SystemException;
198
199 public com.liferay.portlet.wiki.model.WikiPage findByN_T_First(
200 long nodeId, java.lang.String title,
201 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
202 throws com.liferay.portal.kernel.exception.SystemException,
203 com.liferay.portlet.wiki.NoSuchPageException;
204
205 public com.liferay.portlet.wiki.model.WikiPage findByN_T_Last(long nodeId,
206 java.lang.String title,
207 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
208 throws com.liferay.portal.kernel.exception.SystemException,
209 com.liferay.portlet.wiki.NoSuchPageException;
210
211 public com.liferay.portlet.wiki.model.WikiPage[] findByN_T_PrevAndNext(
212 long pageId, long nodeId, java.lang.String title,
213 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
214 throws com.liferay.portal.kernel.exception.SystemException,
215 com.liferay.portlet.wiki.NoSuchPageException;
216
217 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
218 long nodeId, boolean head)
219 throws com.liferay.portal.kernel.exception.SystemException;
220
221 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
222 long nodeId, boolean head, int start, int end)
223 throws com.liferay.portal.kernel.exception.SystemException;
224
225 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H(
226 long nodeId, boolean head, int start, int end,
227 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
228 throws com.liferay.portal.kernel.exception.SystemException;
229
230 public com.liferay.portlet.wiki.model.WikiPage findByN_H_First(
231 long nodeId, boolean head,
232 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
233 throws com.liferay.portal.kernel.exception.SystemException,
234 com.liferay.portlet.wiki.NoSuchPageException;
235
236 public com.liferay.portlet.wiki.model.WikiPage findByN_H_Last(long nodeId,
237 boolean head,
238 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
239 throws com.liferay.portal.kernel.exception.SystemException,
240 com.liferay.portlet.wiki.NoSuchPageException;
241
242 public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_PrevAndNext(
243 long pageId, long nodeId, boolean head,
244 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
245 throws com.liferay.portal.kernel.exception.SystemException,
246 com.liferay.portlet.wiki.NoSuchPageException;
247
248 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
249 long nodeId, java.lang.String parentTitle)
250 throws com.liferay.portal.kernel.exception.SystemException;
251
252 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
253 long nodeId, java.lang.String parentTitle, int start, int end)
254 throws com.liferay.portal.kernel.exception.SystemException;
255
256 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_P(
257 long nodeId, java.lang.String parentTitle, int start, int end,
258 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
259 throws com.liferay.portal.kernel.exception.SystemException;
260
261 public com.liferay.portlet.wiki.model.WikiPage findByN_P_First(
262 long nodeId, java.lang.String parentTitle,
263 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
264 throws com.liferay.portal.kernel.exception.SystemException,
265 com.liferay.portlet.wiki.NoSuchPageException;
266
267 public com.liferay.portlet.wiki.model.WikiPage findByN_P_Last(long nodeId,
268 java.lang.String parentTitle,
269 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
270 throws com.liferay.portal.kernel.exception.SystemException,
271 com.liferay.portlet.wiki.NoSuchPageException;
272
273 public com.liferay.portlet.wiki.model.WikiPage[] findByN_P_PrevAndNext(
274 long pageId, long nodeId, java.lang.String parentTitle,
275 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
276 throws com.liferay.portal.kernel.exception.SystemException,
277 com.liferay.portlet.wiki.NoSuchPageException;
278
279 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
280 long nodeId, java.lang.String redirectTitle)
281 throws com.liferay.portal.kernel.exception.SystemException;
282
283 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
284 long nodeId, java.lang.String redirectTitle, int start, int end)
285 throws com.liferay.portal.kernel.exception.SystemException;
286
287 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_R(
288 long nodeId, java.lang.String redirectTitle, int start, int end,
289 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
290 throws com.liferay.portal.kernel.exception.SystemException;
291
292 public com.liferay.portlet.wiki.model.WikiPage findByN_R_First(
293 long nodeId, java.lang.String redirectTitle,
294 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
295 throws com.liferay.portal.kernel.exception.SystemException,
296 com.liferay.portlet.wiki.NoSuchPageException;
297
298 public com.liferay.portlet.wiki.model.WikiPage findByN_R_Last(long nodeId,
299 java.lang.String redirectTitle,
300 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
301 throws com.liferay.portal.kernel.exception.SystemException,
302 com.liferay.portlet.wiki.NoSuchPageException;
303
304 public com.liferay.portlet.wiki.model.WikiPage[] findByN_R_PrevAndNext(
305 long pageId, long nodeId, java.lang.String redirectTitle,
306 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
307 throws com.liferay.portal.kernel.exception.SystemException,
308 com.liferay.portlet.wiki.NoSuchPageException;
309
310 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
311 long nodeId, int status)
312 throws com.liferay.portal.kernel.exception.SystemException;
313
314 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
315 long nodeId, int status, int start, int end)
316 throws com.liferay.portal.kernel.exception.SystemException;
317
318 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_S(
319 long nodeId, int status, int start, int end,
320 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
321 throws com.liferay.portal.kernel.exception.SystemException;
322
323 public com.liferay.portlet.wiki.model.WikiPage findByN_S_First(
324 long nodeId, int status,
325 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
326 throws com.liferay.portal.kernel.exception.SystemException,
327 com.liferay.portlet.wiki.NoSuchPageException;
328
329 public com.liferay.portlet.wiki.model.WikiPage findByN_S_Last(long nodeId,
330 int status,
331 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
332 throws com.liferay.portal.kernel.exception.SystemException,
333 com.liferay.portlet.wiki.NoSuchPageException;
334
335 public com.liferay.portlet.wiki.model.WikiPage[] findByN_S_PrevAndNext(
336 long pageId, long nodeId, int status,
337 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
338 throws com.liferay.portal.kernel.exception.SystemException,
339 com.liferay.portlet.wiki.NoSuchPageException;
340
341 public com.liferay.portlet.wiki.model.WikiPage findByR_N_V(
342 long resourcePrimKey, long nodeId, double version)
343 throws com.liferay.portal.kernel.exception.SystemException,
344 com.liferay.portlet.wiki.NoSuchPageException;
345
346 public com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
347 long resourcePrimKey, long nodeId, double version)
348 throws com.liferay.portal.kernel.exception.SystemException;
349
350 public com.liferay.portlet.wiki.model.WikiPage fetchByR_N_V(
351 long resourcePrimKey, long nodeId, double version,
352 boolean retrieveFromCache)
353 throws com.liferay.portal.kernel.exception.SystemException;
354
355 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
356 long resourcePrimKey, long nodeId, int status)
357 throws com.liferay.portal.kernel.exception.SystemException;
358
359 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
360 long resourcePrimKey, long nodeId, int status, int start, int end)
361 throws com.liferay.portal.kernel.exception.SystemException;
362
363 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByR_N_S(
364 long resourcePrimKey, long nodeId, int status, int start, int end,
365 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
366 throws com.liferay.portal.kernel.exception.SystemException;
367
368 public com.liferay.portlet.wiki.model.WikiPage findByR_N_S_First(
369 long resourcePrimKey, long nodeId, int status,
370 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
371 throws com.liferay.portal.kernel.exception.SystemException,
372 com.liferay.portlet.wiki.NoSuchPageException;
373
374 public com.liferay.portlet.wiki.model.WikiPage findByR_N_S_Last(
375 long resourcePrimKey, long nodeId, int status,
376 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
377 throws com.liferay.portal.kernel.exception.SystemException,
378 com.liferay.portlet.wiki.NoSuchPageException;
379
380 public com.liferay.portlet.wiki.model.WikiPage[] findByR_N_S_PrevAndNext(
381 long pageId, long resourcePrimKey, long nodeId, int status,
382 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
383 throws com.liferay.portal.kernel.exception.SystemException,
384 com.liferay.portlet.wiki.NoSuchPageException;
385
386 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
387 long userId, long nodeId, int status)
388 throws com.liferay.portal.kernel.exception.SystemException;
389
390 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
391 long userId, long nodeId, int status, int start, int end)
392 throws com.liferay.portal.kernel.exception.SystemException;
393
394 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByU_N_S(
395 long userId, long nodeId, int status, int start, int end,
396 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
397 throws com.liferay.portal.kernel.exception.SystemException;
398
399 public com.liferay.portlet.wiki.model.WikiPage findByU_N_S_First(
400 long userId, long nodeId, int status,
401 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
402 throws com.liferay.portal.kernel.exception.SystemException,
403 com.liferay.portlet.wiki.NoSuchPageException;
404
405 public com.liferay.portlet.wiki.model.WikiPage findByU_N_S_Last(
406 long userId, long nodeId, int status,
407 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
408 throws com.liferay.portal.kernel.exception.SystemException,
409 com.liferay.portlet.wiki.NoSuchPageException;
410
411 public com.liferay.portlet.wiki.model.WikiPage[] findByU_N_S_PrevAndNext(
412 long pageId, long userId, long nodeId, int status,
413 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
414 throws com.liferay.portal.kernel.exception.SystemException,
415 com.liferay.portlet.wiki.NoSuchPageException;
416
417 public com.liferay.portlet.wiki.model.WikiPage findByN_T_V(long nodeId,
418 java.lang.String title, double version)
419 throws com.liferay.portal.kernel.exception.SystemException,
420 com.liferay.portlet.wiki.NoSuchPageException;
421
422 public com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(long nodeId,
423 java.lang.String title, double version)
424 throws com.liferay.portal.kernel.exception.SystemException;
425
426 public com.liferay.portlet.wiki.model.WikiPage fetchByN_T_V(long nodeId,
427 java.lang.String title, double version, boolean retrieveFromCache)
428 throws com.liferay.portal.kernel.exception.SystemException;
429
430 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
431 long nodeId, java.lang.String title, boolean head)
432 throws com.liferay.portal.kernel.exception.SystemException;
433
434 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
435 long nodeId, java.lang.String title, boolean head, int start, int end)
436 throws com.liferay.portal.kernel.exception.SystemException;
437
438 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_H(
439 long nodeId, java.lang.String title, boolean head, int start, int end,
440 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
441 throws com.liferay.portal.kernel.exception.SystemException;
442
443 public com.liferay.portlet.wiki.model.WikiPage findByN_T_H_First(
444 long nodeId, java.lang.String title, boolean head,
445 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
446 throws com.liferay.portal.kernel.exception.SystemException,
447 com.liferay.portlet.wiki.NoSuchPageException;
448
449 public com.liferay.portlet.wiki.model.WikiPage findByN_T_H_Last(
450 long nodeId, java.lang.String title, boolean head,
451 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
452 throws com.liferay.portal.kernel.exception.SystemException,
453 com.liferay.portlet.wiki.NoSuchPageException;
454
455 public com.liferay.portlet.wiki.model.WikiPage[] findByN_T_H_PrevAndNext(
456 long pageId, long nodeId, java.lang.String title, boolean head,
457 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
458 throws com.liferay.portal.kernel.exception.SystemException,
459 com.liferay.portlet.wiki.NoSuchPageException;
460
461 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
462 long nodeId, java.lang.String title, int status)
463 throws com.liferay.portal.kernel.exception.SystemException;
464
465 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
466 long nodeId, java.lang.String title, int status, int start, int end)
467 throws com.liferay.portal.kernel.exception.SystemException;
468
469 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_T_S(
470 long nodeId, java.lang.String title, int status, int start, int end,
471 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
472 throws com.liferay.portal.kernel.exception.SystemException;
473
474 public com.liferay.portlet.wiki.model.WikiPage findByN_T_S_First(
475 long nodeId, java.lang.String title, int status,
476 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
477 throws com.liferay.portal.kernel.exception.SystemException,
478 com.liferay.portlet.wiki.NoSuchPageException;
479
480 public com.liferay.portlet.wiki.model.WikiPage findByN_T_S_Last(
481 long nodeId, java.lang.String title, int status,
482 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
483 throws com.liferay.portal.kernel.exception.SystemException,
484 com.liferay.portlet.wiki.NoSuchPageException;
485
486 public com.liferay.portlet.wiki.model.WikiPage[] findByN_T_S_PrevAndNext(
487 long pageId, long nodeId, java.lang.String title, int status,
488 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
489 throws com.liferay.portal.kernel.exception.SystemException,
490 com.liferay.portlet.wiki.NoSuchPageException;
491
492 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
493 long nodeId, boolean head, java.lang.String parentTitle)
494 throws com.liferay.portal.kernel.exception.SystemException;
495
496 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
497 long nodeId, boolean head, java.lang.String parentTitle, int start,
498 int end) throws com.liferay.portal.kernel.exception.SystemException;
499
500 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P(
501 long nodeId, boolean head, java.lang.String parentTitle, int start,
502 int end,
503 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
504 throws com.liferay.portal.kernel.exception.SystemException;
505
506 public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_First(
507 long nodeId, boolean head, java.lang.String parentTitle,
508 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
509 throws com.liferay.portal.kernel.exception.SystemException,
510 com.liferay.portlet.wiki.NoSuchPageException;
511
512 public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_Last(
513 long nodeId, boolean head, java.lang.String parentTitle,
514 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
515 throws com.liferay.portal.kernel.exception.SystemException,
516 com.liferay.portlet.wiki.NoSuchPageException;
517
518 public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_PrevAndNext(
519 long pageId, long nodeId, boolean head, java.lang.String parentTitle,
520 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
521 throws com.liferay.portal.kernel.exception.SystemException,
522 com.liferay.portlet.wiki.NoSuchPageException;
523
524 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
525 long nodeId, boolean head, int status)
526 throws com.liferay.portal.kernel.exception.SystemException;
527
528 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
529 long nodeId, boolean head, int status, int start, int end)
530 throws com.liferay.portal.kernel.exception.SystemException;
531
532 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_S(
533 long nodeId, boolean head, int status, int start, int end,
534 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
535 throws com.liferay.portal.kernel.exception.SystemException;
536
537 public com.liferay.portlet.wiki.model.WikiPage findByN_H_S_First(
538 long nodeId, boolean head, int status,
539 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
540 throws com.liferay.portal.kernel.exception.SystemException,
541 com.liferay.portlet.wiki.NoSuchPageException;
542
543 public com.liferay.portlet.wiki.model.WikiPage findByN_H_S_Last(
544 long nodeId, boolean head, int status,
545 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
546 throws com.liferay.portal.kernel.exception.SystemException,
547 com.liferay.portlet.wiki.NoSuchPageException;
548
549 public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_S_PrevAndNext(
550 long pageId, long nodeId, boolean head, int status,
551 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
552 throws com.liferay.portal.kernel.exception.SystemException,
553 com.liferay.portlet.wiki.NoSuchPageException;
554
555 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
556 long nodeId, boolean head, java.lang.String parentTitle, int status)
557 throws com.liferay.portal.kernel.exception.SystemException;
558
559 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
560 long nodeId, boolean head, java.lang.String parentTitle, int status,
561 int start, int end)
562 throws com.liferay.portal.kernel.exception.SystemException;
563
564 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findByN_H_P_S(
565 long nodeId, boolean head, java.lang.String parentTitle, int status,
566 int start, int end,
567 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
568 throws com.liferay.portal.kernel.exception.SystemException;
569
570 public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_First(
571 long nodeId, boolean head, java.lang.String parentTitle, int status,
572 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
573 throws com.liferay.portal.kernel.exception.SystemException,
574 com.liferay.portlet.wiki.NoSuchPageException;
575
576 public com.liferay.portlet.wiki.model.WikiPage findByN_H_P_S_Last(
577 long nodeId, boolean head, java.lang.String parentTitle, int status,
578 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
579 throws com.liferay.portal.kernel.exception.SystemException,
580 com.liferay.portlet.wiki.NoSuchPageException;
581
582 public com.liferay.portlet.wiki.model.WikiPage[] findByN_H_P_S_PrevAndNext(
583 long pageId, long nodeId, boolean head, java.lang.String parentTitle,
584 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 java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll()
590 throws com.liferay.portal.kernel.exception.SystemException;
591
592 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
593 int start, int end)
594 throws com.liferay.portal.kernel.exception.SystemException;
595
596 public java.util.List<com.liferay.portlet.wiki.model.WikiPage> findAll(
597 int start, int end,
598 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
599 throws com.liferay.portal.kernel.exception.SystemException;
600
601 public void removeByUuid(java.lang.String uuid)
602 throws com.liferay.portal.kernel.exception.SystemException;
603
604 public void removeByUUID_G(java.lang.String uuid, long groupId)
605 throws com.liferay.portal.kernel.exception.SystemException,
606 com.liferay.portlet.wiki.NoSuchPageException;
607
608 public void removeByNodeId(long nodeId)
609 throws com.liferay.portal.kernel.exception.SystemException;
610
611 public void removeByFormat(java.lang.String format)
612 throws com.liferay.portal.kernel.exception.SystemException;
613
614 public void removeByR_N(long resourcePrimKey, long nodeId)
615 throws com.liferay.portal.kernel.exception.SystemException;
616
617 public void removeByN_T(long nodeId, java.lang.String title)
618 throws com.liferay.portal.kernel.exception.SystemException;
619
620 public void removeByN_H(long nodeId, boolean head)
621 throws com.liferay.portal.kernel.exception.SystemException;
622
623 public void removeByN_P(long nodeId, java.lang.String parentTitle)
624 throws com.liferay.portal.kernel.exception.SystemException;
625
626 public void removeByN_R(long nodeId, java.lang.String redirectTitle)
627 throws com.liferay.portal.kernel.exception.SystemException;
628
629 public void removeByN_S(long nodeId, int status)
630 throws com.liferay.portal.kernel.exception.SystemException;
631
632 public void removeByR_N_V(long resourcePrimKey, long nodeId, double version)
633 throws com.liferay.portal.kernel.exception.SystemException,
634 com.liferay.portlet.wiki.NoSuchPageException;
635
636 public void removeByR_N_S(long resourcePrimKey, long nodeId, int status)
637 throws com.liferay.portal.kernel.exception.SystemException;
638
639 public void removeByU_N_S(long userId, long nodeId, int status)
640 throws com.liferay.portal.kernel.exception.SystemException;
641
642 public void removeByN_T_V(long nodeId, java.lang.String title,
643 double version)
644 throws com.liferay.portal.kernel.exception.SystemException,
645 com.liferay.portlet.wiki.NoSuchPageException;
646
647 public void removeByN_T_H(long nodeId, java.lang.String title, boolean head)
648 throws com.liferay.portal.kernel.exception.SystemException;
649
650 public void removeByN_T_S(long nodeId, java.lang.String title, int status)
651 throws com.liferay.portal.kernel.exception.SystemException;
652
653 public void removeByN_H_P(long nodeId, boolean head,
654 java.lang.String parentTitle)
655 throws com.liferay.portal.kernel.exception.SystemException;
656
657 public void removeByN_H_S(long nodeId, boolean head, int status)
658 throws com.liferay.portal.kernel.exception.SystemException;
659
660 public void removeByN_H_P_S(long nodeId, boolean head,
661 java.lang.String parentTitle, int status)
662 throws com.liferay.portal.kernel.exception.SystemException;
663
664 public void removeAll()
665 throws com.liferay.portal.kernel.exception.SystemException;
666
667 public int countByUuid(java.lang.String uuid)
668 throws com.liferay.portal.kernel.exception.SystemException;
669
670 public int countByUUID_G(java.lang.String uuid, long groupId)
671 throws com.liferay.portal.kernel.exception.SystemException;
672
673 public int countByNodeId(long nodeId)
674 throws com.liferay.portal.kernel.exception.SystemException;
675
676 public int countByFormat(java.lang.String format)
677 throws com.liferay.portal.kernel.exception.SystemException;
678
679 public int countByR_N(long resourcePrimKey, long nodeId)
680 throws com.liferay.portal.kernel.exception.SystemException;
681
682 public int countByN_T(long nodeId, java.lang.String title)
683 throws com.liferay.portal.kernel.exception.SystemException;
684
685 public int countByN_H(long nodeId, boolean head)
686 throws com.liferay.portal.kernel.exception.SystemException;
687
688 public int countByN_P(long nodeId, java.lang.String parentTitle)
689 throws com.liferay.portal.kernel.exception.SystemException;
690
691 public int countByN_R(long nodeId, java.lang.String redirectTitle)
692 throws com.liferay.portal.kernel.exception.SystemException;
693
694 public int countByN_S(long nodeId, int status)
695 throws com.liferay.portal.kernel.exception.SystemException;
696
697 public int countByR_N_V(long resourcePrimKey, long nodeId, double version)
698 throws com.liferay.portal.kernel.exception.SystemException;
699
700 public int countByR_N_S(long resourcePrimKey, long nodeId, int status)
701 throws com.liferay.portal.kernel.exception.SystemException;
702
703 public int countByU_N_S(long userId, long nodeId, int status)
704 throws com.liferay.portal.kernel.exception.SystemException;
705
706 public int countByN_T_V(long nodeId, java.lang.String title, double version)
707 throws com.liferay.portal.kernel.exception.SystemException;
708
709 public int countByN_T_H(long nodeId, java.lang.String title, boolean head)
710 throws com.liferay.portal.kernel.exception.SystemException;
711
712 public int countByN_T_S(long nodeId, java.lang.String title, int status)
713 throws com.liferay.portal.kernel.exception.SystemException;
714
715 public int countByN_H_P(long nodeId, boolean head,
716 java.lang.String parentTitle)
717 throws com.liferay.portal.kernel.exception.SystemException;
718
719 public int countByN_H_S(long nodeId, boolean head, int status)
720 throws com.liferay.portal.kernel.exception.SystemException;
721
722 public int countByN_H_P_S(long nodeId, boolean head,
723 java.lang.String parentTitle, int status)
724 throws com.liferay.portal.kernel.exception.SystemException;
725
726 public int countAll()
727 throws com.liferay.portal.kernel.exception.SystemException;
728 }