001
014
015 package com.liferay.portlet.bookmarks.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class BookmarksEntryLocalServiceWrapper
029 implements BookmarksEntryLocalService,
030 ServiceWrapper<BookmarksEntryLocalService> {
031 public BookmarksEntryLocalServiceWrapper(
032 BookmarksEntryLocalService bookmarksEntryLocalService) {
033 _bookmarksEntryLocalService = bookmarksEntryLocalService;
034 }
035
036
043 public com.liferay.portlet.bookmarks.model.BookmarksEntry addBookmarksEntry(
044 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
045 throws com.liferay.portal.kernel.exception.SystemException {
046 return _bookmarksEntryLocalService.addBookmarksEntry(bookmarksEntry);
047 }
048
049
055 public com.liferay.portlet.bookmarks.model.BookmarksEntry createBookmarksEntry(
056 long entryId) {
057 return _bookmarksEntryLocalService.createBookmarksEntry(entryId);
058 }
059
060
068 public com.liferay.portlet.bookmarks.model.BookmarksEntry deleteBookmarksEntry(
069 long entryId)
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException {
072 return _bookmarksEntryLocalService.deleteBookmarksEntry(entryId);
073 }
074
075
082 public com.liferay.portlet.bookmarks.model.BookmarksEntry deleteBookmarksEntry(
083 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
084 throws com.liferay.portal.kernel.exception.SystemException {
085 return _bookmarksEntryLocalService.deleteBookmarksEntry(bookmarksEntry);
086 }
087
088 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089 return _bookmarksEntryLocalService.dynamicQuery();
090 }
091
092
099 @SuppressWarnings("rawtypes")
100 public java.util.List dynamicQuery(
101 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery);
104 }
105
106
119 @SuppressWarnings("rawtypes")
120 public java.util.List dynamicQuery(
121 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
122 int end) throws com.liferay.portal.kernel.exception.SystemException {
123 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery, start, end);
124 }
125
126
140 @SuppressWarnings("rawtypes")
141 public java.util.List dynamicQuery(
142 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
143 int end,
144 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
145 throws com.liferay.portal.kernel.exception.SystemException {
146 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery, start,
147 end, orderByComparator);
148 }
149
150
157 public long dynamicQueryCount(
158 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _bookmarksEntryLocalService.dynamicQueryCount(dynamicQuery);
161 }
162
163 public com.liferay.portlet.bookmarks.model.BookmarksEntry fetchBookmarksEntry(
164 long entryId)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _bookmarksEntryLocalService.fetchBookmarksEntry(entryId);
167 }
168
169
177 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntry(
178 long entryId)
179 throws com.liferay.portal.kernel.exception.PortalException,
180 com.liferay.portal.kernel.exception.SystemException {
181 return _bookmarksEntryLocalService.getBookmarksEntry(entryId);
182 }
183
184 public com.liferay.portal.model.PersistedModel getPersistedModel(
185 java.io.Serializable primaryKeyObj)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _bookmarksEntryLocalService.getPersistedModel(primaryKeyObj);
189 }
190
191
200 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntryByUuidAndGroupId(
201 java.lang.String uuid, long groupId)
202 throws com.liferay.portal.kernel.exception.PortalException,
203 com.liferay.portal.kernel.exception.SystemException {
204 return _bookmarksEntryLocalService.getBookmarksEntryByUuidAndGroupId(uuid,
205 groupId);
206 }
207
208
220 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getBookmarksEntries(
221 int start, int end)
222 throws com.liferay.portal.kernel.exception.SystemException {
223 return _bookmarksEntryLocalService.getBookmarksEntries(start, end);
224 }
225
226
232 public int getBookmarksEntriesCount()
233 throws com.liferay.portal.kernel.exception.SystemException {
234 return _bookmarksEntryLocalService.getBookmarksEntriesCount();
235 }
236
237
244 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateBookmarksEntry(
245 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
246 throws com.liferay.portal.kernel.exception.SystemException {
247 return _bookmarksEntryLocalService.updateBookmarksEntry(bookmarksEntry);
248 }
249
250
258 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateBookmarksEntry(
259 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry,
260 boolean merge)
261 throws com.liferay.portal.kernel.exception.SystemException {
262 return _bookmarksEntryLocalService.updateBookmarksEntry(bookmarksEntry,
263 merge);
264 }
265
266
271 public java.lang.String getBeanIdentifier() {
272 return _bookmarksEntryLocalService.getBeanIdentifier();
273 }
274
275
280 public void setBeanIdentifier(java.lang.String beanIdentifier) {
281 _bookmarksEntryLocalService.setBeanIdentifier(beanIdentifier);
282 }
283
284 public com.liferay.portlet.bookmarks.model.BookmarksEntry addEntry(
285 long userId, long groupId, long folderId, java.lang.String name,
286 java.lang.String url, java.lang.String description,
287 com.liferay.portal.service.ServiceContext serviceContext)
288 throws com.liferay.portal.kernel.exception.PortalException,
289 com.liferay.portal.kernel.exception.SystemException {
290 return _bookmarksEntryLocalService.addEntry(userId, groupId, folderId,
291 name, url, description, serviceContext);
292 }
293
294 public void deleteEntries(long groupId, long folderId)
295 throws com.liferay.portal.kernel.exception.PortalException,
296 com.liferay.portal.kernel.exception.SystemException {
297 _bookmarksEntryLocalService.deleteEntries(groupId, folderId);
298 }
299
300 public void deleteEntry(
301 com.liferay.portlet.bookmarks.model.BookmarksEntry entry)
302 throws com.liferay.portal.kernel.exception.PortalException,
303 com.liferay.portal.kernel.exception.SystemException {
304 _bookmarksEntryLocalService.deleteEntry(entry);
305 }
306
307 public void deleteEntry(long entryId)
308 throws com.liferay.portal.kernel.exception.PortalException,
309 com.liferay.portal.kernel.exception.SystemException {
310 _bookmarksEntryLocalService.deleteEntry(entryId);
311 }
312
313 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
314 long groupId, long folderId, int start, int end)
315 throws com.liferay.portal.kernel.exception.SystemException {
316 return _bookmarksEntryLocalService.getEntries(groupId, folderId, start,
317 end);
318 }
319
320 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
321 long groupId, long folderId, int start, int end,
322 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
323 throws com.liferay.portal.kernel.exception.SystemException {
324 return _bookmarksEntryLocalService.getEntries(groupId, folderId, start,
325 end, orderByComparator);
326 }
327
328 public int getEntriesCount(long groupId, long folderId)
329 throws com.liferay.portal.kernel.exception.SystemException {
330 return _bookmarksEntryLocalService.getEntriesCount(groupId, folderId);
331 }
332
333 public com.liferay.portlet.bookmarks.model.BookmarksEntry getEntry(
334 long entryId)
335 throws com.liferay.portal.kernel.exception.PortalException,
336 com.liferay.portal.kernel.exception.SystemException {
337 return _bookmarksEntryLocalService.getEntry(entryId);
338 }
339
340 public int getFoldersEntriesCount(long groupId,
341 java.util.List<java.lang.Long> folderIds)
342 throws com.liferay.portal.kernel.exception.SystemException {
343 return _bookmarksEntryLocalService.getFoldersEntriesCount(groupId,
344 folderIds);
345 }
346
347 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
348 long groupId, int start, int end)
349 throws com.liferay.portal.kernel.exception.SystemException {
350 return _bookmarksEntryLocalService.getGroupEntries(groupId, start, end);
351 }
352
353 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
354 long groupId, long userId, int start, int end)
355 throws com.liferay.portal.kernel.exception.SystemException {
356 return _bookmarksEntryLocalService.getGroupEntries(groupId, userId,
357 start, end);
358 }
359
360 public int getGroupEntriesCount(long groupId)
361 throws com.liferay.portal.kernel.exception.SystemException {
362 return _bookmarksEntryLocalService.getGroupEntriesCount(groupId);
363 }
364
365 public int getGroupEntriesCount(long groupId, long userId)
366 throws com.liferay.portal.kernel.exception.SystemException {
367 return _bookmarksEntryLocalService.getGroupEntriesCount(groupId, userId);
368 }
369
370 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getNoAssetEntries()
371 throws com.liferay.portal.kernel.exception.SystemException {
372 return _bookmarksEntryLocalService.getNoAssetEntries();
373 }
374
375 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getNoResourceBlockEntries()
376 throws com.liferay.portal.kernel.exception.SystemException {
377 return _bookmarksEntryLocalService.getNoResourceBlockEntries();
378 }
379
380 public com.liferay.portlet.bookmarks.model.BookmarksEntry openEntry(
381 long userId, long entryId)
382 throws com.liferay.portal.kernel.exception.PortalException,
383 com.liferay.portal.kernel.exception.SystemException {
384 return _bookmarksEntryLocalService.openEntry(userId, entryId);
385 }
386
387 public void updateAsset(long userId,
388 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
389 long[] assetCategoryIds, java.lang.String[] assetTagNames,
390 long[] assetLinkEntryIds)
391 throws com.liferay.portal.kernel.exception.PortalException,
392 com.liferay.portal.kernel.exception.SystemException {
393 _bookmarksEntryLocalService.updateAsset(userId, entry,
394 assetCategoryIds, assetTagNames, assetLinkEntryIds);
395 }
396
397 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateEntry(
398 long userId, long entryId, long groupId, long folderId,
399 java.lang.String name, java.lang.String url,
400 java.lang.String description,
401 com.liferay.portal.service.ServiceContext serviceContext)
402 throws com.liferay.portal.kernel.exception.PortalException,
403 com.liferay.portal.kernel.exception.SystemException {
404 return _bookmarksEntryLocalService.updateEntry(userId, entryId,
405 groupId, folderId, name, url, description, serviceContext);
406 }
407
408
411 public BookmarksEntryLocalService getWrappedBookmarksEntryLocalService() {
412 return _bookmarksEntryLocalService;
413 }
414
415
418 public void setWrappedBookmarksEntryLocalService(
419 BookmarksEntryLocalService bookmarksEntryLocalService) {
420 _bookmarksEntryLocalService = bookmarksEntryLocalService;
421 }
422
423 public BookmarksEntryLocalService getWrappedService() {
424 return _bookmarksEntryLocalService;
425 }
426
427 public void setWrappedService(
428 BookmarksEntryLocalService bookmarksEntryLocalService) {
429 _bookmarksEntryLocalService = bookmarksEntryLocalService;
430 }
431
432 private BookmarksEntryLocalService _bookmarksEntryLocalService;
433 }