1
14
15 package com.liferay.portlet.blogs.service.persistence;
16
17 import com.liferay.portal.service.persistence.BasePersistence;
18
19 import com.liferay.portlet.blogs.model.BlogsEntry;
20
21
34 public interface BlogsEntryPersistence extends BasePersistence<BlogsEntry> {
35 public void cacheResult(
36 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry);
37
38 public void cacheResult(
39 java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> blogsEntries);
40
41 public com.liferay.portlet.blogs.model.BlogsEntry create(long entryId);
42
43 public com.liferay.portlet.blogs.model.BlogsEntry remove(long entryId)
44 throws com.liferay.portal.kernel.exception.SystemException,
45 com.liferay.portlet.blogs.NoSuchEntryException;
46
47 public com.liferay.portlet.blogs.model.BlogsEntry updateImpl(
48 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry, boolean merge)
49 throws com.liferay.portal.kernel.exception.SystemException;
50
51 public com.liferay.portlet.blogs.model.BlogsEntry findByPrimaryKey(
52 long entryId)
53 throws com.liferay.portal.kernel.exception.SystemException,
54 com.liferay.portlet.blogs.NoSuchEntryException;
55
56 public com.liferay.portlet.blogs.model.BlogsEntry fetchByPrimaryKey(
57 long entryId)
58 throws com.liferay.portal.kernel.exception.SystemException;
59
60 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
61 java.lang.String uuid)
62 throws com.liferay.portal.kernel.exception.SystemException;
63
64 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
65 java.lang.String uuid, int start, int end)
66 throws com.liferay.portal.kernel.exception.SystemException;
67
68 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
69 java.lang.String uuid, int start, int end,
70 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
71 throws com.liferay.portal.kernel.exception.SystemException;
72
73 public com.liferay.portlet.blogs.model.BlogsEntry findByUuid_First(
74 java.lang.String uuid,
75 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
76 throws com.liferay.portal.kernel.exception.SystemException,
77 com.liferay.portlet.blogs.NoSuchEntryException;
78
79 public com.liferay.portlet.blogs.model.BlogsEntry findByUuid_Last(
80 java.lang.String uuid,
81 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
82 throws com.liferay.portal.kernel.exception.SystemException,
83 com.liferay.portlet.blogs.NoSuchEntryException;
84
85 public com.liferay.portlet.blogs.model.BlogsEntry[] findByUuid_PrevAndNext(
86 long entryId, java.lang.String uuid,
87 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
88 throws com.liferay.portal.kernel.exception.SystemException,
89 com.liferay.portlet.blogs.NoSuchEntryException;
90
91 public com.liferay.portlet.blogs.model.BlogsEntry findByUUID_G(
92 java.lang.String uuid, long groupId)
93 throws com.liferay.portal.kernel.exception.SystemException,
94 com.liferay.portlet.blogs.NoSuchEntryException;
95
96 public com.liferay.portlet.blogs.model.BlogsEntry fetchByUUID_G(
97 java.lang.String uuid, long groupId)
98 throws com.liferay.portal.kernel.exception.SystemException;
99
100 public com.liferay.portlet.blogs.model.BlogsEntry fetchByUUID_G(
101 java.lang.String uuid, long groupId, boolean retrieveFromCache)
102 throws com.liferay.portal.kernel.exception.SystemException;
103
104 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
105 long groupId)
106 throws com.liferay.portal.kernel.exception.SystemException;
107
108 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
109 long groupId, int start, int end)
110 throws com.liferay.portal.kernel.exception.SystemException;
111
112 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
113 long groupId, int start, int end,
114 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
115 throws com.liferay.portal.kernel.exception.SystemException;
116
117 public com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_First(
118 long groupId,
119 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
120 throws com.liferay.portal.kernel.exception.SystemException,
121 com.liferay.portlet.blogs.NoSuchEntryException;
122
123 public com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_Last(
124 long groupId,
125 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
126 throws com.liferay.portal.kernel.exception.SystemException,
127 com.liferay.portlet.blogs.NoSuchEntryException;
128
129 public com.liferay.portlet.blogs.model.BlogsEntry[] findByGroupId_PrevAndNext(
130 long entryId, long groupId,
131 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
132 throws com.liferay.portal.kernel.exception.SystemException,
133 com.liferay.portlet.blogs.NoSuchEntryException;
134
135 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
136 long companyId)
137 throws com.liferay.portal.kernel.exception.SystemException;
138
139 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
140 long companyId, int start, int end)
141 throws com.liferay.portal.kernel.exception.SystemException;
142
143 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
144 long companyId, int start, int end,
145 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
146 throws com.liferay.portal.kernel.exception.SystemException;
147
148 public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_First(
149 long companyId,
150 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
151 throws com.liferay.portal.kernel.exception.SystemException,
152 com.liferay.portlet.blogs.NoSuchEntryException;
153
154 public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_Last(
155 long companyId,
156 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
157 throws com.liferay.portal.kernel.exception.SystemException,
158 com.liferay.portlet.blogs.NoSuchEntryException;
159
160 public com.liferay.portlet.blogs.model.BlogsEntry[] findByCompanyId_PrevAndNext(
161 long entryId, long companyId,
162 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
163 throws com.liferay.portal.kernel.exception.SystemException,
164 com.liferay.portlet.blogs.NoSuchEntryException;
165
166 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
167 long companyId, long userId)
168 throws com.liferay.portal.kernel.exception.SystemException;
169
170 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
171 long companyId, long userId, int start, int end)
172 throws com.liferay.portal.kernel.exception.SystemException;
173
174 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
175 long companyId, long userId, int start, int end,
176 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
177 throws com.liferay.portal.kernel.exception.SystemException;
178
179 public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_First(
180 long companyId, long userId,
181 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
182 throws com.liferay.portal.kernel.exception.SystemException,
183 com.liferay.portlet.blogs.NoSuchEntryException;
184
185 public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_Last(
186 long companyId, long userId,
187 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
188 throws com.liferay.portal.kernel.exception.SystemException,
189 com.liferay.portlet.blogs.NoSuchEntryException;
190
191 public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_PrevAndNext(
192 long entryId, long companyId, long userId,
193 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
194 throws com.liferay.portal.kernel.exception.SystemException,
195 com.liferay.portlet.blogs.NoSuchEntryException;
196
197 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
198 long companyId, java.util.Date displayDate)
199 throws com.liferay.portal.kernel.exception.SystemException;
200
201 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
202 long companyId, java.util.Date displayDate, int start, int end)
203 throws com.liferay.portal.kernel.exception.SystemException;
204
205 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
206 long companyId, java.util.Date displayDate, int start, int end,
207 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
208 throws com.liferay.portal.kernel.exception.SystemException;
209
210 public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_First(
211 long companyId, java.util.Date displayDate,
212 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
213 throws com.liferay.portal.kernel.exception.SystemException,
214 com.liferay.portlet.blogs.NoSuchEntryException;
215
216 public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_Last(
217 long companyId, java.util.Date displayDate,
218 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
219 throws com.liferay.portal.kernel.exception.SystemException,
220 com.liferay.portlet.blogs.NoSuchEntryException;
221
222 public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_PrevAndNext(
223 long entryId, long companyId, java.util.Date displayDate,
224 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
225 throws com.liferay.portal.kernel.exception.SystemException,
226 com.liferay.portlet.blogs.NoSuchEntryException;
227
228 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
229 long companyId, int status)
230 throws com.liferay.portal.kernel.exception.SystemException;
231
232 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
233 long companyId, int status, int start, int end)
234 throws com.liferay.portal.kernel.exception.SystemException;
235
236 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
237 long companyId, int status, int start, int end,
238 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
239 throws com.liferay.portal.kernel.exception.SystemException;
240
241 public com.liferay.portlet.blogs.model.BlogsEntry findByC_S_First(
242 long companyId, int status,
243 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
244 throws com.liferay.portal.kernel.exception.SystemException,
245 com.liferay.portlet.blogs.NoSuchEntryException;
246
247 public com.liferay.portlet.blogs.model.BlogsEntry findByC_S_Last(
248 long companyId, int status,
249 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
250 throws com.liferay.portal.kernel.exception.SystemException,
251 com.liferay.portlet.blogs.NoSuchEntryException;
252
253 public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_S_PrevAndNext(
254 long entryId, long companyId, int status,
255 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
256 throws com.liferay.portal.kernel.exception.SystemException,
257 com.liferay.portlet.blogs.NoSuchEntryException;
258
259 public com.liferay.portlet.blogs.model.BlogsEntry findByG_UT(long groupId,
260 java.lang.String urlTitle)
261 throws com.liferay.portal.kernel.exception.SystemException,
262 com.liferay.portlet.blogs.NoSuchEntryException;
263
264 public com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
265 long groupId, java.lang.String urlTitle)
266 throws com.liferay.portal.kernel.exception.SystemException;
267
268 public com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
269 long groupId, java.lang.String urlTitle, boolean retrieveFromCache)
270 throws com.liferay.portal.kernel.exception.SystemException;
271
272 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
273 long groupId, java.util.Date displayDate)
274 throws com.liferay.portal.kernel.exception.SystemException;
275
276 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
277 long groupId, java.util.Date displayDate, int start, int end)
278 throws com.liferay.portal.kernel.exception.SystemException;
279
280 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
281 long groupId, java.util.Date displayDate, int start, int end,
282 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
283 throws com.liferay.portal.kernel.exception.SystemException;
284
285 public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_First(
286 long groupId, java.util.Date displayDate,
287 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
288 throws com.liferay.portal.kernel.exception.SystemException,
289 com.liferay.portlet.blogs.NoSuchEntryException;
290
291 public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_Last(
292 long groupId, java.util.Date displayDate,
293 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
294 throws com.liferay.portal.kernel.exception.SystemException,
295 com.liferay.portlet.blogs.NoSuchEntryException;
296
297 public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_PrevAndNext(
298 long entryId, long groupId, java.util.Date displayDate,
299 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
300 throws com.liferay.portal.kernel.exception.SystemException,
301 com.liferay.portlet.blogs.NoSuchEntryException;
302
303 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
304 long groupId, int status)
305 throws com.liferay.portal.kernel.exception.SystemException;
306
307 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
308 long groupId, int status, int start, int end)
309 throws com.liferay.portal.kernel.exception.SystemException;
310
311 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
312 long groupId, int status, int start, int end,
313 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
314 throws com.liferay.portal.kernel.exception.SystemException;
315
316 public com.liferay.portlet.blogs.model.BlogsEntry findByG_S_First(
317 long groupId, int status,
318 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
319 throws com.liferay.portal.kernel.exception.SystemException,
320 com.liferay.portlet.blogs.NoSuchEntryException;
321
322 public com.liferay.portlet.blogs.model.BlogsEntry findByG_S_Last(
323 long groupId, int status,
324 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
325 throws com.liferay.portal.kernel.exception.SystemException,
326 com.liferay.portlet.blogs.NoSuchEntryException;
327
328 public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_S_PrevAndNext(
329 long entryId, long groupId, int status,
330 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
331 throws com.liferay.portal.kernel.exception.SystemException,
332 com.liferay.portlet.blogs.NoSuchEntryException;
333
334 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
335 long companyId, long userId, int status)
336 throws com.liferay.portal.kernel.exception.SystemException;
337
338 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
339 long companyId, long userId, int status, int start, int end)
340 throws com.liferay.portal.kernel.exception.SystemException;
341
342 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
343 long companyId, long userId, int status, int start, int end,
344 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
345 throws com.liferay.portal.kernel.exception.SystemException;
346
347 public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_First(
348 long companyId, long userId, int status,
349 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
350 throws com.liferay.portal.kernel.exception.SystemException,
351 com.liferay.portlet.blogs.NoSuchEntryException;
352
353 public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_Last(
354 long companyId, long userId, int status,
355 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
356 throws com.liferay.portal.kernel.exception.SystemException,
357 com.liferay.portlet.blogs.NoSuchEntryException;
358
359 public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_S_PrevAndNext(
360 long entryId, long companyId, long userId, int status,
361 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
362 throws com.liferay.portal.kernel.exception.SystemException,
363 com.liferay.portlet.blogs.NoSuchEntryException;
364
365 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
366 long companyId, java.util.Date displayDate, int status)
367 throws com.liferay.portal.kernel.exception.SystemException;
368
369 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
370 long companyId, java.util.Date displayDate, int status, int start,
371 int end) throws com.liferay.portal.kernel.exception.SystemException;
372
373 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
374 long companyId, java.util.Date displayDate, int status, int start,
375 int end,
376 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
377 throws com.liferay.portal.kernel.exception.SystemException;
378
379 public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_First(
380 long companyId, java.util.Date displayDate, int status,
381 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
382 throws com.liferay.portal.kernel.exception.SystemException,
383 com.liferay.portlet.blogs.NoSuchEntryException;
384
385 public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_Last(
386 long companyId, java.util.Date displayDate, int status,
387 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
388 throws com.liferay.portal.kernel.exception.SystemException,
389 com.liferay.portlet.blogs.NoSuchEntryException;
390
391 public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_S_PrevAndNext(
392 long entryId, long companyId, java.util.Date displayDate, int status,
393 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
394 throws com.liferay.portal.kernel.exception.SystemException,
395 com.liferay.portlet.blogs.NoSuchEntryException;
396
397 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
398 long groupId, long userId, java.util.Date displayDate)
399 throws com.liferay.portal.kernel.exception.SystemException;
400
401 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
402 long groupId, long userId, java.util.Date displayDate, int start,
403 int end) throws com.liferay.portal.kernel.exception.SystemException;
404
405 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
406 long groupId, long userId, java.util.Date displayDate, int start,
407 int end,
408 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
409 throws com.liferay.portal.kernel.exception.SystemException;
410
411 public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_First(
412 long groupId, long userId, java.util.Date displayDate,
413 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
414 throws com.liferay.portal.kernel.exception.SystemException,
415 com.liferay.portlet.blogs.NoSuchEntryException;
416
417 public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_Last(
418 long groupId, long userId, java.util.Date displayDate,
419 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
420 throws com.liferay.portal.kernel.exception.SystemException,
421 com.liferay.portlet.blogs.NoSuchEntryException;
422
423 public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_PrevAndNext(
424 long entryId, long groupId, long userId, java.util.Date displayDate,
425 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
426 throws com.liferay.portal.kernel.exception.SystemException,
427 com.liferay.portlet.blogs.NoSuchEntryException;
428
429 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
430 long groupId, long userId, int status)
431 throws com.liferay.portal.kernel.exception.SystemException;
432
433 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
434 long groupId, long userId, int status, int start, int end)
435 throws com.liferay.portal.kernel.exception.SystemException;
436
437 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
438 long groupId, long userId, int status, int start, int end,
439 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
440 throws com.liferay.portal.kernel.exception.SystemException;
441
442 public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_First(
443 long groupId, long userId, int status,
444 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
445 throws com.liferay.portal.kernel.exception.SystemException,
446 com.liferay.portlet.blogs.NoSuchEntryException;
447
448 public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_Last(
449 long groupId, long userId, int status,
450 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
451 throws com.liferay.portal.kernel.exception.SystemException,
452 com.liferay.portlet.blogs.NoSuchEntryException;
453
454 public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_S_PrevAndNext(
455 long entryId, long groupId, long userId, int status,
456 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
457 throws com.liferay.portal.kernel.exception.SystemException,
458 com.liferay.portlet.blogs.NoSuchEntryException;
459
460 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
461 long groupId, java.util.Date displayDate, int status)
462 throws com.liferay.portal.kernel.exception.SystemException;
463
464 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
465 long groupId, java.util.Date displayDate, int status, int start, int end)
466 throws com.liferay.portal.kernel.exception.SystemException;
467
468 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
469 long groupId, java.util.Date displayDate, int status, int start,
470 int end,
471 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
472 throws com.liferay.portal.kernel.exception.SystemException;
473
474 public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_First(
475 long groupId, java.util.Date displayDate, int status,
476 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
477 throws com.liferay.portal.kernel.exception.SystemException,
478 com.liferay.portlet.blogs.NoSuchEntryException;
479
480 public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_Last(
481 long groupId, java.util.Date displayDate, int status,
482 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
483 throws com.liferay.portal.kernel.exception.SystemException,
484 com.liferay.portlet.blogs.NoSuchEntryException;
485
486 public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_S_PrevAndNext(
487 long entryId, long groupId, java.util.Date displayDate, int status,
488 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
489 throws com.liferay.portal.kernel.exception.SystemException,
490 com.liferay.portlet.blogs.NoSuchEntryException;
491
492 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
493 long groupId, long userId, java.util.Date displayDate, int status)
494 throws com.liferay.portal.kernel.exception.SystemException;
495
496 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
497 long groupId, long userId, java.util.Date displayDate, int status,
498 int start, int end)
499 throws com.liferay.portal.kernel.exception.SystemException;
500
501 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
502 long groupId, long userId, java.util.Date displayDate, int status,
503 int start, int end,
504 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
505 throws com.liferay.portal.kernel.exception.SystemException;
506
507 public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_First(
508 long groupId, long userId, java.util.Date displayDate, int status,
509 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
510 throws com.liferay.portal.kernel.exception.SystemException,
511 com.liferay.portlet.blogs.NoSuchEntryException;
512
513 public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_Last(
514 long groupId, long userId, java.util.Date displayDate, int status,
515 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
516 throws com.liferay.portal.kernel.exception.SystemException,
517 com.liferay.portlet.blogs.NoSuchEntryException;
518
519 public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_S_PrevAndNext(
520 long entryId, long groupId, long userId, java.util.Date displayDate,
521 int status,
522 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
523 throws com.liferay.portal.kernel.exception.SystemException,
524 com.liferay.portlet.blogs.NoSuchEntryException;
525
526 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll()
527 throws com.liferay.portal.kernel.exception.SystemException;
528
529 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
530 int start, int end)
531 throws com.liferay.portal.kernel.exception.SystemException;
532
533 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
534 int start, int end,
535 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
536 throws com.liferay.portal.kernel.exception.SystemException;
537
538 public void removeByUuid(java.lang.String uuid)
539 throws com.liferay.portal.kernel.exception.SystemException;
540
541 public void removeByUUID_G(java.lang.String uuid, long groupId)
542 throws com.liferay.portal.kernel.exception.SystemException,
543 com.liferay.portlet.blogs.NoSuchEntryException;
544
545 public void removeByGroupId(long groupId)
546 throws com.liferay.portal.kernel.exception.SystemException;
547
548 public void removeByCompanyId(long companyId)
549 throws com.liferay.portal.kernel.exception.SystemException;
550
551 public void removeByC_U(long companyId, long userId)
552 throws com.liferay.portal.kernel.exception.SystemException;
553
554 public void removeByC_D(long companyId, java.util.Date displayDate)
555 throws com.liferay.portal.kernel.exception.SystemException;
556
557 public void removeByC_S(long companyId, int status)
558 throws com.liferay.portal.kernel.exception.SystemException;
559
560 public void removeByG_UT(long groupId, java.lang.String urlTitle)
561 throws com.liferay.portal.kernel.exception.SystemException,
562 com.liferay.portlet.blogs.NoSuchEntryException;
563
564 public void removeByG_D(long groupId, java.util.Date displayDate)
565 throws com.liferay.portal.kernel.exception.SystemException;
566
567 public void removeByG_S(long groupId, int status)
568 throws com.liferay.portal.kernel.exception.SystemException;
569
570 public void removeByC_U_S(long companyId, long userId, int status)
571 throws com.liferay.portal.kernel.exception.SystemException;
572
573 public void removeByC_D_S(long companyId, java.util.Date displayDate,
574 int status) throws com.liferay.portal.kernel.exception.SystemException;
575
576 public void removeByG_U_D(long groupId, long userId,
577 java.util.Date displayDate)
578 throws com.liferay.portal.kernel.exception.SystemException;
579
580 public void removeByG_U_S(long groupId, long userId, int status)
581 throws com.liferay.portal.kernel.exception.SystemException;
582
583 public void removeByG_D_S(long groupId, java.util.Date displayDate,
584 int status) throws com.liferay.portal.kernel.exception.SystemException;
585
586 public void removeByG_U_D_S(long groupId, long userId,
587 java.util.Date displayDate, int status)
588 throws com.liferay.portal.kernel.exception.SystemException;
589
590 public void removeAll()
591 throws com.liferay.portal.kernel.exception.SystemException;
592
593 public int countByUuid(java.lang.String uuid)
594 throws com.liferay.portal.kernel.exception.SystemException;
595
596 public int countByUUID_G(java.lang.String uuid, long groupId)
597 throws com.liferay.portal.kernel.exception.SystemException;
598
599 public int countByGroupId(long groupId)
600 throws com.liferay.portal.kernel.exception.SystemException;
601
602 public int countByCompanyId(long companyId)
603 throws com.liferay.portal.kernel.exception.SystemException;
604
605 public int countByC_U(long companyId, long userId)
606 throws com.liferay.portal.kernel.exception.SystemException;
607
608 public int countByC_D(long companyId, java.util.Date displayDate)
609 throws com.liferay.portal.kernel.exception.SystemException;
610
611 public int countByC_S(long companyId, int status)
612 throws com.liferay.portal.kernel.exception.SystemException;
613
614 public int countByG_UT(long groupId, java.lang.String urlTitle)
615 throws com.liferay.portal.kernel.exception.SystemException;
616
617 public int countByG_D(long groupId, java.util.Date displayDate)
618 throws com.liferay.portal.kernel.exception.SystemException;
619
620 public int countByG_S(long groupId, int status)
621 throws com.liferay.portal.kernel.exception.SystemException;
622
623 public int countByC_U_S(long companyId, long userId, int status)
624 throws com.liferay.portal.kernel.exception.SystemException;
625
626 public int countByC_D_S(long companyId, java.util.Date displayDate,
627 int status) throws com.liferay.portal.kernel.exception.SystemException;
628
629 public int countByG_U_D(long groupId, long userId,
630 java.util.Date displayDate)
631 throws com.liferay.portal.kernel.exception.SystemException;
632
633 public int countByG_U_S(long groupId, long userId, int status)
634 throws com.liferay.portal.kernel.exception.SystemException;
635
636 public int countByG_D_S(long groupId, java.util.Date displayDate, int status)
637 throws com.liferay.portal.kernel.exception.SystemException;
638
639 public int countByG_U_D_S(long groupId, long userId,
640 java.util.Date displayDate, int status)
641 throws com.liferay.portal.kernel.exception.SystemException;
642
643 public int countAll()
644 throws com.liferay.portal.kernel.exception.SystemException;
645 }