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.blogs.service.persistence;
16  
17  import com.liferay.portal.service.persistence.BasePersistence;
18  
19  import com.liferay.portlet.blogs.model.BlogsEntry;
20  
21  /**
22   * <a href="BlogsEntryPersistence.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       BlogsEntryPersistenceImpl
31   * @see       BlogsEntryUtil
32   * @generated
33   */
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 obc)
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 obc)
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 obc)
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 obc)
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 obc)
115         throws com.liferay.portal.kernel.exception.SystemException;
116 
117     public com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_First(
118         long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
119         throws com.liferay.portal.kernel.exception.SystemException,
120             com.liferay.portlet.blogs.NoSuchEntryException;
121 
122     public com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_Last(
123         long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
124         throws com.liferay.portal.kernel.exception.SystemException,
125             com.liferay.portlet.blogs.NoSuchEntryException;
126 
127     public com.liferay.portlet.blogs.model.BlogsEntry[] findByGroupId_PrevAndNext(
128         long entryId, long groupId,
129         com.liferay.portal.kernel.util.OrderByComparator obc)
130         throws com.liferay.portal.kernel.exception.SystemException,
131             com.liferay.portlet.blogs.NoSuchEntryException;
132 
133     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
134         long companyId)
135         throws com.liferay.portal.kernel.exception.SystemException;
136 
137     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
138         long companyId, int start, int end)
139         throws com.liferay.portal.kernel.exception.SystemException;
140 
141     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
142         long companyId, int start, int end,
143         com.liferay.portal.kernel.util.OrderByComparator obc)
144         throws com.liferay.portal.kernel.exception.SystemException;
145 
146     public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_First(
147         long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
148         throws com.liferay.portal.kernel.exception.SystemException,
149             com.liferay.portlet.blogs.NoSuchEntryException;
150 
151     public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_Last(
152         long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
153         throws com.liferay.portal.kernel.exception.SystemException,
154             com.liferay.portlet.blogs.NoSuchEntryException;
155 
156     public com.liferay.portlet.blogs.model.BlogsEntry[] findByCompanyId_PrevAndNext(
157         long entryId, long companyId,
158         com.liferay.portal.kernel.util.OrderByComparator obc)
159         throws com.liferay.portal.kernel.exception.SystemException,
160             com.liferay.portlet.blogs.NoSuchEntryException;
161 
162     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
163         long companyId, long userId)
164         throws com.liferay.portal.kernel.exception.SystemException;
165 
166     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
167         long companyId, long userId, int start, int end)
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         com.liferay.portal.kernel.util.OrderByComparator obc)
173         throws com.liferay.portal.kernel.exception.SystemException;
174 
175     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_First(
176         long companyId, long userId,
177         com.liferay.portal.kernel.util.OrderByComparator obc)
178         throws com.liferay.portal.kernel.exception.SystemException,
179             com.liferay.portlet.blogs.NoSuchEntryException;
180 
181     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_Last(
182         long companyId, long userId,
183         com.liferay.portal.kernel.util.OrderByComparator obc)
184         throws com.liferay.portal.kernel.exception.SystemException,
185             com.liferay.portlet.blogs.NoSuchEntryException;
186 
187     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_PrevAndNext(
188         long entryId, long companyId, long userId,
189         com.liferay.portal.kernel.util.OrderByComparator obc)
190         throws com.liferay.portal.kernel.exception.SystemException,
191             com.liferay.portlet.blogs.NoSuchEntryException;
192 
193     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
194         long companyId, java.util.Date displayDate)
195         throws com.liferay.portal.kernel.exception.SystemException;
196 
197     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
198         long companyId, java.util.Date displayDate, int start, int end)
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         com.liferay.portal.kernel.util.OrderByComparator obc)
204         throws com.liferay.portal.kernel.exception.SystemException;
205 
206     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_First(
207         long companyId, java.util.Date displayDate,
208         com.liferay.portal.kernel.util.OrderByComparator obc)
209         throws com.liferay.portal.kernel.exception.SystemException,
210             com.liferay.portlet.blogs.NoSuchEntryException;
211 
212     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_Last(
213         long companyId, java.util.Date displayDate,
214         com.liferay.portal.kernel.util.OrderByComparator obc)
215         throws com.liferay.portal.kernel.exception.SystemException,
216             com.liferay.portlet.blogs.NoSuchEntryException;
217 
218     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_PrevAndNext(
219         long entryId, long companyId, java.util.Date displayDate,
220         com.liferay.portal.kernel.util.OrderByComparator obc)
221         throws com.liferay.portal.kernel.exception.SystemException,
222             com.liferay.portlet.blogs.NoSuchEntryException;
223 
224     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
225         long companyId, int status)
226         throws com.liferay.portal.kernel.exception.SystemException;
227 
228     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
229         long companyId, int status, int start, int end)
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         com.liferay.portal.kernel.util.OrderByComparator obc)
235         throws com.liferay.portal.kernel.exception.SystemException;
236 
237     public com.liferay.portlet.blogs.model.BlogsEntry findByC_S_First(
238         long companyId, int status,
239         com.liferay.portal.kernel.util.OrderByComparator obc)
240         throws com.liferay.portal.kernel.exception.SystemException,
241             com.liferay.portlet.blogs.NoSuchEntryException;
242 
243     public com.liferay.portlet.blogs.model.BlogsEntry findByC_S_Last(
244         long companyId, int status,
245         com.liferay.portal.kernel.util.OrderByComparator obc)
246         throws com.liferay.portal.kernel.exception.SystemException,
247             com.liferay.portlet.blogs.NoSuchEntryException;
248 
249     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_S_PrevAndNext(
250         long entryId, long companyId, int status,
251         com.liferay.portal.kernel.util.OrderByComparator obc)
252         throws com.liferay.portal.kernel.exception.SystemException,
253             com.liferay.portlet.blogs.NoSuchEntryException;
254 
255     public com.liferay.portlet.blogs.model.BlogsEntry findByG_UT(long groupId,
256         java.lang.String urlTitle)
257         throws com.liferay.portal.kernel.exception.SystemException,
258             com.liferay.portlet.blogs.NoSuchEntryException;
259 
260     public com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
261         long groupId, java.lang.String urlTitle)
262         throws com.liferay.portal.kernel.exception.SystemException;
263 
264     public com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
265         long groupId, java.lang.String urlTitle, boolean retrieveFromCache)
266         throws com.liferay.portal.kernel.exception.SystemException;
267 
268     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
269         long groupId, java.util.Date displayDate)
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, int start, int end)
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         com.liferay.portal.kernel.util.OrderByComparator obc)
279         throws com.liferay.portal.kernel.exception.SystemException;
280 
281     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_First(
282         long groupId, java.util.Date displayDate,
283         com.liferay.portal.kernel.util.OrderByComparator obc)
284         throws com.liferay.portal.kernel.exception.SystemException,
285             com.liferay.portlet.blogs.NoSuchEntryException;
286 
287     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_Last(
288         long groupId, java.util.Date displayDate,
289         com.liferay.portal.kernel.util.OrderByComparator obc)
290         throws com.liferay.portal.kernel.exception.SystemException,
291             com.liferay.portlet.blogs.NoSuchEntryException;
292 
293     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_PrevAndNext(
294         long entryId, long groupId, java.util.Date displayDate,
295         com.liferay.portal.kernel.util.OrderByComparator obc)
296         throws com.liferay.portal.kernel.exception.SystemException,
297             com.liferay.portlet.blogs.NoSuchEntryException;
298 
299     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
300         long groupId, int status)
301         throws com.liferay.portal.kernel.exception.SystemException;
302 
303     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
304         long groupId, int status, int start, int end)
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         com.liferay.portal.kernel.util.OrderByComparator obc)
310         throws com.liferay.portal.kernel.exception.SystemException;
311 
312     public com.liferay.portlet.blogs.model.BlogsEntry findByG_S_First(
313         long groupId, int status,
314         com.liferay.portal.kernel.util.OrderByComparator obc)
315         throws com.liferay.portal.kernel.exception.SystemException,
316             com.liferay.portlet.blogs.NoSuchEntryException;
317 
318     public com.liferay.portlet.blogs.model.BlogsEntry findByG_S_Last(
319         long groupId, int status,
320         com.liferay.portal.kernel.util.OrderByComparator obc)
321         throws com.liferay.portal.kernel.exception.SystemException,
322             com.liferay.portlet.blogs.NoSuchEntryException;
323 
324     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_S_PrevAndNext(
325         long entryId, long groupId, int status,
326         com.liferay.portal.kernel.util.OrderByComparator obc)
327         throws com.liferay.portal.kernel.exception.SystemException,
328             com.liferay.portlet.blogs.NoSuchEntryException;
329 
330     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
331         long companyId, long userId, int status)
332         throws com.liferay.portal.kernel.exception.SystemException;
333 
334     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
335         long companyId, long userId, int status, int start, int end)
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         com.liferay.portal.kernel.util.OrderByComparator obc)
341         throws com.liferay.portal.kernel.exception.SystemException;
342 
343     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_First(
344         long companyId, long userId, int status,
345         com.liferay.portal.kernel.util.OrderByComparator obc)
346         throws com.liferay.portal.kernel.exception.SystemException,
347             com.liferay.portlet.blogs.NoSuchEntryException;
348 
349     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_Last(
350         long companyId, long userId, int status,
351         com.liferay.portal.kernel.util.OrderByComparator obc)
352         throws com.liferay.portal.kernel.exception.SystemException,
353             com.liferay.portlet.blogs.NoSuchEntryException;
354 
355     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_S_PrevAndNext(
356         long entryId, long companyId, long userId, int status,
357         com.liferay.portal.kernel.util.OrderByComparator obc)
358         throws com.liferay.portal.kernel.exception.SystemException,
359             com.liferay.portlet.blogs.NoSuchEntryException;
360 
361     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
362         long companyId, java.util.Date displayDate, int status)
363         throws com.liferay.portal.kernel.exception.SystemException;
364 
365     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
366         long companyId, java.util.Date displayDate, int status, int start,
367         int end) 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, com.liferay.portal.kernel.util.OrderByComparator obc)
372         throws com.liferay.portal.kernel.exception.SystemException;
373 
374     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_First(
375         long companyId, java.util.Date displayDate, int status,
376         com.liferay.portal.kernel.util.OrderByComparator obc)
377         throws com.liferay.portal.kernel.exception.SystemException,
378             com.liferay.portlet.blogs.NoSuchEntryException;
379 
380     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_Last(
381         long companyId, java.util.Date displayDate, int status,
382         com.liferay.portal.kernel.util.OrderByComparator obc)
383         throws com.liferay.portal.kernel.exception.SystemException,
384             com.liferay.portlet.blogs.NoSuchEntryException;
385 
386     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_S_PrevAndNext(
387         long entryId, long companyId, java.util.Date displayDate, int status,
388         com.liferay.portal.kernel.util.OrderByComparator obc)
389         throws com.liferay.portal.kernel.exception.SystemException,
390             com.liferay.portlet.blogs.NoSuchEntryException;
391 
392     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
393         long groupId, long userId, java.util.Date displayDate)
394         throws com.liferay.portal.kernel.exception.SystemException;
395 
396     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
397         long groupId, long userId, java.util.Date displayDate, int start,
398         int end) throws com.liferay.portal.kernel.exception.SystemException;
399 
400     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
401         long groupId, long userId, java.util.Date displayDate, int start,
402         int end, com.liferay.portal.kernel.util.OrderByComparator obc)
403         throws com.liferay.portal.kernel.exception.SystemException;
404 
405     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_First(
406         long groupId, long userId, java.util.Date displayDate,
407         com.liferay.portal.kernel.util.OrderByComparator obc)
408         throws com.liferay.portal.kernel.exception.SystemException,
409             com.liferay.portlet.blogs.NoSuchEntryException;
410 
411     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_Last(
412         long groupId, long userId, java.util.Date displayDate,
413         com.liferay.portal.kernel.util.OrderByComparator obc)
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_PrevAndNext(
418         long entryId, long groupId, long userId, java.util.Date displayDate,
419         com.liferay.portal.kernel.util.OrderByComparator obc)
420         throws com.liferay.portal.kernel.exception.SystemException,
421             com.liferay.portlet.blogs.NoSuchEntryException;
422 
423     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
424         long groupId, long userId, int status)
425         throws com.liferay.portal.kernel.exception.SystemException;
426 
427     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
428         long groupId, long userId, int status, int start, int end)
429         throws com.liferay.portal.kernel.exception.SystemException;
430 
431     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
432         long groupId, long userId, int status, int start, int end,
433         com.liferay.portal.kernel.util.OrderByComparator obc)
434         throws com.liferay.portal.kernel.exception.SystemException;
435 
436     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_First(
437         long groupId, long userId, int status,
438         com.liferay.portal.kernel.util.OrderByComparator obc)
439         throws com.liferay.portal.kernel.exception.SystemException,
440             com.liferay.portlet.blogs.NoSuchEntryException;
441 
442     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_Last(
443         long groupId, long userId, int status,
444         com.liferay.portal.kernel.util.OrderByComparator obc)
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_PrevAndNext(
449         long entryId, long groupId, long userId, int status,
450         com.liferay.portal.kernel.util.OrderByComparator obc)
451         throws com.liferay.portal.kernel.exception.SystemException,
452             com.liferay.portlet.blogs.NoSuchEntryException;
453 
454     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
455         long groupId, java.util.Date displayDate, int status)
456         throws com.liferay.portal.kernel.exception.SystemException;
457 
458     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
459         long groupId, java.util.Date displayDate, int status, int start, int end)
460         throws com.liferay.portal.kernel.exception.SystemException;
461 
462     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
463         long groupId, java.util.Date displayDate, int status, int start,
464         int end, com.liferay.portal.kernel.util.OrderByComparator obc)
465         throws com.liferay.portal.kernel.exception.SystemException;
466 
467     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_First(
468         long groupId, java.util.Date displayDate, int status,
469         com.liferay.portal.kernel.util.OrderByComparator obc)
470         throws com.liferay.portal.kernel.exception.SystemException,
471             com.liferay.portlet.blogs.NoSuchEntryException;
472 
473     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_Last(
474         long groupId, java.util.Date displayDate, int status,
475         com.liferay.portal.kernel.util.OrderByComparator obc)
476         throws com.liferay.portal.kernel.exception.SystemException,
477             com.liferay.portlet.blogs.NoSuchEntryException;
478 
479     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_S_PrevAndNext(
480         long entryId, long groupId, java.util.Date displayDate, int status,
481         com.liferay.portal.kernel.util.OrderByComparator obc)
482         throws com.liferay.portal.kernel.exception.SystemException,
483             com.liferay.portlet.blogs.NoSuchEntryException;
484 
485     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
486         long groupId, long userId, java.util.Date displayDate, int status)
487         throws com.liferay.portal.kernel.exception.SystemException;
488 
489     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
490         long groupId, long userId, java.util.Date displayDate, int status,
491         int start, int end)
492         throws com.liferay.portal.kernel.exception.SystemException;
493 
494     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
495         long groupId, long userId, java.util.Date displayDate, int status,
496         int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
497         throws com.liferay.portal.kernel.exception.SystemException;
498 
499     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_First(
500         long groupId, long userId, java.util.Date displayDate, int status,
501         com.liferay.portal.kernel.util.OrderByComparator obc)
502         throws com.liferay.portal.kernel.exception.SystemException,
503             com.liferay.portlet.blogs.NoSuchEntryException;
504 
505     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_Last(
506         long groupId, long userId, java.util.Date displayDate, int status,
507         com.liferay.portal.kernel.util.OrderByComparator obc)
508         throws com.liferay.portal.kernel.exception.SystemException,
509             com.liferay.portlet.blogs.NoSuchEntryException;
510 
511     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_S_PrevAndNext(
512         long entryId, long groupId, long userId, java.util.Date displayDate,
513         int status, com.liferay.portal.kernel.util.OrderByComparator obc)
514         throws com.liferay.portal.kernel.exception.SystemException,
515             com.liferay.portlet.blogs.NoSuchEntryException;
516 
517     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll()
518         throws com.liferay.portal.kernel.exception.SystemException;
519 
520     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
521         int start, int end)
522         throws com.liferay.portal.kernel.exception.SystemException;
523 
524     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
525         int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
526         throws com.liferay.portal.kernel.exception.SystemException;
527 
528     public void removeByUuid(java.lang.String uuid)
529         throws com.liferay.portal.kernel.exception.SystemException;
530 
531     public void removeByUUID_G(java.lang.String uuid, long groupId)
532         throws com.liferay.portal.kernel.exception.SystemException,
533             com.liferay.portlet.blogs.NoSuchEntryException;
534 
535     public void removeByGroupId(long groupId)
536         throws com.liferay.portal.kernel.exception.SystemException;
537 
538     public void removeByCompanyId(long companyId)
539         throws com.liferay.portal.kernel.exception.SystemException;
540 
541     public void removeByC_U(long companyId, long userId)
542         throws com.liferay.portal.kernel.exception.SystemException;
543 
544     public void removeByC_D(long companyId, java.util.Date displayDate)
545         throws com.liferay.portal.kernel.exception.SystemException;
546 
547     public void removeByC_S(long companyId, int status)
548         throws com.liferay.portal.kernel.exception.SystemException;
549 
550     public void removeByG_UT(long groupId, java.lang.String urlTitle)
551         throws com.liferay.portal.kernel.exception.SystemException,
552             com.liferay.portlet.blogs.NoSuchEntryException;
553 
554     public void removeByG_D(long groupId, java.util.Date displayDate)
555         throws com.liferay.portal.kernel.exception.SystemException;
556 
557     public void removeByG_S(long groupId, int status)
558         throws com.liferay.portal.kernel.exception.SystemException;
559 
560     public void removeByC_U_S(long companyId, long userId, int status)
561         throws com.liferay.portal.kernel.exception.SystemException;
562 
563     public void removeByC_D_S(long companyId, java.util.Date displayDate,
564         int status) throws com.liferay.portal.kernel.exception.SystemException;
565 
566     public void removeByG_U_D(long groupId, long userId,
567         java.util.Date displayDate)
568         throws com.liferay.portal.kernel.exception.SystemException;
569 
570     public void removeByG_U_S(long groupId, long userId, int status)
571         throws com.liferay.portal.kernel.exception.SystemException;
572 
573     public void removeByG_D_S(long groupId, java.util.Date displayDate,
574         int status) throws com.liferay.portal.kernel.exception.SystemException;
575 
576     public void removeByG_U_D_S(long groupId, long userId,
577         java.util.Date displayDate, int status)
578         throws com.liferay.portal.kernel.exception.SystemException;
579 
580     public void removeAll()
581         throws com.liferay.portal.kernel.exception.SystemException;
582 
583     public int countByUuid(java.lang.String uuid)
584         throws com.liferay.portal.kernel.exception.SystemException;
585 
586     public int countByUUID_G(java.lang.String uuid, long groupId)
587         throws com.liferay.portal.kernel.exception.SystemException;
588 
589     public int countByGroupId(long groupId)
590         throws com.liferay.portal.kernel.exception.SystemException;
591 
592     public int countByCompanyId(long companyId)
593         throws com.liferay.portal.kernel.exception.SystemException;
594 
595     public int countByC_U(long companyId, long userId)
596         throws com.liferay.portal.kernel.exception.SystemException;
597 
598     public int countByC_D(long companyId, java.util.Date displayDate)
599         throws com.liferay.portal.kernel.exception.SystemException;
600 
601     public int countByC_S(long companyId, int status)
602         throws com.liferay.portal.kernel.exception.SystemException;
603 
604     public int countByG_UT(long groupId, java.lang.String urlTitle)
605         throws com.liferay.portal.kernel.exception.SystemException;
606 
607     public int countByG_D(long groupId, java.util.Date displayDate)
608         throws com.liferay.portal.kernel.exception.SystemException;
609 
610     public int countByG_S(long groupId, int status)
611         throws com.liferay.portal.kernel.exception.SystemException;
612 
613     public int countByC_U_S(long companyId, long userId, int status)
614         throws com.liferay.portal.kernel.exception.SystemException;
615 
616     public int countByC_D_S(long companyId, java.util.Date displayDate,
617         int status) throws com.liferay.portal.kernel.exception.SystemException;
618 
619     public int countByG_U_D(long groupId, long userId,
620         java.util.Date displayDate)
621         throws com.liferay.portal.kernel.exception.SystemException;
622 
623     public int countByG_U_S(long groupId, long userId, int status)
624         throws com.liferay.portal.kernel.exception.SystemException;
625 
626     public int countByG_D_S(long groupId, java.util.Date displayDate, int status)
627         throws com.liferay.portal.kernel.exception.SystemException;
628 
629     public int countByG_U_D_S(long groupId, long userId,
630         java.util.Date displayDate, int status)
631         throws com.liferay.portal.kernel.exception.SystemException;
632 
633     public int countAll()
634         throws com.liferay.portal.kernel.exception.SystemException;
635 }