1
22
23 package com.liferay.portlet.bookmarks.service.persistence;
24
25
31 public class BookmarksFolderUtil {
32 public static com.liferay.portlet.bookmarks.model.BookmarksFolder create(
33 long folderId) {
34 return getPersistence().create(folderId);
35 }
36
37 public static com.liferay.portlet.bookmarks.model.BookmarksFolder remove(
38 long folderId)
39 throws com.liferay.portal.SystemException,
40 com.liferay.portlet.bookmarks.NoSuchFolderException {
41 return getPersistence().remove(folderId);
42 }
43
44 public static com.liferay.portlet.bookmarks.model.BookmarksFolder remove(
45 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder)
46 throws com.liferay.portal.SystemException {
47 return getPersistence().remove(bookmarksFolder);
48 }
49
50
53 public static com.liferay.portlet.bookmarks.model.BookmarksFolder update(
54 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder)
55 throws com.liferay.portal.SystemException {
56 return getPersistence().update(bookmarksFolder);
57 }
58
59
72 public static com.liferay.portlet.bookmarks.model.BookmarksFolder update(
73 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder,
74 boolean merge) throws com.liferay.portal.SystemException {
75 return getPersistence().update(bookmarksFolder, merge);
76 }
77
78 public static com.liferay.portlet.bookmarks.model.BookmarksFolder updateImpl(
79 com.liferay.portlet.bookmarks.model.BookmarksFolder bookmarksFolder,
80 boolean merge) throws com.liferay.portal.SystemException {
81 return getPersistence().updateImpl(bookmarksFolder, merge);
82 }
83
84 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByPrimaryKey(
85 long folderId)
86 throws com.liferay.portal.SystemException,
87 com.liferay.portlet.bookmarks.NoSuchFolderException {
88 return getPersistence().findByPrimaryKey(folderId);
89 }
90
91 public static com.liferay.portlet.bookmarks.model.BookmarksFolder fetchByPrimaryKey(
92 long folderId) throws com.liferay.portal.SystemException {
93 return getPersistence().fetchByPrimaryKey(folderId);
94 }
95
96 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByUuid(
97 java.lang.String uuid) throws com.liferay.portal.SystemException {
98 return getPersistence().findByUuid(uuid);
99 }
100
101 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByUuid(
102 java.lang.String uuid, int begin, int end)
103 throws com.liferay.portal.SystemException {
104 return getPersistence().findByUuid(uuid, begin, end);
105 }
106
107 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByUuid(
108 java.lang.String uuid, int begin, int end,
109 com.liferay.portal.kernel.util.OrderByComparator obc)
110 throws com.liferay.portal.SystemException {
111 return getPersistence().findByUuid(uuid, begin, end, obc);
112 }
113
114 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByUuid_First(
115 java.lang.String uuid,
116 com.liferay.portal.kernel.util.OrderByComparator obc)
117 throws com.liferay.portal.SystemException,
118 com.liferay.portlet.bookmarks.NoSuchFolderException {
119 return getPersistence().findByUuid_First(uuid, obc);
120 }
121
122 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByUuid_Last(
123 java.lang.String uuid,
124 com.liferay.portal.kernel.util.OrderByComparator obc)
125 throws com.liferay.portal.SystemException,
126 com.liferay.portlet.bookmarks.NoSuchFolderException {
127 return getPersistence().findByUuid_Last(uuid, obc);
128 }
129
130 public static com.liferay.portlet.bookmarks.model.BookmarksFolder[] findByUuid_PrevAndNext(
131 long folderId, java.lang.String uuid,
132 com.liferay.portal.kernel.util.OrderByComparator obc)
133 throws com.liferay.portal.SystemException,
134 com.liferay.portlet.bookmarks.NoSuchFolderException {
135 return getPersistence().findByUuid_PrevAndNext(folderId, uuid, obc);
136 }
137
138 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByUUID_G(
139 java.lang.String uuid, long groupId)
140 throws com.liferay.portal.SystemException,
141 com.liferay.portlet.bookmarks.NoSuchFolderException {
142 return getPersistence().findByUUID_G(uuid, groupId);
143 }
144
145 public static com.liferay.portlet.bookmarks.model.BookmarksFolder fetchByUUID_G(
146 java.lang.String uuid, long groupId)
147 throws com.liferay.portal.SystemException {
148 return getPersistence().fetchByUUID_G(uuid, groupId);
149 }
150
151 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByGroupId(
152 long groupId) throws com.liferay.portal.SystemException {
153 return getPersistence().findByGroupId(groupId);
154 }
155
156 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByGroupId(
157 long groupId, int begin, int end)
158 throws com.liferay.portal.SystemException {
159 return getPersistence().findByGroupId(groupId, begin, end);
160 }
161
162 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByGroupId(
163 long groupId, int begin, int end,
164 com.liferay.portal.kernel.util.OrderByComparator obc)
165 throws com.liferay.portal.SystemException {
166 return getPersistence().findByGroupId(groupId, begin, end, obc);
167 }
168
169 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByGroupId_First(
170 long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
171 throws com.liferay.portal.SystemException,
172 com.liferay.portlet.bookmarks.NoSuchFolderException {
173 return getPersistence().findByGroupId_First(groupId, obc);
174 }
175
176 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByGroupId_Last(
177 long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
178 throws com.liferay.portal.SystemException,
179 com.liferay.portlet.bookmarks.NoSuchFolderException {
180 return getPersistence().findByGroupId_Last(groupId, obc);
181 }
182
183 public static com.liferay.portlet.bookmarks.model.BookmarksFolder[] findByGroupId_PrevAndNext(
184 long folderId, long groupId,
185 com.liferay.portal.kernel.util.OrderByComparator obc)
186 throws com.liferay.portal.SystemException,
187 com.liferay.portlet.bookmarks.NoSuchFolderException {
188 return getPersistence().findByGroupId_PrevAndNext(folderId, groupId, obc);
189 }
190
191 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByCompanyId(
192 long companyId) throws com.liferay.portal.SystemException {
193 return getPersistence().findByCompanyId(companyId);
194 }
195
196 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByCompanyId(
197 long companyId, int begin, int end)
198 throws com.liferay.portal.SystemException {
199 return getPersistence().findByCompanyId(companyId, begin, end);
200 }
201
202 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByCompanyId(
203 long companyId, int begin, int end,
204 com.liferay.portal.kernel.util.OrderByComparator obc)
205 throws com.liferay.portal.SystemException {
206 return getPersistence().findByCompanyId(companyId, begin, end, obc);
207 }
208
209 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByCompanyId_First(
210 long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
211 throws com.liferay.portal.SystemException,
212 com.liferay.portlet.bookmarks.NoSuchFolderException {
213 return getPersistence().findByCompanyId_First(companyId, obc);
214 }
215
216 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByCompanyId_Last(
217 long companyId, com.liferay.portal.kernel.util.OrderByComparator obc)
218 throws com.liferay.portal.SystemException,
219 com.liferay.portlet.bookmarks.NoSuchFolderException {
220 return getPersistence().findByCompanyId_Last(companyId, obc);
221 }
222
223 public static com.liferay.portlet.bookmarks.model.BookmarksFolder[] findByCompanyId_PrevAndNext(
224 long folderId, long companyId,
225 com.liferay.portal.kernel.util.OrderByComparator obc)
226 throws com.liferay.portal.SystemException,
227 com.liferay.portlet.bookmarks.NoSuchFolderException {
228 return getPersistence()
229 .findByCompanyId_PrevAndNext(folderId, companyId, obc);
230 }
231
232 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByG_P(
233 long groupId, long parentFolderId)
234 throws com.liferay.portal.SystemException {
235 return getPersistence().findByG_P(groupId, parentFolderId);
236 }
237
238 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByG_P(
239 long groupId, long parentFolderId, int begin, int end)
240 throws com.liferay.portal.SystemException {
241 return getPersistence().findByG_P(groupId, parentFolderId, begin, end);
242 }
243
244 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByG_P(
245 long groupId, long parentFolderId, int begin, int end,
246 com.liferay.portal.kernel.util.OrderByComparator obc)
247 throws com.liferay.portal.SystemException {
248 return getPersistence()
249 .findByG_P(groupId, parentFolderId, begin, end, obc);
250 }
251
252 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByG_P_First(
253 long groupId, long parentFolderId,
254 com.liferay.portal.kernel.util.OrderByComparator obc)
255 throws com.liferay.portal.SystemException,
256 com.liferay.portlet.bookmarks.NoSuchFolderException {
257 return getPersistence().findByG_P_First(groupId, parentFolderId, obc);
258 }
259
260 public static com.liferay.portlet.bookmarks.model.BookmarksFolder findByG_P_Last(
261 long groupId, long parentFolderId,
262 com.liferay.portal.kernel.util.OrderByComparator obc)
263 throws com.liferay.portal.SystemException,
264 com.liferay.portlet.bookmarks.NoSuchFolderException {
265 return getPersistence().findByG_P_Last(groupId, parentFolderId, obc);
266 }
267
268 public static com.liferay.portlet.bookmarks.model.BookmarksFolder[] findByG_P_PrevAndNext(
269 long folderId, long groupId, long parentFolderId,
270 com.liferay.portal.kernel.util.OrderByComparator obc)
271 throws com.liferay.portal.SystemException,
272 com.liferay.portlet.bookmarks.NoSuchFolderException {
273 return getPersistence()
274 .findByG_P_PrevAndNext(folderId, groupId, parentFolderId, obc);
275 }
276
277 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findWithDynamicQuery(
278 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
279 throws com.liferay.portal.SystemException {
280 return getPersistence().findWithDynamicQuery(queryInitializer);
281 }
282
283 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findWithDynamicQuery(
284 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
285 int begin, int end) throws com.liferay.portal.SystemException {
286 return getPersistence()
287 .findWithDynamicQuery(queryInitializer, begin, end);
288 }
289
290 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findAll()
291 throws com.liferay.portal.SystemException {
292 return getPersistence().findAll();
293 }
294
295 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findAll(
296 int begin, int end) throws com.liferay.portal.SystemException {
297 return getPersistence().findAll(begin, end);
298 }
299
300 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findAll(
301 int begin, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
302 throws com.liferay.portal.SystemException {
303 return getPersistence().findAll(begin, end, obc);
304 }
305
306 public static void removeByUuid(java.lang.String uuid)
307 throws com.liferay.portal.SystemException {
308 getPersistence().removeByUuid(uuid);
309 }
310
311 public static void removeByUUID_G(java.lang.String uuid, long groupId)
312 throws com.liferay.portal.SystemException,
313 com.liferay.portlet.bookmarks.NoSuchFolderException {
314 getPersistence().removeByUUID_G(uuid, groupId);
315 }
316
317 public static void removeByGroupId(long groupId)
318 throws com.liferay.portal.SystemException {
319 getPersistence().removeByGroupId(groupId);
320 }
321
322 public static void removeByCompanyId(long companyId)
323 throws com.liferay.portal.SystemException {
324 getPersistence().removeByCompanyId(companyId);
325 }
326
327 public static void removeByG_P(long groupId, long parentFolderId)
328 throws com.liferay.portal.SystemException {
329 getPersistence().removeByG_P(groupId, parentFolderId);
330 }
331
332 public static void removeAll() throws com.liferay.portal.SystemException {
333 getPersistence().removeAll();
334 }
335
336 public static int countByUuid(java.lang.String uuid)
337 throws com.liferay.portal.SystemException {
338 return getPersistence().countByUuid(uuid);
339 }
340
341 public static int countByUUID_G(java.lang.String uuid, long groupId)
342 throws com.liferay.portal.SystemException {
343 return getPersistence().countByUUID_G(uuid, groupId);
344 }
345
346 public static int countByGroupId(long groupId)
347 throws com.liferay.portal.SystemException {
348 return getPersistence().countByGroupId(groupId);
349 }
350
351 public static int countByCompanyId(long companyId)
352 throws com.liferay.portal.SystemException {
353 return getPersistence().countByCompanyId(companyId);
354 }
355
356 public static int countByG_P(long groupId, long parentFolderId)
357 throws com.liferay.portal.SystemException {
358 return getPersistence().countByG_P(groupId, parentFolderId);
359 }
360
361 public static int countAll() throws com.liferay.portal.SystemException {
362 return getPersistence().countAll();
363 }
364
365 public static BookmarksFolderPersistence getPersistence() {
366 return _getUtil()._persistence;
367 }
368
369 public void setPersistence(BookmarksFolderPersistence persistence) {
370 _persistence = persistence;
371 }
372
373 private static BookmarksFolderUtil _getUtil() {
374 if (_util == null) {
375 _util = (BookmarksFolderUtil)com.liferay.portal.kernel.bean.BeanLocatorUtil.locate(_UTIL);
376 }
377
378 return _util;
379 }
380
381 private static final String _UTIL = BookmarksFolderUtil.class.getName();
382 private static BookmarksFolderUtil _util;
383 private BookmarksFolderPersistence _persistence;
384 }