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.kernel.bean.PortalBeanLocatorUtil;
18  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
19  import com.liferay.portal.kernel.exception.SystemException;
20  
21  import com.liferay.portlet.blogs.model.BlogsEntry;
22  
23  import java.util.List;
24  
25  /**
26   * <a href="BlogsEntryUtil.java.html"><b><i>View Source</i></b></a>
27   *
28   * <p>
29   * ServiceBuilder generated this class. Modifications in this class will be
30   * overwritten the next time is generated.
31   * </p>
32   *
33   * @author    Brian Wing Shun Chan
34   * @see       BlogsEntryPersistence
35   * @see       BlogsEntryPersistenceImpl
36   * @generated
37   */
38  public class BlogsEntryUtil {
39      /**
40       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
41       */
42      public static void clearCache() {
43          getPersistence().clearCache();
44      }
45  
46      /**
47       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(BlogsEntry)
48       */
49      public static void clearCache(BlogsEntry blogsEntry) {
50          getPersistence().clearCache(blogsEntry);
51      }
52  
53      /**
54       * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
55       */
56      public long countWithDynamicQuery(DynamicQuery dynamicQuery)
57          throws SystemException {
58          return getPersistence().countWithDynamicQuery(dynamicQuery);
59      }
60  
61      /**
62       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
63       */
64      public static List<BlogsEntry> findWithDynamicQuery(
65          DynamicQuery dynamicQuery) throws SystemException {
66          return getPersistence().findWithDynamicQuery(dynamicQuery);
67      }
68  
69      /**
70       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
71       */
72      public static List<BlogsEntry> findWithDynamicQuery(
73          DynamicQuery dynamicQuery, int start, int end)
74          throws SystemException {
75          return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
76      }
77  
78      /**
79       * @see com.liferay.portal.service.persistence.BasePersistence#remove(com.liferay.portal.model.BaseModel)
80       */
81      public static BlogsEntry remove(BlogsEntry blogsEntry)
82          throws SystemException {
83          return getPersistence().remove(blogsEntry);
84      }
85  
86      /**
87       * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean)
88       */
89      public static BlogsEntry update(BlogsEntry blogsEntry, boolean merge)
90          throws SystemException {
91          return getPersistence().update(blogsEntry, merge);
92      }
93  
94      public static void cacheResult(
95          com.liferay.portlet.blogs.model.BlogsEntry blogsEntry) {
96          getPersistence().cacheResult(blogsEntry);
97      }
98  
99      public static void cacheResult(
100         java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> blogsEntries) {
101         getPersistence().cacheResult(blogsEntries);
102     }
103 
104     public static com.liferay.portlet.blogs.model.BlogsEntry create(
105         long entryId) {
106         return getPersistence().create(entryId);
107     }
108 
109     public static com.liferay.portlet.blogs.model.BlogsEntry remove(
110         long entryId)
111         throws com.liferay.portal.kernel.exception.SystemException,
112             com.liferay.portlet.blogs.NoSuchEntryException {
113         return getPersistence().remove(entryId);
114     }
115 
116     public static com.liferay.portlet.blogs.model.BlogsEntry updateImpl(
117         com.liferay.portlet.blogs.model.BlogsEntry blogsEntry, boolean merge)
118         throws com.liferay.portal.kernel.exception.SystemException {
119         return getPersistence().updateImpl(blogsEntry, merge);
120     }
121 
122     public static com.liferay.portlet.blogs.model.BlogsEntry findByPrimaryKey(
123         long entryId)
124         throws com.liferay.portal.kernel.exception.SystemException,
125             com.liferay.portlet.blogs.NoSuchEntryException {
126         return getPersistence().findByPrimaryKey(entryId);
127     }
128 
129     public static com.liferay.portlet.blogs.model.BlogsEntry fetchByPrimaryKey(
130         long entryId)
131         throws com.liferay.portal.kernel.exception.SystemException {
132         return getPersistence().fetchByPrimaryKey(entryId);
133     }
134 
135     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
136         java.lang.String uuid)
137         throws com.liferay.portal.kernel.exception.SystemException {
138         return getPersistence().findByUuid(uuid);
139     }
140 
141     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
142         java.lang.String uuid, int start, int end)
143         throws com.liferay.portal.kernel.exception.SystemException {
144         return getPersistence().findByUuid(uuid, start, end);
145     }
146 
147     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByUuid(
148         java.lang.String uuid, int start, int end,
149         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150         throws com.liferay.portal.kernel.exception.SystemException {
151         return getPersistence().findByUuid(uuid, start, end, orderByComparator);
152     }
153 
154     public static com.liferay.portlet.blogs.model.BlogsEntry findByUuid_First(
155         java.lang.String uuid,
156         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
157         throws com.liferay.portal.kernel.exception.SystemException,
158             com.liferay.portlet.blogs.NoSuchEntryException {
159         return getPersistence().findByUuid_First(uuid, orderByComparator);
160     }
161 
162     public static com.liferay.portlet.blogs.model.BlogsEntry findByUuid_Last(
163         java.lang.String uuid,
164         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
165         throws com.liferay.portal.kernel.exception.SystemException,
166             com.liferay.portlet.blogs.NoSuchEntryException {
167         return getPersistence().findByUuid_Last(uuid, orderByComparator);
168     }
169 
170     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByUuid_PrevAndNext(
171         long entryId, java.lang.String uuid,
172         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
173         throws com.liferay.portal.kernel.exception.SystemException,
174             com.liferay.portlet.blogs.NoSuchEntryException {
175         return getPersistence()
176                    .findByUuid_PrevAndNext(entryId, uuid, orderByComparator);
177     }
178 
179     public static com.liferay.portlet.blogs.model.BlogsEntry findByUUID_G(
180         java.lang.String uuid, long groupId)
181         throws com.liferay.portal.kernel.exception.SystemException,
182             com.liferay.portlet.blogs.NoSuchEntryException {
183         return getPersistence().findByUUID_G(uuid, groupId);
184     }
185 
186     public static com.liferay.portlet.blogs.model.BlogsEntry fetchByUUID_G(
187         java.lang.String uuid, long groupId)
188         throws com.liferay.portal.kernel.exception.SystemException {
189         return getPersistence().fetchByUUID_G(uuid, groupId);
190     }
191 
192     public static com.liferay.portlet.blogs.model.BlogsEntry fetchByUUID_G(
193         java.lang.String uuid, long groupId, boolean retrieveFromCache)
194         throws com.liferay.portal.kernel.exception.SystemException {
195         return getPersistence().fetchByUUID_G(uuid, groupId, retrieveFromCache);
196     }
197 
198     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
199         long groupId)
200         throws com.liferay.portal.kernel.exception.SystemException {
201         return getPersistence().findByGroupId(groupId);
202     }
203 
204     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
205         long groupId, int start, int end)
206         throws com.liferay.portal.kernel.exception.SystemException {
207         return getPersistence().findByGroupId(groupId, start, end);
208     }
209 
210     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByGroupId(
211         long groupId, int start, int end,
212         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
213         throws com.liferay.portal.kernel.exception.SystemException {
214         return getPersistence()
215                    .findByGroupId(groupId, start, end, orderByComparator);
216     }
217 
218     public static com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_First(
219         long groupId,
220         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
221         throws com.liferay.portal.kernel.exception.SystemException,
222             com.liferay.portlet.blogs.NoSuchEntryException {
223         return getPersistence().findByGroupId_First(groupId, orderByComparator);
224     }
225 
226     public static com.liferay.portlet.blogs.model.BlogsEntry findByGroupId_Last(
227         long groupId,
228         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
229         throws com.liferay.portal.kernel.exception.SystemException,
230             com.liferay.portlet.blogs.NoSuchEntryException {
231         return getPersistence().findByGroupId_Last(groupId, orderByComparator);
232     }
233 
234     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByGroupId_PrevAndNext(
235         long entryId, long groupId,
236         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
237         throws com.liferay.portal.kernel.exception.SystemException,
238             com.liferay.portlet.blogs.NoSuchEntryException {
239         return getPersistence()
240                    .findByGroupId_PrevAndNext(entryId, groupId,
241             orderByComparator);
242     }
243 
244     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByGroupId(
245         long groupId)
246         throws com.liferay.portal.kernel.exception.SystemException {
247         return getPersistence().filterFindByGroupId(groupId);
248     }
249 
250     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByGroupId(
251         long groupId, int start, int end)
252         throws com.liferay.portal.kernel.exception.SystemException {
253         return getPersistence().filterFindByGroupId(groupId, start, end);
254     }
255 
256     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByGroupId(
257         long groupId, int start, int end,
258         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
259         throws com.liferay.portal.kernel.exception.SystemException {
260         return getPersistence()
261                    .filterFindByGroupId(groupId, start, end, orderByComparator);
262     }
263 
264     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
265         long companyId)
266         throws com.liferay.portal.kernel.exception.SystemException {
267         return getPersistence().findByCompanyId(companyId);
268     }
269 
270     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
271         long companyId, int start, int end)
272         throws com.liferay.portal.kernel.exception.SystemException {
273         return getPersistence().findByCompanyId(companyId, start, end);
274     }
275 
276     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByCompanyId(
277         long companyId, int start, int end,
278         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
279         throws com.liferay.portal.kernel.exception.SystemException {
280         return getPersistence()
281                    .findByCompanyId(companyId, start, end, orderByComparator);
282     }
283 
284     public static com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_First(
285         long companyId,
286         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
287         throws com.liferay.portal.kernel.exception.SystemException,
288             com.liferay.portlet.blogs.NoSuchEntryException {
289         return getPersistence()
290                    .findByCompanyId_First(companyId, orderByComparator);
291     }
292 
293     public static com.liferay.portlet.blogs.model.BlogsEntry findByCompanyId_Last(
294         long companyId,
295         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
296         throws com.liferay.portal.kernel.exception.SystemException,
297             com.liferay.portlet.blogs.NoSuchEntryException {
298         return getPersistence()
299                    .findByCompanyId_Last(companyId, orderByComparator);
300     }
301 
302     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByCompanyId_PrevAndNext(
303         long entryId, long companyId,
304         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
305         throws com.liferay.portal.kernel.exception.SystemException,
306             com.liferay.portlet.blogs.NoSuchEntryException {
307         return getPersistence()
308                    .findByCompanyId_PrevAndNext(entryId, companyId,
309             orderByComparator);
310     }
311 
312     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
313         long companyId, long userId)
314         throws com.liferay.portal.kernel.exception.SystemException {
315         return getPersistence().findByC_U(companyId, userId);
316     }
317 
318     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
319         long companyId, long userId, int start, int end)
320         throws com.liferay.portal.kernel.exception.SystemException {
321         return getPersistence().findByC_U(companyId, userId, start, end);
322     }
323 
324     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U(
325         long companyId, long userId, int start, int end,
326         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
327         throws com.liferay.portal.kernel.exception.SystemException {
328         return getPersistence()
329                    .findByC_U(companyId, userId, start, end, orderByComparator);
330     }
331 
332     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_U_First(
333         long companyId, long userId,
334         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
335         throws com.liferay.portal.kernel.exception.SystemException,
336             com.liferay.portlet.blogs.NoSuchEntryException {
337         return getPersistence()
338                    .findByC_U_First(companyId, userId, orderByComparator);
339     }
340 
341     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_U_Last(
342         long companyId, long userId,
343         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
344         throws com.liferay.portal.kernel.exception.SystemException,
345             com.liferay.portlet.blogs.NoSuchEntryException {
346         return getPersistence()
347                    .findByC_U_Last(companyId, userId, orderByComparator);
348     }
349 
350     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_PrevAndNext(
351         long entryId, long companyId, long userId,
352         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
353         throws com.liferay.portal.kernel.exception.SystemException,
354             com.liferay.portlet.blogs.NoSuchEntryException {
355         return getPersistence()
356                    .findByC_U_PrevAndNext(entryId, companyId, userId,
357             orderByComparator);
358     }
359 
360     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
361         long companyId, java.util.Date displayDate)
362         throws com.liferay.portal.kernel.exception.SystemException {
363         return getPersistence().findByC_D(companyId, displayDate);
364     }
365 
366     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
367         long companyId, java.util.Date displayDate, int start, int end)
368         throws com.liferay.portal.kernel.exception.SystemException {
369         return getPersistence().findByC_D(companyId, displayDate, start, end);
370     }
371 
372     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D(
373         long companyId, java.util.Date displayDate, int start, int end,
374         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
375         throws com.liferay.portal.kernel.exception.SystemException {
376         return getPersistence()
377                    .findByC_D(companyId, displayDate, start, end,
378             orderByComparator);
379     }
380 
381     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_D_First(
382         long companyId, java.util.Date displayDate,
383         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
384         throws com.liferay.portal.kernel.exception.SystemException,
385             com.liferay.portlet.blogs.NoSuchEntryException {
386         return getPersistence()
387                    .findByC_D_First(companyId, displayDate, orderByComparator);
388     }
389 
390     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_D_Last(
391         long companyId, java.util.Date displayDate,
392         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
393         throws com.liferay.portal.kernel.exception.SystemException,
394             com.liferay.portlet.blogs.NoSuchEntryException {
395         return getPersistence()
396                    .findByC_D_Last(companyId, displayDate, orderByComparator);
397     }
398 
399     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_PrevAndNext(
400         long entryId, long companyId, java.util.Date displayDate,
401         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
402         throws com.liferay.portal.kernel.exception.SystemException,
403             com.liferay.portlet.blogs.NoSuchEntryException {
404         return getPersistence()
405                    .findByC_D_PrevAndNext(entryId, companyId, displayDate,
406             orderByComparator);
407     }
408 
409     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
410         long companyId, int status)
411         throws com.liferay.portal.kernel.exception.SystemException {
412         return getPersistence().findByC_S(companyId, status);
413     }
414 
415     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
416         long companyId, int status, int start, int end)
417         throws com.liferay.portal.kernel.exception.SystemException {
418         return getPersistence().findByC_S(companyId, status, start, end);
419     }
420 
421     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_S(
422         long companyId, int status, int start, int end,
423         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
424         throws com.liferay.portal.kernel.exception.SystemException {
425         return getPersistence()
426                    .findByC_S(companyId, status, start, end, orderByComparator);
427     }
428 
429     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_S_First(
430         long companyId, int status,
431         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
432         throws com.liferay.portal.kernel.exception.SystemException,
433             com.liferay.portlet.blogs.NoSuchEntryException {
434         return getPersistence()
435                    .findByC_S_First(companyId, status, orderByComparator);
436     }
437 
438     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_S_Last(
439         long companyId, int status,
440         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
441         throws com.liferay.portal.kernel.exception.SystemException,
442             com.liferay.portlet.blogs.NoSuchEntryException {
443         return getPersistence()
444                    .findByC_S_Last(companyId, status, orderByComparator);
445     }
446 
447     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByC_S_PrevAndNext(
448         long entryId, long companyId, int status,
449         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
450         throws com.liferay.portal.kernel.exception.SystemException,
451             com.liferay.portlet.blogs.NoSuchEntryException {
452         return getPersistence()
453                    .findByC_S_PrevAndNext(entryId, companyId, status,
454             orderByComparator);
455     }
456 
457     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_UT(
458         long groupId, java.lang.String urlTitle)
459         throws com.liferay.portal.kernel.exception.SystemException,
460             com.liferay.portlet.blogs.NoSuchEntryException {
461         return getPersistence().findByG_UT(groupId, urlTitle);
462     }
463 
464     public static com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
465         long groupId, java.lang.String urlTitle)
466         throws com.liferay.portal.kernel.exception.SystemException {
467         return getPersistence().fetchByG_UT(groupId, urlTitle);
468     }
469 
470     public static com.liferay.portlet.blogs.model.BlogsEntry fetchByG_UT(
471         long groupId, java.lang.String urlTitle, boolean retrieveFromCache)
472         throws com.liferay.portal.kernel.exception.SystemException {
473         return getPersistence().fetchByG_UT(groupId, urlTitle, retrieveFromCache);
474     }
475 
476     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
477         long groupId, java.util.Date displayDate)
478         throws com.liferay.portal.kernel.exception.SystemException {
479         return getPersistence().findByG_D(groupId, displayDate);
480     }
481 
482     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
483         long groupId, java.util.Date displayDate, int start, int end)
484         throws com.liferay.portal.kernel.exception.SystemException {
485         return getPersistence().findByG_D(groupId, displayDate, start, end);
486     }
487 
488     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D(
489         long groupId, java.util.Date displayDate, int start, int end,
490         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
491         throws com.liferay.portal.kernel.exception.SystemException {
492         return getPersistence()
493                    .findByG_D(groupId, displayDate, start, end,
494             orderByComparator);
495     }
496 
497     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_D_First(
498         long groupId, java.util.Date displayDate,
499         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
500         throws com.liferay.portal.kernel.exception.SystemException,
501             com.liferay.portlet.blogs.NoSuchEntryException {
502         return getPersistence()
503                    .findByG_D_First(groupId, displayDate, orderByComparator);
504     }
505 
506     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_D_Last(
507         long groupId, java.util.Date displayDate,
508         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
509         throws com.liferay.portal.kernel.exception.SystemException,
510             com.liferay.portlet.blogs.NoSuchEntryException {
511         return getPersistence()
512                    .findByG_D_Last(groupId, displayDate, orderByComparator);
513     }
514 
515     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_PrevAndNext(
516         long entryId, long groupId, java.util.Date displayDate,
517         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
518         throws com.liferay.portal.kernel.exception.SystemException,
519             com.liferay.portlet.blogs.NoSuchEntryException {
520         return getPersistence()
521                    .findByG_D_PrevAndNext(entryId, groupId, displayDate,
522             orderByComparator);
523     }
524 
525     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D(
526         long groupId, java.util.Date displayDate)
527         throws com.liferay.portal.kernel.exception.SystemException {
528         return getPersistence().filterFindByG_D(groupId, displayDate);
529     }
530 
531     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D(
532         long groupId, java.util.Date displayDate, int start, int end)
533         throws com.liferay.portal.kernel.exception.SystemException {
534         return getPersistence().filterFindByG_D(groupId, displayDate, start, end);
535     }
536 
537     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D(
538         long groupId, java.util.Date displayDate, int start, int end,
539         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
540         throws com.liferay.portal.kernel.exception.SystemException {
541         return getPersistence()
542                    .filterFindByG_D(groupId, displayDate, start, end,
543             orderByComparator);
544     }
545 
546     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
547         long groupId, int status)
548         throws com.liferay.portal.kernel.exception.SystemException {
549         return getPersistence().findByG_S(groupId, status);
550     }
551 
552     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
553         long groupId, int status, int start, int end)
554         throws com.liferay.portal.kernel.exception.SystemException {
555         return getPersistence().findByG_S(groupId, status, start, end);
556     }
557 
558     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_S(
559         long groupId, int status, int start, int end,
560         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
561         throws com.liferay.portal.kernel.exception.SystemException {
562         return getPersistence()
563                    .findByG_S(groupId, status, start, end, orderByComparator);
564     }
565 
566     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_S_First(
567         long groupId, int status,
568         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
569         throws com.liferay.portal.kernel.exception.SystemException,
570             com.liferay.portlet.blogs.NoSuchEntryException {
571         return getPersistence()
572                    .findByG_S_First(groupId, status, orderByComparator);
573     }
574 
575     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_S_Last(
576         long groupId, int status,
577         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
578         throws com.liferay.portal.kernel.exception.SystemException,
579             com.liferay.portlet.blogs.NoSuchEntryException {
580         return getPersistence()
581                    .findByG_S_Last(groupId, status, orderByComparator);
582     }
583 
584     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByG_S_PrevAndNext(
585         long entryId, long groupId, int status,
586         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
587         throws com.liferay.portal.kernel.exception.SystemException,
588             com.liferay.portlet.blogs.NoSuchEntryException {
589         return getPersistence()
590                    .findByG_S_PrevAndNext(entryId, groupId, status,
591             orderByComparator);
592     }
593 
594     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_S(
595         long groupId, int status)
596         throws com.liferay.portal.kernel.exception.SystemException {
597         return getPersistence().filterFindByG_S(groupId, status);
598     }
599 
600     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_S(
601         long groupId, int status, int start, int end)
602         throws com.liferay.portal.kernel.exception.SystemException {
603         return getPersistence().filterFindByG_S(groupId, status, start, end);
604     }
605 
606     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_S(
607         long groupId, int status, int start, int end,
608         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
609         throws com.liferay.portal.kernel.exception.SystemException {
610         return getPersistence()
611                    .filterFindByG_S(groupId, status, start, end,
612             orderByComparator);
613     }
614 
615     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
616         long companyId, long userId, int status)
617         throws com.liferay.portal.kernel.exception.SystemException {
618         return getPersistence().findByC_U_S(companyId, userId, status);
619     }
620 
621     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
622         long companyId, long userId, int status, int start, int end)
623         throws com.liferay.portal.kernel.exception.SystemException {
624         return getPersistence()
625                    .findByC_U_S(companyId, userId, status, start, end);
626     }
627 
628     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_U_S(
629         long companyId, long userId, int status, int start, int end,
630         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
631         throws com.liferay.portal.kernel.exception.SystemException {
632         return getPersistence()
633                    .findByC_U_S(companyId, userId, status, start, end,
634             orderByComparator);
635     }
636 
637     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_First(
638         long companyId, long userId, int status,
639         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
640         throws com.liferay.portal.kernel.exception.SystemException,
641             com.liferay.portlet.blogs.NoSuchEntryException {
642         return getPersistence()
643                    .findByC_U_S_First(companyId, userId, status,
644             orderByComparator);
645     }
646 
647     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_U_S_Last(
648         long companyId, long userId, int status,
649         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
650         throws com.liferay.portal.kernel.exception.SystemException,
651             com.liferay.portlet.blogs.NoSuchEntryException {
652         return getPersistence()
653                    .findByC_U_S_Last(companyId, userId, status,
654             orderByComparator);
655     }
656 
657     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByC_U_S_PrevAndNext(
658         long entryId, long companyId, long userId, int status,
659         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
660         throws com.liferay.portal.kernel.exception.SystemException,
661             com.liferay.portlet.blogs.NoSuchEntryException {
662         return getPersistence()
663                    .findByC_U_S_PrevAndNext(entryId, companyId, userId, status,
664             orderByComparator);
665     }
666 
667     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
668         long companyId, java.util.Date displayDate, int status)
669         throws com.liferay.portal.kernel.exception.SystemException {
670         return getPersistence().findByC_D_S(companyId, displayDate, status);
671     }
672 
673     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
674         long companyId, java.util.Date displayDate, int status, int start,
675         int end) throws com.liferay.portal.kernel.exception.SystemException {
676         return getPersistence()
677                    .findByC_D_S(companyId, displayDate, status, start, end);
678     }
679 
680     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByC_D_S(
681         long companyId, java.util.Date displayDate, int status, int start,
682         int end,
683         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
684         throws com.liferay.portal.kernel.exception.SystemException {
685         return getPersistence()
686                    .findByC_D_S(companyId, displayDate, status, start, end,
687             orderByComparator);
688     }
689 
690     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_First(
691         long companyId, java.util.Date displayDate, int status,
692         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
693         throws com.liferay.portal.kernel.exception.SystemException,
694             com.liferay.portlet.blogs.NoSuchEntryException {
695         return getPersistence()
696                    .findByC_D_S_First(companyId, displayDate, status,
697             orderByComparator);
698     }
699 
700     public static com.liferay.portlet.blogs.model.BlogsEntry findByC_D_S_Last(
701         long companyId, java.util.Date displayDate, int status,
702         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
703         throws com.liferay.portal.kernel.exception.SystemException,
704             com.liferay.portlet.blogs.NoSuchEntryException {
705         return getPersistence()
706                    .findByC_D_S_Last(companyId, displayDate, status,
707             orderByComparator);
708     }
709 
710     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByC_D_S_PrevAndNext(
711         long entryId, long companyId, java.util.Date displayDate, int status,
712         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
713         throws com.liferay.portal.kernel.exception.SystemException,
714             com.liferay.portlet.blogs.NoSuchEntryException {
715         return getPersistence()
716                    .findByC_D_S_PrevAndNext(entryId, companyId, displayDate,
717             status, orderByComparator);
718     }
719 
720     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
721         long groupId, long userId, java.util.Date displayDate)
722         throws com.liferay.portal.kernel.exception.SystemException {
723         return getPersistence().findByG_U_D(groupId, userId, displayDate);
724     }
725 
726     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
727         long groupId, long userId, java.util.Date displayDate, int start,
728         int end) throws com.liferay.portal.kernel.exception.SystemException {
729         return getPersistence()
730                    .findByG_U_D(groupId, userId, displayDate, start, end);
731     }
732 
733     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D(
734         long groupId, long userId, java.util.Date displayDate, int start,
735         int end,
736         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
737         throws com.liferay.portal.kernel.exception.SystemException {
738         return getPersistence()
739                    .findByG_U_D(groupId, userId, displayDate, start, end,
740             orderByComparator);
741     }
742 
743     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_First(
744         long groupId, long userId, java.util.Date displayDate,
745         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
746         throws com.liferay.portal.kernel.exception.SystemException,
747             com.liferay.portlet.blogs.NoSuchEntryException {
748         return getPersistence()
749                    .findByG_U_D_First(groupId, userId, displayDate,
750             orderByComparator);
751     }
752 
753     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_Last(
754         long groupId, long userId, java.util.Date displayDate,
755         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
756         throws com.liferay.portal.kernel.exception.SystemException,
757             com.liferay.portlet.blogs.NoSuchEntryException {
758         return getPersistence()
759                    .findByG_U_D_Last(groupId, userId, displayDate,
760             orderByComparator);
761     }
762 
763     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_PrevAndNext(
764         long entryId, long groupId, long userId, java.util.Date displayDate,
765         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
766         throws com.liferay.portal.kernel.exception.SystemException,
767             com.liferay.portlet.blogs.NoSuchEntryException {
768         return getPersistence()
769                    .findByG_U_D_PrevAndNext(entryId, groupId, userId,
770             displayDate, orderByComparator);
771     }
772 
773     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D(
774         long groupId, long userId, java.util.Date displayDate)
775         throws com.liferay.portal.kernel.exception.SystemException {
776         return getPersistence().filterFindByG_U_D(groupId, userId, displayDate);
777     }
778 
779     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D(
780         long groupId, long userId, java.util.Date displayDate, int start,
781         int end) throws com.liferay.portal.kernel.exception.SystemException {
782         return getPersistence()
783                    .filterFindByG_U_D(groupId, userId, displayDate, start, end);
784     }
785 
786     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D(
787         long groupId, long userId, java.util.Date displayDate, int start,
788         int end,
789         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
790         throws com.liferay.portal.kernel.exception.SystemException {
791         return getPersistence()
792                    .filterFindByG_U_D(groupId, userId, displayDate, start, end,
793             orderByComparator);
794     }
795 
796     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
797         long groupId, long userId, int status)
798         throws com.liferay.portal.kernel.exception.SystemException {
799         return getPersistence().findByG_U_S(groupId, userId, status);
800     }
801 
802     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
803         long groupId, long userId, int status, int start, int end)
804         throws com.liferay.portal.kernel.exception.SystemException {
805         return getPersistence().findByG_U_S(groupId, userId, status, start, end);
806     }
807 
808     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_S(
809         long groupId, long userId, int status, int start, int end,
810         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
811         throws com.liferay.portal.kernel.exception.SystemException {
812         return getPersistence()
813                    .findByG_U_S(groupId, userId, status, start, end,
814             orderByComparator);
815     }
816 
817     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_First(
818         long groupId, long userId, int status,
819         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
820         throws com.liferay.portal.kernel.exception.SystemException,
821             com.liferay.portlet.blogs.NoSuchEntryException {
822         return getPersistence()
823                    .findByG_U_S_First(groupId, userId, status, orderByComparator);
824     }
825 
826     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_U_S_Last(
827         long groupId, long userId, int status,
828         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
829         throws com.liferay.portal.kernel.exception.SystemException,
830             com.liferay.portlet.blogs.NoSuchEntryException {
831         return getPersistence()
832                    .findByG_U_S_Last(groupId, userId, status, orderByComparator);
833     }
834 
835     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_S_PrevAndNext(
836         long entryId, long groupId, long userId, int status,
837         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
838         throws com.liferay.portal.kernel.exception.SystemException,
839             com.liferay.portlet.blogs.NoSuchEntryException {
840         return getPersistence()
841                    .findByG_U_S_PrevAndNext(entryId, groupId, userId, status,
842             orderByComparator);
843     }
844 
845     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_S(
846         long groupId, long userId, int status)
847         throws com.liferay.portal.kernel.exception.SystemException {
848         return getPersistence().filterFindByG_U_S(groupId, userId, status);
849     }
850 
851     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_S(
852         long groupId, long userId, int status, int start, int end)
853         throws com.liferay.portal.kernel.exception.SystemException {
854         return getPersistence()
855                    .filterFindByG_U_S(groupId, userId, status, start, end);
856     }
857 
858     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_S(
859         long groupId, long userId, int status, int start, int end,
860         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
861         throws com.liferay.portal.kernel.exception.SystemException {
862         return getPersistence()
863                    .filterFindByG_U_S(groupId, userId, status, start, end,
864             orderByComparator);
865     }
866 
867     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
868         long groupId, java.util.Date displayDate, int status)
869         throws com.liferay.portal.kernel.exception.SystemException {
870         return getPersistence().findByG_D_S(groupId, displayDate, status);
871     }
872 
873     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
874         long groupId, java.util.Date displayDate, int status, int start, int end)
875         throws com.liferay.portal.kernel.exception.SystemException {
876         return getPersistence()
877                    .findByG_D_S(groupId, displayDate, status, start, end);
878     }
879 
880     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_D_S(
881         long groupId, java.util.Date displayDate, int status, int start,
882         int end,
883         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
884         throws com.liferay.portal.kernel.exception.SystemException {
885         return getPersistence()
886                    .findByG_D_S(groupId, displayDate, status, start, end,
887             orderByComparator);
888     }
889 
890     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_First(
891         long groupId, java.util.Date displayDate, int status,
892         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
893         throws com.liferay.portal.kernel.exception.SystemException,
894             com.liferay.portlet.blogs.NoSuchEntryException {
895         return getPersistence()
896                    .findByG_D_S_First(groupId, displayDate, status,
897             orderByComparator);
898     }
899 
900     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_D_S_Last(
901         long groupId, java.util.Date displayDate, int status,
902         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
903         throws com.liferay.portal.kernel.exception.SystemException,
904             com.liferay.portlet.blogs.NoSuchEntryException {
905         return getPersistence()
906                    .findByG_D_S_Last(groupId, displayDate, status,
907             orderByComparator);
908     }
909 
910     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByG_D_S_PrevAndNext(
911         long entryId, long groupId, java.util.Date displayDate, int status,
912         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
913         throws com.liferay.portal.kernel.exception.SystemException,
914             com.liferay.portlet.blogs.NoSuchEntryException {
915         return getPersistence()
916                    .findByG_D_S_PrevAndNext(entryId, groupId, displayDate,
917             status, orderByComparator);
918     }
919 
920     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D_S(
921         long groupId, java.util.Date displayDate, int status)
922         throws com.liferay.portal.kernel.exception.SystemException {
923         return getPersistence().filterFindByG_D_S(groupId, displayDate, status);
924     }
925 
926     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D_S(
927         long groupId, java.util.Date displayDate, int status, int start, int end)
928         throws com.liferay.portal.kernel.exception.SystemException {
929         return getPersistence()
930                    .filterFindByG_D_S(groupId, displayDate, status, start, end);
931     }
932 
933     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_D_S(
934         long groupId, java.util.Date displayDate, int status, int start,
935         int end,
936         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
937         throws com.liferay.portal.kernel.exception.SystemException {
938         return getPersistence()
939                    .filterFindByG_D_S(groupId, displayDate, status, start, end,
940             orderByComparator);
941     }
942 
943     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
944         long groupId, long userId, java.util.Date displayDate, int status)
945         throws com.liferay.portal.kernel.exception.SystemException {
946         return getPersistence()
947                    .findByG_U_D_S(groupId, userId, displayDate, status);
948     }
949 
950     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
951         long groupId, long userId, java.util.Date displayDate, int status,
952         int start, int end)
953         throws com.liferay.portal.kernel.exception.SystemException {
954         return getPersistence()
955                    .findByG_U_D_S(groupId, userId, displayDate, status, start,
956             end);
957     }
958 
959     public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findByG_U_D_S(
960         long groupId, long userId, java.util.Date displayDate, int status,
961         int start, int end,
962         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
963         throws com.liferay.portal.kernel.exception.SystemException {
964         return getPersistence()
965                    .findByG_U_D_S(groupId, userId, displayDate, status, start,
966             end, orderByComparator);
967     }
968 
969     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_First(
970         long groupId, long userId, java.util.Date displayDate, int status,
971         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
972         throws com.liferay.portal.kernel.exception.SystemException,
973             com.liferay.portlet.blogs.NoSuchEntryException {
974         return getPersistence()
975                    .findByG_U_D_S_First(groupId, userId, displayDate, status,
976             orderByComparator);
977     }
978 
979     public static com.liferay.portlet.blogs.model.BlogsEntry findByG_U_D_S_Last(
980         long groupId, long userId, java.util.Date displayDate, int status,
981         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
982         throws com.liferay.portal.kernel.exception.SystemException,
983             com.liferay.portlet.blogs.NoSuchEntryException {
984         return getPersistence()
985                    .findByG_U_D_S_Last(groupId, userId, displayDate, status,
986             orderByComparator);
987     }
988 
989     public static com.liferay.portlet.blogs.model.BlogsEntry[] findByG_U_D_S_PrevAndNext(
990         long entryId, long groupId, long userId, java.util.Date displayDate,
991         int status,
992         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
993         throws com.liferay.portal.kernel.exception.SystemException,
994             com.liferay.portlet.blogs.NoSuchEntryException {
995         return getPersistence()
996                    .findByG_U_D_S_PrevAndNext(entryId, groupId, userId,
997             displayDate, status, orderByComparator);
998     }
999 
1000    public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D_S(
1001        long groupId, long userId, java.util.Date displayDate, int status)
1002        throws com.liferay.portal.kernel.exception.SystemException {
1003        return getPersistence()
1004                   .filterFindByG_U_D_S(groupId, userId, displayDate, status);
1005    }
1006
1007    public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D_S(
1008        long groupId, long userId, java.util.Date displayDate, int status,
1009        int start, int end)
1010        throws com.liferay.portal.kernel.exception.SystemException {
1011        return getPersistence()
1012                   .filterFindByG_U_D_S(groupId, userId, displayDate, status,
1013            start, end);
1014    }
1015
1016    public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> filterFindByG_U_D_S(
1017        long groupId, long userId, java.util.Date displayDate, int status,
1018        int start, int end,
1019        com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
1020        throws com.liferay.portal.kernel.exception.SystemException {
1021        return getPersistence()
1022                   .filterFindByG_U_D_S(groupId, userId, displayDate, status,
1023            start, end, orderByComparator);
1024    }
1025
1026    public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll()
1027        throws com.liferay.portal.kernel.exception.SystemException {
1028        return getPersistence().findAll();
1029    }
1030
1031    public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
1032        int start, int end)
1033        throws com.liferay.portal.kernel.exception.SystemException {
1034        return getPersistence().findAll(start, end);
1035    }
1036
1037    public static java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> findAll(
1038        int start, int end,
1039        com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
1040        throws com.liferay.portal.kernel.exception.SystemException {
1041        return getPersistence().findAll(start, end, orderByComparator);
1042    }
1043
1044    public static void removeByUuid(java.lang.String uuid)
1045        throws com.liferay.portal.kernel.exception.SystemException {
1046        getPersistence().removeByUuid(uuid);
1047    }
1048
1049    public static void removeByUUID_G(java.lang.String uuid, long groupId)
1050        throws com.liferay.portal.kernel.exception.SystemException,
1051            com.liferay.portlet.blogs.NoSuchEntryException {
1052        getPersistence().removeByUUID_G(uuid, groupId);
1053    }
1054
1055    public static void removeByGroupId(long groupId)
1056        throws com.liferay.portal.kernel.exception.SystemException {
1057        getPersistence().removeByGroupId(groupId);
1058    }
1059
1060    public static void removeByCompanyId(long companyId)
1061        throws com.liferay.portal.kernel.exception.SystemException {
1062        getPersistence().removeByCompanyId(companyId);
1063    }
1064
1065    public static void removeByC_U(long companyId, long userId)
1066        throws com.liferay.portal.kernel.exception.SystemException {
1067        getPersistence().removeByC_U(companyId, userId);
1068    }
1069
1070    public static void removeByC_D(long companyId, java.util.Date displayDate)
1071        throws com.liferay.portal.kernel.exception.SystemException {
1072        getPersistence().removeByC_D(companyId, displayDate);
1073    }
1074
1075    public static void removeByC_S(long companyId, int status)
1076        throws com.liferay.portal.kernel.exception.SystemException {
1077        getPersistence().removeByC_S(companyId, status);
1078    }
1079
1080    public static void removeByG_UT(long groupId, java.lang.String urlTitle)
1081        throws com.liferay.portal.kernel.exception.SystemException,
1082            com.liferay.portlet.blogs.NoSuchEntryException {
1083        getPersistence().removeByG_UT(groupId, urlTitle);
1084    }
1085
1086    public static void removeByG_D(long groupId, java.util.Date displayDate)
1087        throws com.liferay.portal.kernel.exception.SystemException {
1088        getPersistence().removeByG_D(groupId, displayDate);
1089    }
1090
1091    public static void removeByG_S(long groupId, int status)
1092        throws com.liferay.portal.kernel.exception.SystemException {
1093        getPersistence().removeByG_S(groupId, status);
1094    }
1095
1096    public static void removeByC_U_S(long companyId, long userId, int status)
1097        throws com.liferay.portal.kernel.exception.SystemException {
1098        getPersistence().removeByC_U_S(companyId, userId, status);
1099    }
1100
1101    public static void removeByC_D_S(long companyId,
1102        java.util.Date displayDate, int status)
1103        throws com.liferay.portal.kernel.exception.SystemException {
1104        getPersistence().removeByC_D_S(companyId, displayDate, status);
1105    }
1106
1107    public static void removeByG_U_D(long groupId, long userId,
1108        java.util.Date displayDate)
1109        throws com.liferay.portal.kernel.exception.SystemException {
1110        getPersistence().removeByG_U_D(groupId, userId, displayDate);
1111    }
1112
1113    public static void removeByG_U_S(long groupId, long userId, int status)
1114        throws com.liferay.portal.kernel.exception.SystemException {
1115        getPersistence().removeByG_U_S(groupId, userId, status);
1116    }
1117
1118    public static void removeByG_D_S(long groupId, java.util.Date displayDate,
1119        int status) throws com.liferay.portal.kernel.exception.SystemException {
1120        getPersistence().removeByG_D_S(groupId, displayDate, status);
1121    }
1122
1123    public static void removeByG_U_D_S(long groupId, long userId,
1124        java.util.Date displayDate, int status)
1125        throws com.liferay.portal.kernel.exception.SystemException {
1126        getPersistence().removeByG_U_D_S(groupId, userId, displayDate, status);
1127    }
1128
1129    public static void removeAll()
1130        throws com.liferay.portal.kernel.exception.SystemException {
1131        getPersistence().removeAll();
1132    }
1133
1134    public static int countByUuid(java.lang.String uuid)
1135        throws com.liferay.portal.kernel.exception.SystemException {
1136        return getPersistence().countByUuid(uuid);
1137    }
1138
1139    public static int countByUUID_G(java.lang.String uuid, long groupId)
1140        throws com.liferay.portal.kernel.exception.SystemException {
1141        return getPersistence().countByUUID_G(uuid, groupId);
1142    }
1143
1144    public static int countByGroupId(long groupId)
1145        throws com.liferay.portal.kernel.exception.SystemException {
1146        return getPersistence().countByGroupId(groupId);
1147    }
1148
1149    public static int filterCountByGroupId(long groupId)
1150        throws com.liferay.portal.kernel.exception.SystemException {
1151        return getPersistence().filterCountByGroupId(groupId);
1152    }
1153
1154    public static int countByCompanyId(long companyId)
1155        throws com.liferay.portal.kernel.exception.SystemException {
1156        return getPersistence().countByCompanyId(companyId);
1157    }
1158
1159    public static int countByC_U(long companyId, long userId)
1160        throws com.liferay.portal.kernel.exception.SystemException {
1161        return getPersistence().countByC_U(companyId, userId);
1162    }
1163
1164    public static int countByC_D(long companyId, java.util.Date displayDate)
1165        throws com.liferay.portal.kernel.exception.SystemException {
1166        return getPersistence().countByC_D(companyId, displayDate);
1167    }
1168
1169    public static int countByC_S(long companyId, int status)
1170        throws com.liferay.portal.kernel.exception.SystemException {
1171        return getPersistence().countByC_S(companyId, status);
1172    }
1173
1174    public static int countByG_UT(long groupId, java.lang.String urlTitle)
1175        throws com.liferay.portal.kernel.exception.SystemException {
1176        return getPersistence().countByG_UT(groupId, urlTitle);
1177    }
1178
1179    public static int filterCountByG_UT(long groupId, java.lang.String urlTitle)
1180        throws com.liferay.portal.kernel.exception.SystemException {
1181        return getPersistence().filterCountByG_UT(groupId, urlTitle);
1182    }
1183
1184    public static int countByG_D(long groupId, java.util.Date displayDate)
1185        throws com.liferay.portal.kernel.exception.SystemException {
1186        return getPersistence().countByG_D(groupId, displayDate);
1187    }
1188
1189    public static int filterCountByG_D(long groupId, java.util.Date displayDate)
1190        throws com.liferay.portal.kernel.exception.SystemException {
1191        return getPersistence().filterCountByG_D(groupId, displayDate);
1192    }
1193
1194    public static int countByG_S(long groupId, int status)
1195        throws com.liferay.portal.kernel.exception.SystemException {
1196        return getPersistence().countByG_S(groupId, status);
1197    }
1198
1199    public static int filterCountByG_S(long groupId, int status)
1200        throws com.liferay.portal.kernel.exception.SystemException {
1201        return getPersistence().filterCountByG_S(groupId, status);
1202    }
1203
1204    public static int countByC_U_S(long companyId, long userId, int status)
1205        throws com.liferay.portal.kernel.exception.SystemException {
1206        return getPersistence().countByC_U_S(companyId, userId, status);
1207    }
1208
1209    public static int countByC_D_S(long companyId, java.util.Date displayDate,
1210        int status) throws com.liferay.portal.kernel.exception.SystemException {
1211        return getPersistence().countByC_D_S(companyId, displayDate, status);
1212    }
1213
1214    public static int countByG_U_D(long groupId, long userId,
1215        java.util.Date displayDate)
1216        throws com.liferay.portal.kernel.exception.SystemException {
1217        return getPersistence().countByG_U_D(groupId, userId, displayDate);
1218    }
1219
1220    public static int filterCountByG_U_D(long groupId, long userId,
1221        java.util.Date displayDate)
1222        throws com.liferay.portal.kernel.exception.SystemException {
1223        return getPersistence().filterCountByG_U_D(groupId, userId, displayDate);
1224    }
1225
1226    public static int countByG_U_S(long groupId, long userId, int status)
1227        throws com.liferay.portal.kernel.exception.SystemException {
1228        return getPersistence().countByG_U_S(groupId, userId, status);
1229    }
1230
1231    public static int filterCountByG_U_S(long groupId, long userId, int status)
1232        throws com.liferay.portal.kernel.exception.SystemException {
1233        return getPersistence().filterCountByG_U_S(groupId, userId, status);
1234    }
1235
1236    public static int countByG_D_S(long groupId, java.util.Date displayDate,
1237        int status) throws com.liferay.portal.kernel.exception.SystemException {
1238        return getPersistence().countByG_D_S(groupId, displayDate, status);
1239    }
1240
1241    public static int filterCountByG_D_S(long groupId,
1242        java.util.Date displayDate, int status)
1243        throws com.liferay.portal.kernel.exception.SystemException {
1244        return getPersistence().filterCountByG_D_S(groupId, displayDate, status);
1245    }
1246
1247    public static int countByG_U_D_S(long groupId, long userId,
1248        java.util.Date displayDate, int status)
1249        throws com.liferay.portal.kernel.exception.SystemException {
1250        return getPersistence()
1251                   .countByG_U_D_S(groupId, userId, displayDate, status);
1252    }
1253
1254    public static int filterCountByG_U_D_S(long groupId, long userId,
1255        java.util.Date displayDate, int status)
1256        throws com.liferay.portal.kernel.exception.SystemException {
1257        return getPersistence()
1258                   .filterCountByG_U_D_S(groupId, userId, displayDate, status);
1259    }
1260
1261    public static int countAll()
1262        throws com.liferay.portal.kernel.exception.SystemException {
1263        return getPersistence().countAll();
1264    }
1265
1266    public static BlogsEntryPersistence getPersistence() {
1267        if (_persistence == null) {
1268            _persistence = (BlogsEntryPersistence)PortalBeanLocatorUtil.locate(BlogsEntryPersistence.class.getName());
1269        }
1270
1271        return _persistence;
1272    }
1273
1274    public void setPersistence(BlogsEntryPersistence persistence) {
1275        _persistence = persistence;
1276    }
1277
1278    private static BlogsEntryPersistence _persistence;
1279}