001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class AssetEntryLocalServiceWrapper implements AssetEntryLocalService,
029 ServiceWrapper<AssetEntryLocalService> {
030 public AssetEntryLocalServiceWrapper(
031 AssetEntryLocalService assetEntryLocalService) {
032 _assetEntryLocalService = assetEntryLocalService;
033 }
034
035
042 public com.liferay.portlet.asset.model.AssetEntry addAssetEntry(
043 com.liferay.portlet.asset.model.AssetEntry assetEntry)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _assetEntryLocalService.addAssetEntry(assetEntry);
046 }
047
048
054 public com.liferay.portlet.asset.model.AssetEntry createAssetEntry(
055 long entryId) {
056 return _assetEntryLocalService.createAssetEntry(entryId);
057 }
058
059
067 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
068 long entryId)
069 throws com.liferay.portal.kernel.exception.PortalException,
070 com.liferay.portal.kernel.exception.SystemException {
071 return _assetEntryLocalService.deleteAssetEntry(entryId);
072 }
073
074
081 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
082 com.liferay.portlet.asset.model.AssetEntry assetEntry)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _assetEntryLocalService.deleteAssetEntry(assetEntry);
085 }
086
087 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088 return _assetEntryLocalService.dynamicQuery();
089 }
090
091
098 @SuppressWarnings("rawtypes")
099 public java.util.List dynamicQuery(
100 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _assetEntryLocalService.dynamicQuery(dynamicQuery);
103 }
104
105
118 @SuppressWarnings("rawtypes")
119 public java.util.List dynamicQuery(
120 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121 int end) throws com.liferay.portal.kernel.exception.SystemException {
122 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end);
123 }
124
125
139 @SuppressWarnings("rawtypes")
140 public java.util.List dynamicQuery(
141 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
142 int end,
143 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
144 throws com.liferay.portal.kernel.exception.SystemException {
145 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end,
146 orderByComparator);
147 }
148
149
156 public long dynamicQueryCount(
157 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _assetEntryLocalService.dynamicQueryCount(dynamicQuery);
160 }
161
162 public com.liferay.portlet.asset.model.AssetEntry fetchAssetEntry(
163 long entryId)
164 throws com.liferay.portal.kernel.exception.SystemException {
165 return _assetEntryLocalService.fetchAssetEntry(entryId);
166 }
167
168
176 public com.liferay.portlet.asset.model.AssetEntry getAssetEntry(
177 long entryId)
178 throws com.liferay.portal.kernel.exception.PortalException,
179 com.liferay.portal.kernel.exception.SystemException {
180 return _assetEntryLocalService.getAssetEntry(entryId);
181 }
182
183 public com.liferay.portal.model.PersistedModel getPersistedModel(
184 java.io.Serializable primaryKeyObj)
185 throws com.liferay.portal.kernel.exception.PortalException,
186 com.liferay.portal.kernel.exception.SystemException {
187 return _assetEntryLocalService.getPersistedModel(primaryKeyObj);
188 }
189
190
202 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetEntries(
203 int start, int end)
204 throws com.liferay.portal.kernel.exception.SystemException {
205 return _assetEntryLocalService.getAssetEntries(start, end);
206 }
207
208
214 public int getAssetEntriesCount()
215 throws com.liferay.portal.kernel.exception.SystemException {
216 return _assetEntryLocalService.getAssetEntriesCount();
217 }
218
219
226 public com.liferay.portlet.asset.model.AssetEntry updateAssetEntry(
227 com.liferay.portlet.asset.model.AssetEntry assetEntry)
228 throws com.liferay.portal.kernel.exception.SystemException {
229 return _assetEntryLocalService.updateAssetEntry(assetEntry);
230 }
231
232
235 public void addAssetCategoryAssetEntry(long categoryId, long entryId)
236 throws com.liferay.portal.kernel.exception.SystemException {
237 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId, entryId);
238 }
239
240
243 public void addAssetCategoryAssetEntry(long categoryId,
244 com.liferay.portlet.asset.model.AssetEntry assetEntry)
245 throws com.liferay.portal.kernel.exception.SystemException {
246 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId,
247 assetEntry);
248 }
249
250
253 public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds)
254 throws com.liferay.portal.kernel.exception.SystemException {
255 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
256 entryIds);
257 }
258
259
262 public void addAssetCategoryAssetEntries(long categoryId,
263 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
264 throws com.liferay.portal.kernel.exception.SystemException {
265 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
266 AssetEntries);
267 }
268
269
272 public void clearAssetCategoryAssetEntries(long categoryId)
273 throws com.liferay.portal.kernel.exception.SystemException {
274 _assetEntryLocalService.clearAssetCategoryAssetEntries(categoryId);
275 }
276
277
280 public void deleteAssetCategoryAssetEntry(long categoryId, long entryId)
281 throws com.liferay.portal.kernel.exception.SystemException {
282 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
283 entryId);
284 }
285
286
289 public void deleteAssetCategoryAssetEntry(long categoryId,
290 com.liferay.portlet.asset.model.AssetEntry assetEntry)
291 throws com.liferay.portal.kernel.exception.SystemException {
292 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
293 assetEntry);
294 }
295
296
299 public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds)
300 throws com.liferay.portal.kernel.exception.SystemException {
301 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
302 entryIds);
303 }
304
305
308 public void deleteAssetCategoryAssetEntries(long categoryId,
309 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
310 throws com.liferay.portal.kernel.exception.SystemException {
311 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
312 AssetEntries);
313 }
314
315
318 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
319 long categoryId)
320 throws com.liferay.portal.kernel.exception.SystemException {
321 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId);
322 }
323
324
327 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
328 long categoryId, int start, int end)
329 throws com.liferay.portal.kernel.exception.SystemException {
330 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
331 start, end);
332 }
333
334
337 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
338 long categoryId, int start, int end,
339 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
340 throws com.liferay.portal.kernel.exception.SystemException {
341 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
342 start, end, orderByComparator);
343 }
344
345
348 public int getAssetCategoryAssetEntriesCount(long categoryId)
349 throws com.liferay.portal.kernel.exception.SystemException {
350 return _assetEntryLocalService.getAssetCategoryAssetEntriesCount(categoryId);
351 }
352
353
356 public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId)
357 throws com.liferay.portal.kernel.exception.SystemException {
358 return _assetEntryLocalService.hasAssetCategoryAssetEntry(categoryId,
359 entryId);
360 }
361
362
365 public boolean hasAssetCategoryAssetEntries(long categoryId)
366 throws com.liferay.portal.kernel.exception.SystemException {
367 return _assetEntryLocalService.hasAssetCategoryAssetEntries(categoryId);
368 }
369
370
373 public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds)
374 throws com.liferay.portal.kernel.exception.SystemException {
375 _assetEntryLocalService.setAssetCategoryAssetEntries(categoryId,
376 entryIds);
377 }
378
379
382 public void addAssetTagAssetEntry(long tagId, long entryId)
383 throws com.liferay.portal.kernel.exception.SystemException {
384 _assetEntryLocalService.addAssetTagAssetEntry(tagId, entryId);
385 }
386
387
390 public void addAssetTagAssetEntry(long tagId,
391 com.liferay.portlet.asset.model.AssetEntry assetEntry)
392 throws com.liferay.portal.kernel.exception.SystemException {
393 _assetEntryLocalService.addAssetTagAssetEntry(tagId, assetEntry);
394 }
395
396
399 public void addAssetTagAssetEntries(long tagId, long[] entryIds)
400 throws com.liferay.portal.kernel.exception.SystemException {
401 _assetEntryLocalService.addAssetTagAssetEntries(tagId, entryIds);
402 }
403
404
407 public void addAssetTagAssetEntries(long tagId,
408 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
409 throws com.liferay.portal.kernel.exception.SystemException {
410 _assetEntryLocalService.addAssetTagAssetEntries(tagId, AssetEntries);
411 }
412
413
416 public void clearAssetTagAssetEntries(long tagId)
417 throws com.liferay.portal.kernel.exception.SystemException {
418 _assetEntryLocalService.clearAssetTagAssetEntries(tagId);
419 }
420
421
424 public void deleteAssetTagAssetEntry(long tagId, long entryId)
425 throws com.liferay.portal.kernel.exception.SystemException {
426 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, entryId);
427 }
428
429
432 public void deleteAssetTagAssetEntry(long tagId,
433 com.liferay.portlet.asset.model.AssetEntry assetEntry)
434 throws com.liferay.portal.kernel.exception.SystemException {
435 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, assetEntry);
436 }
437
438
441 public void deleteAssetTagAssetEntries(long tagId, long[] entryIds)
442 throws com.liferay.portal.kernel.exception.SystemException {
443 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, entryIds);
444 }
445
446
449 public void deleteAssetTagAssetEntries(long tagId,
450 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
451 throws com.liferay.portal.kernel.exception.SystemException {
452 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, AssetEntries);
453 }
454
455
458 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
459 long tagId) throws com.liferay.portal.kernel.exception.SystemException {
460 return _assetEntryLocalService.getAssetTagAssetEntries(tagId);
461 }
462
463
466 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
467 long tagId, int start, int end)
468 throws com.liferay.portal.kernel.exception.SystemException {
469 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start, end);
470 }
471
472
475 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
476 long tagId, int start, int end,
477 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
478 throws com.liferay.portal.kernel.exception.SystemException {
479 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start,
480 end, orderByComparator);
481 }
482
483
486 public int getAssetTagAssetEntriesCount(long tagId)
487 throws com.liferay.portal.kernel.exception.SystemException {
488 return _assetEntryLocalService.getAssetTagAssetEntriesCount(tagId);
489 }
490
491
494 public boolean hasAssetTagAssetEntry(long tagId, long entryId)
495 throws com.liferay.portal.kernel.exception.SystemException {
496 return _assetEntryLocalService.hasAssetTagAssetEntry(tagId, entryId);
497 }
498
499
502 public boolean hasAssetTagAssetEntries(long tagId)
503 throws com.liferay.portal.kernel.exception.SystemException {
504 return _assetEntryLocalService.hasAssetTagAssetEntries(tagId);
505 }
506
507
510 public void setAssetTagAssetEntries(long tagId, long[] entryIds)
511 throws com.liferay.portal.kernel.exception.SystemException {
512 _assetEntryLocalService.setAssetTagAssetEntries(tagId, entryIds);
513 }
514
515
520 public java.lang.String getBeanIdentifier() {
521 return _assetEntryLocalService.getBeanIdentifier();
522 }
523
524
529 public void setBeanIdentifier(java.lang.String beanIdentifier) {
530 _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
531 }
532
533 public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
534 throws com.liferay.portal.kernel.exception.PortalException,
535 com.liferay.portal.kernel.exception.SystemException {
536 _assetEntryLocalService.deleteEntry(entry);
537 }
538
539 public void deleteEntry(long entryId)
540 throws com.liferay.portal.kernel.exception.PortalException,
541 com.liferay.portal.kernel.exception.SystemException {
542 _assetEntryLocalService.deleteEntry(entryId);
543 }
544
545 public void deleteEntry(java.lang.String className, long classPK)
546 throws com.liferay.portal.kernel.exception.PortalException,
547 com.liferay.portal.kernel.exception.SystemException {
548 _assetEntryLocalService.deleteEntry(className, classPK);
549 }
550
551 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId)
552 throws com.liferay.portal.kernel.exception.SystemException {
553 return _assetEntryLocalService.fetchEntry(entryId);
554 }
555
556 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long groupId,
557 java.lang.String classUuid)
558 throws com.liferay.portal.kernel.exception.SystemException {
559 return _assetEntryLocalService.fetchEntry(groupId, classUuid);
560 }
561
562 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
563 java.lang.String className, long classPK)
564 throws com.liferay.portal.kernel.exception.SystemException {
565 return _assetEntryLocalService.fetchEntry(className, classPK);
566 }
567
568 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
569 long entryId)
570 throws com.liferay.portal.kernel.exception.PortalException,
571 com.liferay.portal.kernel.exception.SystemException {
572 return _assetEntryLocalService.getAncestorEntries(entryId);
573 }
574
575 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
576 long entryId)
577 throws com.liferay.portal.kernel.exception.PortalException,
578 com.liferay.portal.kernel.exception.SystemException {
579 return _assetEntryLocalService.getChildEntries(entryId);
580 }
581
582 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
583 long companyId, int start, int end)
584 throws com.liferay.portal.kernel.exception.SystemException {
585 return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
586 }
587
588 public int getCompanyEntriesCount(long companyId)
589 throws com.liferay.portal.kernel.exception.SystemException {
590 return _assetEntryLocalService.getCompanyEntriesCount(companyId);
591 }
592
593 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
594 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
595 throws com.liferay.portal.kernel.exception.SystemException {
596 return _assetEntryLocalService.getEntries(entryQuery);
597 }
598
599 public int getEntriesCount(
600 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
601 throws com.liferay.portal.kernel.exception.SystemException {
602 return _assetEntryLocalService.getEntriesCount(entryQuery);
603 }
604
605 public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
606 throws com.liferay.portal.kernel.exception.PortalException,
607 com.liferay.portal.kernel.exception.SystemException {
608 return _assetEntryLocalService.getEntry(entryId);
609 }
610
611 public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
612 java.lang.String classUuid)
613 throws com.liferay.portal.kernel.exception.PortalException,
614 com.liferay.portal.kernel.exception.SystemException {
615 return _assetEntryLocalService.getEntry(groupId, classUuid);
616 }
617
618 public com.liferay.portlet.asset.model.AssetEntry getEntry(
619 java.lang.String className, long classPK)
620 throws com.liferay.portal.kernel.exception.PortalException,
621 com.liferay.portal.kernel.exception.SystemException {
622 return _assetEntryLocalService.getEntry(className, classPK);
623 }
624
625 public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
626 throws com.liferay.portal.kernel.exception.PortalException,
627 com.liferay.portal.kernel.exception.SystemException {
628 return _assetEntryLocalService.getNextEntry(entryId);
629 }
630
631 public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
632 long entryId)
633 throws com.liferay.portal.kernel.exception.PortalException,
634 com.liferay.portal.kernel.exception.SystemException {
635 return _assetEntryLocalService.getParentEntry(entryId);
636 }
637
638 public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
639 long entryId)
640 throws com.liferay.portal.kernel.exception.PortalException,
641 com.liferay.portal.kernel.exception.SystemException {
642 return _assetEntryLocalService.getPreviousEntry(entryId);
643 }
644
645 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
646 java.lang.String className, boolean asc, int start, int end)
647 throws com.liferay.portal.kernel.exception.SystemException {
648 return _assetEntryLocalService.getTopViewedEntries(className, asc,
649 start, end);
650 }
651
652 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
653 java.lang.String[] className, boolean asc, int start, int end)
654 throws com.liferay.portal.kernel.exception.SystemException {
655 return _assetEntryLocalService.getTopViewedEntries(className, asc,
656 start, end);
657 }
658
659 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
660 long userId, java.lang.String className, long classPK)
661 throws com.liferay.portal.kernel.exception.PortalException,
662 com.liferay.portal.kernel.exception.SystemException {
663 return _assetEntryLocalService.incrementViewCounter(userId, className,
664 classPK);
665 }
666
667 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
668 long userId, java.lang.String className, long classPK, int increment)
669 throws com.liferay.portal.kernel.exception.SystemException {
670 return _assetEntryLocalService.incrementViewCounter(userId, className,
671 classPK, increment);
672 }
673
674 public void reindex(
675 java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
676 throws com.liferay.portal.kernel.exception.PortalException {
677 _assetEntryLocalService.reindex(entries);
678 }
679
680
684 public com.liferay.portal.kernel.search.Hits search(long companyId,
685 long[] groupIds, long userId, java.lang.String className,
686 java.lang.String keywords, int start, int end)
687 throws com.liferay.portal.kernel.exception.SystemException {
688 return _assetEntryLocalService.search(companyId, groupIds, userId,
689 className, keywords, start, end);
690 }
691
692 public com.liferay.portal.kernel.search.Hits search(long companyId,
693 long[] groupIds, long userId, java.lang.String className,
694 java.lang.String keywords, int status, int start, int end)
695 throws com.liferay.portal.kernel.exception.SystemException {
696 return _assetEntryLocalService.search(companyId, groupIds, userId,
697 className, keywords, status, start, end);
698 }
699
700
705 public com.liferay.portal.kernel.search.Hits search(long companyId,
706 long[] groupIds, long userId, java.lang.String className,
707 java.lang.String userName, java.lang.String title,
708 java.lang.String description, java.lang.String assetCategoryIds,
709 java.lang.String assetTagNames, boolean andSearch, int start, int end)
710 throws com.liferay.portal.kernel.exception.SystemException {
711 return _assetEntryLocalService.search(companyId, groupIds, userId,
712 className, userName, title, description, assetCategoryIds,
713 assetTagNames, andSearch, start, end);
714 }
715
716 public com.liferay.portal.kernel.search.Hits search(long companyId,
717 long[] groupIds, long userId, java.lang.String className,
718 java.lang.String userName, java.lang.String title,
719 java.lang.String description, java.lang.String assetCategoryIds,
720 java.lang.String assetTagNames, int status, boolean andSearch,
721 int start, int end)
722 throws com.liferay.portal.kernel.exception.SystemException {
723 return _assetEntryLocalService.search(companyId, groupIds, userId,
724 className, userName, title, description, assetCategoryIds,
725 assetTagNames, status, andSearch, start, end);
726 }
727
728
732 public com.liferay.portal.kernel.search.Hits search(long companyId,
733 long[] groupIds, java.lang.String className, java.lang.String keywords,
734 int start, int end)
735 throws com.liferay.portal.kernel.exception.SystemException {
736 return _assetEntryLocalService.search(companyId, groupIds, className,
737 keywords, start, end);
738 }
739
740 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
741 long groupId, java.util.Date createDate, java.util.Date modifiedDate,
742 java.lang.String className, long classPK, java.lang.String classUuid,
743 long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
744 boolean visible, java.util.Date startDate, java.util.Date endDate,
745 java.util.Date expirationDate, java.lang.String mimeType,
746 java.lang.String title, java.lang.String description,
747 java.lang.String summary, java.lang.String url,
748 java.lang.String layoutUuid, int height, int width,
749 java.lang.Integer priority, boolean sync)
750 throws com.liferay.portal.kernel.exception.PortalException,
751 com.liferay.portal.kernel.exception.SystemException {
752 return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
753 modifiedDate, className, classPK, classUuid, classTypeId,
754 categoryIds, tagNames, visible, startDate, endDate, expirationDate,
755 mimeType, title, description, summary, url, layoutUuid, height,
756 width, priority, sync);
757 }
758
759 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
760 long groupId, java.lang.String className, long classPK,
761 long[] categoryIds, java.lang.String[] tagNames)
762 throws com.liferay.portal.kernel.exception.PortalException,
763 com.liferay.portal.kernel.exception.SystemException {
764 return _assetEntryLocalService.updateEntry(userId, groupId, className,
765 classPK, categoryIds, tagNames);
766 }
767
768
774 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
775 long groupId, java.lang.String className, long classPK,
776 java.lang.String classUuid, long classTypeId, long[] categoryIds,
777 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
778 java.util.Date endDate, java.util.Date publishDate,
779 java.util.Date expirationDate, java.lang.String mimeType,
780 java.lang.String title, java.lang.String description,
781 java.lang.String summary, java.lang.String url,
782 java.lang.String layoutUuid, int height, int width,
783 java.lang.Integer priority, boolean sync)
784 throws com.liferay.portal.kernel.exception.PortalException,
785 com.liferay.portal.kernel.exception.SystemException {
786 return _assetEntryLocalService.updateEntry(userId, groupId, className,
787 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
788 startDate, endDate, publishDate, expirationDate, mimeType, title,
789 description, summary, url, layoutUuid, height, width, priority, sync);
790 }
791
792
798 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
799 long groupId, java.lang.String className, long classPK,
800 java.lang.String classUuid, long classTypeId, long[] categoryIds,
801 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
802 java.util.Date endDate, java.util.Date expirationDate,
803 java.lang.String mimeType, java.lang.String title,
804 java.lang.String description, java.lang.String summary,
805 java.lang.String url, java.lang.String layoutUuid, int height,
806 int width, java.lang.Integer priority, boolean sync)
807 throws com.liferay.portal.kernel.exception.PortalException,
808 com.liferay.portal.kernel.exception.SystemException {
809 return _assetEntryLocalService.updateEntry(userId, groupId, className,
810 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
811 startDate, endDate, expirationDate, mimeType, title, description,
812 summary, url, layoutUuid, height, width, priority, sync);
813 }
814
815 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
816 java.lang.String className, long classPK, java.util.Date publishDate,
817 boolean visible)
818 throws com.liferay.portal.kernel.exception.PortalException,
819 com.liferay.portal.kernel.exception.SystemException {
820 return _assetEntryLocalService.updateEntry(className, classPK,
821 publishDate, visible);
822 }
823
824 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
825 java.lang.String className, long classPK, java.util.Date publishDate,
826 java.util.Date expirationDate, boolean visible)
827 throws com.liferay.portal.kernel.exception.PortalException,
828 com.liferay.portal.kernel.exception.SystemException {
829 return _assetEntryLocalService.updateEntry(className, classPK,
830 publishDate, expirationDate, visible);
831 }
832
833 public com.liferay.portlet.asset.model.AssetEntry updateVisible(
834 java.lang.String className, long classPK, boolean visible)
835 throws com.liferay.portal.kernel.exception.PortalException,
836 com.liferay.portal.kernel.exception.SystemException {
837 return _assetEntryLocalService.updateVisible(className, classPK, visible);
838 }
839
840 public void validate(long groupId, java.lang.String className,
841 long[] categoryIds, java.lang.String[] tagNames)
842 throws com.liferay.portal.kernel.exception.PortalException,
843 com.liferay.portal.kernel.exception.SystemException {
844 _assetEntryLocalService.validate(groupId, className, categoryIds,
845 tagNames);
846 }
847
848
851 public AssetEntryLocalService getWrappedAssetEntryLocalService() {
852 return _assetEntryLocalService;
853 }
854
855
858 public void setWrappedAssetEntryLocalService(
859 AssetEntryLocalService assetEntryLocalService) {
860 _assetEntryLocalService = assetEntryLocalService;
861 }
862
863 public AssetEntryLocalService getWrappedService() {
864 return _assetEntryLocalService;
865 }
866
867 public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
868 _assetEntryLocalService = assetEntryLocalService;
869 }
870
871 private AssetEntryLocalService _assetEntryLocalService;
872 }