1
19
20 package com.liferay.portlet.journal.service.persistence;
21
22
28 public class JournalFeedFinderUtil {
29 public static int countByKeywords(long companyId, long groupId,
30 java.lang.String keywords) throws com.liferay.portal.SystemException {
31 return getFinder().countByKeywords(companyId, groupId, keywords);
32 }
33
34 public static int countByC_G_F_N_D(long companyId, long groupId,
35 java.lang.String feedId, java.lang.String name,
36 java.lang.String description, boolean andOperator)
37 throws com.liferay.portal.SystemException {
38 return getFinder()
39 .countByC_G_F_N_D(companyId, groupId, feedId, name,
40 description, andOperator);
41 }
42
43 public static int countByC_G_F_N_D(long companyId, long groupId,
44 java.lang.String[] feedIds, java.lang.String[] names,
45 java.lang.String[] descriptions, boolean andOperator)
46 throws com.liferay.portal.SystemException {
47 return getFinder()
48 .countByC_G_F_N_D(companyId, groupId, feedIds, names,
49 descriptions, andOperator);
50 }
51
52 public static java.util.List<com.liferay.portlet.journal.model.JournalFeed> findByKeywords(
53 long companyId, long groupId, java.lang.String keywords, int start,
54 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
55 throws com.liferay.portal.SystemException {
56 return getFinder()
57 .findByKeywords(companyId, groupId, keywords, start, end, obc);
58 }
59
60 public static java.util.List<com.liferay.portlet.journal.model.JournalFeed> findByC_G_F_N_D(
61 long companyId, long groupId, java.lang.String feedId,
62 java.lang.String name, java.lang.String description,
63 boolean andOperator, int start, int end,
64 com.liferay.portal.kernel.util.OrderByComparator obc)
65 throws com.liferay.portal.SystemException {
66 return getFinder()
67 .findByC_G_F_N_D(companyId, groupId, feedId, name,
68 description, andOperator, start, end, obc);
69 }
70
71 public static java.util.List<com.liferay.portlet.journal.model.JournalFeed> findByC_G_F_N_D(
72 long companyId, long groupId, java.lang.String[] feedIds,
73 java.lang.String[] names, java.lang.String[] descriptions,
74 boolean andOperator, int start, int end,
75 com.liferay.portal.kernel.util.OrderByComparator obc)
76 throws com.liferay.portal.SystemException {
77 return getFinder()
78 .findByC_G_F_N_D(companyId, groupId, feedIds, names,
79 descriptions, andOperator, start, end, obc);
80 }
81
82 public static JournalFeedFinder getFinder() {
83 return _finder;
84 }
85
86 public void setFinder(JournalFeedFinder finder) {
87 _finder = finder;
88 }
89
90 private static JournalFeedFinder _finder;
91 }