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 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> filterFindByGroupId(
136         long groupId)
137         throws com.liferay.portal.kernel.exception.SystemException;
138 
139     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByGroupId(
140         long groupId, int start, int end)
141         throws com.liferay.portal.kernel.exception.SystemException;
142 
143     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByGroupId(
144         long groupId, int start, int end,
145         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
146         throws com.liferay.portal.kernel.exception.SystemException;
147 
148     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
149         long companyId)
150         throws com.liferay.portal.kernel.exception.SystemException;
151 
152     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
153         long companyId, int start, int end)
154         throws com.liferay.portal.kernel.exception.SystemException;
155 
156     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
157         long companyId, int start, int end,
158         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
159         throws com.liferay.portal.kernel.exception.SystemException;
160 
161     public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_First(
162         long companyId,
163         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
164         throws com.liferay.portal.kernel.exception.SystemException,
165             com.liferay.portlet.blogs.NoSuchEntryException;
166 
167     public com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_Last(
168         long companyId,
169         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
170         throws com.liferay.portal.kernel.exception.SystemException,
171             com.liferay.portlet.blogs.NoSuchEntryException;
172 
173     public com.liferay.portlet.blogs.model.BlogsEntry[] findByCompanyId_PrevAndNext(
174         long entryId, long companyId,
175         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
176         throws com.liferay.portal.kernel.exception.SystemException,
177             com.liferay.portlet.blogs.NoSuchEntryException;
178 
179     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
180         long companyId, long userId)
181         throws com.liferay.portal.kernel.exception.SystemException;
182 
183     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
184         long companyId, long userId, int start, int end)
185         throws com.liferay.portal.kernel.exception.SystemException;
186 
187     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
188         long companyId, long userId, int start, int end,
189         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
190         throws com.liferay.portal.kernel.exception.SystemException;
191 
192     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_First(
193         long companyId, long userId,
194         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
195         throws com.liferay.portal.kernel.exception.SystemException,
196             com.liferay.portlet.blogs.NoSuchEntryException;
197 
198     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_Last(
199         long companyId, long userId,
200         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
201         throws com.liferay.portal.kernel.exception.SystemException,
202             com.liferay.portlet.blogs.NoSuchEntryException;
203 
204     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_PrevAndNext(
205         long entryId, long companyId, long userId,
206         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
207         throws com.liferay.portal.kernel.exception.SystemException,
208             com.liferay.portlet.blogs.NoSuchEntryException;
209 
210     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
211         long companyId, java.util.Date displayDate)
212         throws com.liferay.portal.kernel.exception.SystemException;
213 
214     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
215         long companyId, java.util.Date displayDate, int start, int end)
216         throws com.liferay.portal.kernel.exception.SystemException;
217 
218     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
219         long companyId, java.util.Date displayDate, int start, int end,
220         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
221         throws com.liferay.portal.kernel.exception.SystemException;
222 
223     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_First(
224         long companyId, java.util.Date displayDate,
225         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
226         throws com.liferay.portal.kernel.exception.SystemException,
227             com.liferay.portlet.blogs.NoSuchEntryException;
228 
229     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_Last(
230         long companyId, java.util.Date displayDate,
231         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
232         throws com.liferay.portal.kernel.exception.SystemException,
233             com.liferay.portlet.blogs.NoSuchEntryException;
234 
235     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_PrevAndNext(
236         long entryId, long companyId, java.util.Date displayDate,
237         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
238         throws com.liferay.portal.kernel.exception.SystemException,
239             com.liferay.portlet.blogs.NoSuchEntryException;
240 
241     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
242         long companyId, int status)
243         throws com.liferay.portal.kernel.exception.SystemException;
244 
245     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
246         long companyId, int status, int start, int end)
247         throws com.liferay.portal.kernel.exception.SystemException;
248 
249     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
250         long companyId, int status, int start, int end,
251         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
252         throws com.liferay.portal.kernel.exception.SystemException;
253 
254     public com.liferay.portlet.blogs.model.BlogsEntry findByC_S_First(
255         long companyId, int status,
256         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
257         throws com.liferay.portal.kernel.exception.SystemException,
258             com.liferay.portlet.blogs.NoSuchEntryException;
259 
260     public com.liferay.portlet.blogs.model.BlogsEntry findByC_S_Last(
261         long companyId, int status,
262         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
263         throws com.liferay.portal.kernel.exception.SystemException,
264             com.liferay.portlet.blogs.NoSuchEntryException;
265 
266     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_S_PrevAndNext(
267         long entryId, long companyId, int status,
268         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
269         throws com.liferay.portal.kernel.exception.SystemException,
270             com.liferay.portlet.blogs.NoSuchEntryException;
271 
272     public com.liferay.portlet.blogs.model.BlogsEntry findByG_UT(long groupId,
273         java.lang.String urlTitle)
274         throws com.liferay.portal.kernel.exception.SystemException,
275             com.liferay.portlet.blogs.NoSuchEntryException;
276 
277     public com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
278         long groupId, java.lang.String urlTitle)
279         throws com.liferay.portal.kernel.exception.SystemException;
280 
281     public com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
282         long groupId, java.lang.String urlTitle, boolean retrieveFromCache)
283         throws com.liferay.portal.kernel.exception.SystemException;
284 
285     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
286         long groupId, java.util.Date displayDate)
287         throws com.liferay.portal.kernel.exception.SystemException;
288 
289     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
290         long groupId, java.util.Date displayDate, int start, int end)
291         throws com.liferay.portal.kernel.exception.SystemException;
292 
293     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
294         long groupId, java.util.Date displayDate, int start, int end,
295         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
296         throws com.liferay.portal.kernel.exception.SystemException;
297 
298     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_First(
299         long groupId, java.util.Date displayDate,
300         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
301         throws com.liferay.portal.kernel.exception.SystemException,
302             com.liferay.portlet.blogs.NoSuchEntryException;
303 
304     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_Last(
305         long groupId, java.util.Date displayDate,
306         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
307         throws com.liferay.portal.kernel.exception.SystemException,
308             com.liferay.portlet.blogs.NoSuchEntryException;
309 
310     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_PrevAndNext(
311         long entryId, long groupId, java.util.Date displayDate,
312         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
313         throws com.liferay.portal.kernel.exception.SystemException,
314             com.liferay.portlet.blogs.NoSuchEntryException;
315 
316     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D(
317         long groupId, java.util.Date displayDate)
318         throws com.liferay.portal.kernel.exception.SystemException;
319 
320     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D(
321         long groupId, java.util.Date displayDate, int start, int end)
322         throws com.liferay.portal.kernel.exception.SystemException;
323 
324     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D(
325         long groupId, java.util.Date displayDate, int start, int end,
326         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
327         throws com.liferay.portal.kernel.exception.SystemException;
328 
329     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
330         long groupId, int status)
331         throws com.liferay.portal.kernel.exception.SystemException;
332 
333     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
334         long groupId, int status, int start, int end)
335         throws com.liferay.portal.kernel.exception.SystemException;
336 
337     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
338         long groupId, int status, int start, int end,
339         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
340         throws com.liferay.portal.kernel.exception.SystemException;
341 
342     public com.liferay.portlet.blogs.model.BlogsEntry findByG_S_First(
343         long groupId, int status,
344         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
345         throws com.liferay.portal.kernel.exception.SystemException,
346             com.liferay.portlet.blogs.NoSuchEntryException;
347 
348     public com.liferay.portlet.blogs.model.BlogsEntry findByG_S_Last(
349         long groupId, int status,
350         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
351         throws com.liferay.portal.kernel.exception.SystemException,
352             com.liferay.portlet.blogs.NoSuchEntryException;
353 
354     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_S_PrevAndNext(
355         long entryId, long groupId, int status,
356         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
357         throws com.liferay.portal.kernel.exception.SystemException,
358             com.liferay.portlet.blogs.NoSuchEntryException;
359 
360     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_S(
361         long groupId, int status)
362         throws com.liferay.portal.kernel.exception.SystemException;
363 
364     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_S(
365         long groupId, int status, int start, int end)
366         throws com.liferay.portal.kernel.exception.SystemException;
367 
368     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_S(
369         long groupId, int status, int start, int end,
370         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
371         throws com.liferay.portal.kernel.exception.SystemException;
372 
373     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
374         long companyId, long userId, int status)
375         throws com.liferay.portal.kernel.exception.SystemException;
376 
377     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
378         long companyId, long userId, int status, int start, int end)
379         throws com.liferay.portal.kernel.exception.SystemException;
380 
381     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
382         long companyId, long userId, int status, int start, int end,
383         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
384         throws com.liferay.portal.kernel.exception.SystemException;
385 
386     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_First(
387         long companyId, long userId, int status,
388         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
389         throws com.liferay.portal.kernel.exception.SystemException,
390             com.liferay.portlet.blogs.NoSuchEntryException;
391 
392     public com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_Last(
393         long companyId, long userId, int status,
394         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
395         throws com.liferay.portal.kernel.exception.SystemException,
396             com.liferay.portlet.blogs.NoSuchEntryException;
397 
398     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_S_PrevAndNext(
399         long entryId, long companyId, long userId, int status,
400         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
401         throws com.liferay.portal.kernel.exception.SystemException,
402             com.liferay.portlet.blogs.NoSuchEntryException;
403 
404     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
405         long companyId, java.util.Date displayDate, int status)
406         throws com.liferay.portal.kernel.exception.SystemException;
407 
408     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
409         long companyId, java.util.Date displayDate, int status, int start,
410         int end) throws com.liferay.portal.kernel.exception.SystemException;
411 
412     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
413         long companyId, java.util.Date displayDate, int status, int start,
414         int end,
415         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
416         throws com.liferay.portal.kernel.exception.SystemException;
417 
418     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_First(
419         long companyId, java.util.Date displayDate, int status,
420         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
421         throws com.liferay.portal.kernel.exception.SystemException,
422             com.liferay.portlet.blogs.NoSuchEntryException;
423 
424     public com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_Last(
425         long companyId, java.util.Date displayDate, int status,
426         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
427         throws com.liferay.portal.kernel.exception.SystemException,
428             com.liferay.portlet.blogs.NoSuchEntryException;
429 
430     public com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_S_PrevAndNext(
431         long entryId, long companyId, java.util.Date displayDate, int status,
432         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
433         throws com.liferay.portal.kernel.exception.SystemException,
434             com.liferay.portlet.blogs.NoSuchEntryException;
435 
436     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
437         long groupId, long userId, java.util.Date displayDate)
438         throws com.liferay.portal.kernel.exception.SystemException;
439 
440     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
441         long groupId, long userId, java.util.Date displayDate, int start,
442         int end) throws com.liferay.portal.kernel.exception.SystemException;
443 
444     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
445         long groupId, long userId, java.util.Date displayDate, int start,
446         int end,
447         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
448         throws com.liferay.portal.kernel.exception.SystemException;
449 
450     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_First(
451         long groupId, long userId, java.util.Date displayDate,
452         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
453         throws com.liferay.portal.kernel.exception.SystemException,
454             com.liferay.portlet.blogs.NoSuchEntryException;
455 
456     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_Last(
457         long groupId, long userId, java.util.Date displayDate,
458         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
459         throws com.liferay.portal.kernel.exception.SystemException,
460             com.liferay.portlet.blogs.NoSuchEntryException;
461 
462     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_PrevAndNext(
463         long entryId, long groupId, long userId, java.util.Date displayDate,
464         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
465         throws com.liferay.portal.kernel.exception.SystemException,
466             com.liferay.portlet.blogs.NoSuchEntryException;
467 
468     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D(
469         long groupId, long userId, java.util.Date displayDate)
470         throws com.liferay.portal.kernel.exception.SystemException;
471 
472     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D(
473         long groupId, long userId, java.util.Date displayDate, int start,
474         int end) throws com.liferay.portal.kernel.exception.SystemException;
475 
476     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D(
477         long groupId, long userId, java.util.Date displayDate, int start,
478         int end,
479         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
480         throws com.liferay.portal.kernel.exception.SystemException;
481 
482     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
483         long groupId, long userId, int status)
484         throws com.liferay.portal.kernel.exception.SystemException;
485 
486     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
487         long groupId, long userId, int status, int start, int end)
488         throws com.liferay.portal.kernel.exception.SystemException;
489 
490     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
491         long groupId, long userId, int status, int start, int end,
492         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
493         throws com.liferay.portal.kernel.exception.SystemException;
494 
495     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_First(
496         long groupId, long userId, int status,
497         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
498         throws com.liferay.portal.kernel.exception.SystemException,
499             com.liferay.portlet.blogs.NoSuchEntryException;
500 
501     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_Last(
502         long groupId, long userId, int status,
503         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
504         throws com.liferay.portal.kernel.exception.SystemException,
505             com.liferay.portlet.blogs.NoSuchEntryException;
506 
507     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_S_PrevAndNext(
508         long entryId, long groupId, long userId, 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 java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_S(
514         long groupId, long userId, int status)
515         throws com.liferay.portal.kernel.exception.SystemException;
516 
517     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_S(
518         long groupId, long userId, int status, int start, int end)
519         throws com.liferay.portal.kernel.exception.SystemException;
520 
521     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_S(
522         long groupId, long userId, int status, int start, int end,
523         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
524         throws com.liferay.portal.kernel.exception.SystemException;
525 
526     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
527         long groupId, java.util.Date displayDate, int status)
528         throws com.liferay.portal.kernel.exception.SystemException;
529 
530     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
531         long groupId, java.util.Date displayDate, int status, int start, int end)
532         throws com.liferay.portal.kernel.exception.SystemException;
533 
534     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
535         long groupId, java.util.Date displayDate, int status, int start,
536         int end,
537         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
538         throws com.liferay.portal.kernel.exception.SystemException;
539 
540     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_First(
541         long groupId, java.util.Date displayDate, int status,
542         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
543         throws com.liferay.portal.kernel.exception.SystemException,
544             com.liferay.portlet.blogs.NoSuchEntryException;
545 
546     public com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_Last(
547         long groupId, java.util.Date displayDate, int status,
548         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
549         throws com.liferay.portal.kernel.exception.SystemException,
550             com.liferay.portlet.blogs.NoSuchEntryException;
551 
552     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_S_PrevAndNext(
553         long entryId, long groupId, java.util.Date displayDate, int status,
554         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
555         throws com.liferay.portal.kernel.exception.SystemException,
556             com.liferay.portlet.blogs.NoSuchEntryException;
557 
558     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D_S(
559         long groupId, java.util.Date displayDate, int status)
560         throws com.liferay.portal.kernel.exception.SystemException;
561 
562     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D_S(
563         long groupId, java.util.Date displayDate, int status, int start, int end)
564         throws com.liferay.portal.kernel.exception.SystemException;
565 
566     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D_S(
567         long groupId, java.util.Date displayDate, int status, int start,
568         int end,
569         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
570         throws com.liferay.portal.kernel.exception.SystemException;
571 
572     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
573         long groupId, long userId, java.util.Date displayDate, int status)
574         throws com.liferay.portal.kernel.exception.SystemException;
575 
576     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
577         long groupId, long userId, java.util.Date displayDate, int status,
578         int start, int end)
579         throws com.liferay.portal.kernel.exception.SystemException;
580 
581     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
582         long groupId, long userId, java.util.Date displayDate, int status,
583         int start, int end,
584         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
585         throws com.liferay.portal.kernel.exception.SystemException;
586 
587     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_First(
588         long groupId, long userId, java.util.Date displayDate, int status,
589         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
590         throws com.liferay.portal.kernel.exception.SystemException,
591             com.liferay.portlet.blogs.NoSuchEntryException;
592 
593     public com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_Last(
594         long groupId, long userId, java.util.Date displayDate, int status,
595         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
596         throws com.liferay.portal.kernel.exception.SystemException,
597             com.liferay.portlet.blogs.NoSuchEntryException;
598 
599     public com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_S_PrevAndNext(
600         long entryId, long groupId, long userId, java.util.Date displayDate,
601         int status,
602         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
603         throws com.liferay.portal.kernel.exception.SystemException,
604             com.liferay.portlet.blogs.NoSuchEntryException;
605 
606     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D_S(
607         long groupId, long userId, java.util.Date displayDate, int status)
608         throws com.liferay.portal.kernel.exception.SystemException;
609 
610     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D_S(
611         long groupId, long userId, java.util.Date displayDate, int status,
612         int start, int end)
613         throws com.liferay.portal.kernel.exception.SystemException;
614 
615     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D_S(
616         long groupId, long userId, java.util.Date displayDate, int status,
617         int start, int end,
618         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
619         throws com.liferay.portal.kernel.exception.SystemException;
620 
621     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll()
622         throws com.liferay.portal.kernel.exception.SystemException;
623 
624     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
625         int start, int end)
626         throws com.liferay.portal.kernel.exception.SystemException;
627 
628     public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
629         int start, int end,
630         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
631         throws com.liferay.portal.kernel.exception.SystemException;
632 
633     public void removeByUuid(java.lang.String uuid)
634         throws com.liferay.portal.kernel.exception.SystemException;
635 
636     public void removeByUUID_G(java.lang.String uuid, long groupId)
637         throws com.liferay.portal.kernel.exception.SystemException,
638             com.liferay.portlet.blogs.NoSuchEntryException;
639 
640     public void removeByGroupId(long groupId)
641         throws com.liferay.portal.kernel.exception.SystemException;
642 
643     public void removeByCompanyId(long companyId)
644         throws com.liferay.portal.kernel.exception.SystemException;
645 
646     public void removeByC_U(long companyId, long userId)
647         throws com.liferay.portal.kernel.exception.SystemException;
648 
649     public void removeByC_D(long companyId, java.util.Date displayDate)
650         throws com.liferay.portal.kernel.exception.SystemException;
651 
652     public void removeByC_S(long companyId, int status)
653         throws com.liferay.portal.kernel.exception.SystemException;
654 
655     public void removeByG_UT(long groupId, java.lang.String urlTitle)
656         throws com.liferay.portal.kernel.exception.SystemException,
657             com.liferay.portlet.blogs.NoSuchEntryException;
658 
659     public void removeByG_D(long groupId, java.util.Date displayDate)
660         throws com.liferay.portal.kernel.exception.SystemException;
661 
662     public void removeByG_S(long groupId, int status)
663         throws com.liferay.portal.kernel.exception.SystemException;
664 
665     public void removeByC_U_S(long companyId, long userId, int status)
666         throws com.liferay.portal.kernel.exception.SystemException;
667 
668     public void removeByC_D_S(long companyId, java.util.Date displayDate,
669         int status) throws com.liferay.portal.kernel.exception.SystemException;
670 
671     public void removeByG_U_D(long groupId, long userId,
672         java.util.Date displayDate)
673         throws com.liferay.portal.kernel.exception.SystemException;
674 
675     public void removeByG_U_S(long groupId, long userId, int status)
676         throws com.liferay.portal.kernel.exception.SystemException;
677 
678     public void removeByG_D_S(long groupId, java.util.Date displayDate,
679         int status) throws com.liferay.portal.kernel.exception.SystemException;
680 
681     public void removeByG_U_D_S(long groupId, long userId,
682         java.util.Date displayDate, int status)
683         throws com.liferay.portal.kernel.exception.SystemException;
684 
685     public void removeAll()
686         throws com.liferay.portal.kernel.exception.SystemException;
687 
688     public int countByUuid(java.lang.String uuid)
689         throws com.liferay.portal.kernel.exception.SystemException;
690 
691     public int countByUUID_G(java.lang.String uuid, long groupId)
692         throws com.liferay.portal.kernel.exception.SystemException;
693 
694     public int countByGroupId(long groupId)
695         throws com.liferay.portal.kernel.exception.SystemException;
696 
697     public int filterCountByGroupId(long groupId)
698         throws com.liferay.portal.kernel.exception.SystemException;
699 
700     public int countByCompanyId(long companyId)
701         throws com.liferay.portal.kernel.exception.SystemException;
702 
703     public int countByC_U(long companyId, long userId)
704         throws com.liferay.portal.kernel.exception.SystemException;
705 
706     public int countByC_D(long companyId, java.util.Date displayDate)
707         throws com.liferay.portal.kernel.exception.SystemException;
708 
709     public int countByC_S(long companyId, int status)
710         throws com.liferay.portal.kernel.exception.SystemException;
711 
712     public int countByG_UT(long groupId, java.lang.String urlTitle)
713         throws com.liferay.portal.kernel.exception.SystemException;
714 
715     public int filterCountByG_UT(long groupId, java.lang.String urlTitle)
716         throws com.liferay.portal.kernel.exception.SystemException;
717 
718     public int countByG_D(long groupId, java.util.Date displayDate)
719         throws com.liferay.portal.kernel.exception.SystemException;
720 
721     public int filterCountByG_D(long groupId, java.util.Date displayDate)
722         throws com.liferay.portal.kernel.exception.SystemException;
723 
724     public int countByG_S(long groupId, int status)
725         throws com.liferay.portal.kernel.exception.SystemException;
726 
727     public int filterCountByG_S(long groupId, int status)
728         throws com.liferay.portal.kernel.exception.SystemException;
729 
730     public int countByC_U_S(long companyId, long userId, int status)
731         throws com.liferay.portal.kernel.exception.SystemException;
732 
733     public int countByC_D_S(long companyId, java.util.Date displayDate,
734         int status) throws com.liferay.portal.kernel.exception.SystemException;
735 
736     public int countByG_U_D(long groupId, long userId,
737         java.util.Date displayDate)
738         throws com.liferay.portal.kernel.exception.SystemException;
739 
740     public int filterCountByG_U_D(long groupId, long userId,
741         java.util.Date displayDate)
742         throws com.liferay.portal.kernel.exception.SystemException;
743 
744     public int countByG_U_S(long groupId, long userId, int status)
745         throws com.liferay.portal.kernel.exception.SystemException;
746 
747     public int filterCountByG_U_S(long groupId, long userId, int status)
748         throws com.liferay.portal.kernel.exception.SystemException;
749 
750     public int countByG_D_S(long groupId, java.util.Date displayDate, int status)
751         throws com.liferay.portal.kernel.exception.SystemException;
752 
753     public int filterCountByG_D_S(long groupId, java.util.Date displayDate,
754         int status) throws com.liferay.portal.kernel.exception.SystemException;
755 
756     public int countByG_U_D_S(long groupId, long userId,
757         java.util.Date displayDate, int status)
758         throws com.liferay.portal.kernel.exception.SystemException;
759 
760     public int filterCountByG_U_D_S(long groupId, long userId,
761         java.util.Date displayDate, int status)
762         throws com.liferay.portal.kernel.exception.SystemException;
763 
764     public int countAll()
765         throws com.liferay.portal.kernel.exception.SystemException;
766 }