001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class AssetEntryLocalServiceWrapper implements AssetEntryLocalService,
027 ServiceWrapper<AssetEntryLocalService> {
028 public AssetEntryLocalServiceWrapper(
029 AssetEntryLocalService assetEntryLocalService) {
030 _assetEntryLocalService = assetEntryLocalService;
031 }
032
033
040 @Override
041 public com.liferay.portlet.asset.model.AssetEntry addAssetEntry(
042 com.liferay.portlet.asset.model.AssetEntry assetEntry)
043 throws com.liferay.portal.kernel.exception.SystemException {
044 return _assetEntryLocalService.addAssetEntry(assetEntry);
045 }
046
047
053 @Override
054 public com.liferay.portlet.asset.model.AssetEntry createAssetEntry(
055 long entryId) {
056 return _assetEntryLocalService.createAssetEntry(entryId);
057 }
058
059
067 @Override
068 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
069 long entryId)
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException {
072 return _assetEntryLocalService.deleteAssetEntry(entryId);
073 }
074
075
082 @Override
083 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
084 com.liferay.portlet.asset.model.AssetEntry assetEntry)
085 throws com.liferay.portal.kernel.exception.SystemException {
086 return _assetEntryLocalService.deleteAssetEntry(assetEntry);
087 }
088
089 @Override
090 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
091 return _assetEntryLocalService.dynamicQuery();
092 }
093
094
101 @Override
102 @SuppressWarnings("rawtypes")
103 public java.util.List dynamicQuery(
104 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
105 throws com.liferay.portal.kernel.exception.SystemException {
106 return _assetEntryLocalService.dynamicQuery(dynamicQuery);
107 }
108
109
122 @Override
123 @SuppressWarnings("rawtypes")
124 public java.util.List dynamicQuery(
125 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126 int end) throws com.liferay.portal.kernel.exception.SystemException {
127 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end);
128 }
129
130
144 @Override
145 @SuppressWarnings("rawtypes")
146 public java.util.List dynamicQuery(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148 int end,
149 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150 throws com.liferay.portal.kernel.exception.SystemException {
151 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end,
152 orderByComparator);
153 }
154
155
162 @Override
163 public long dynamicQueryCount(
164 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _assetEntryLocalService.dynamicQueryCount(dynamicQuery);
167 }
168
169
177 @Override
178 public long dynamicQueryCount(
179 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180 com.liferay.portal.kernel.dao.orm.Projection projection)
181 throws com.liferay.portal.kernel.exception.SystemException {
182 return _assetEntryLocalService.dynamicQueryCount(dynamicQuery,
183 projection);
184 }
185
186 @Override
187 public com.liferay.portlet.asset.model.AssetEntry fetchAssetEntry(
188 long entryId)
189 throws com.liferay.portal.kernel.exception.SystemException {
190 return _assetEntryLocalService.fetchAssetEntry(entryId);
191 }
192
193
201 @Override
202 public com.liferay.portlet.asset.model.AssetEntry getAssetEntry(
203 long entryId)
204 throws com.liferay.portal.kernel.exception.PortalException,
205 com.liferay.portal.kernel.exception.SystemException {
206 return _assetEntryLocalService.getAssetEntry(entryId);
207 }
208
209 @Override
210 public com.liferay.portal.model.PersistedModel getPersistedModel(
211 java.io.Serializable primaryKeyObj)
212 throws com.liferay.portal.kernel.exception.PortalException,
213 com.liferay.portal.kernel.exception.SystemException {
214 return _assetEntryLocalService.getPersistedModel(primaryKeyObj);
215 }
216
217
229 @Override
230 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetEntries(
231 int start, int end)
232 throws com.liferay.portal.kernel.exception.SystemException {
233 return _assetEntryLocalService.getAssetEntries(start, end);
234 }
235
236
242 @Override
243 public int getAssetEntriesCount()
244 throws com.liferay.portal.kernel.exception.SystemException {
245 return _assetEntryLocalService.getAssetEntriesCount();
246 }
247
248
255 @Override
256 public com.liferay.portlet.asset.model.AssetEntry updateAssetEntry(
257 com.liferay.portlet.asset.model.AssetEntry assetEntry)
258 throws com.liferay.portal.kernel.exception.SystemException {
259 return _assetEntryLocalService.updateAssetEntry(assetEntry);
260 }
261
262
265 @Override
266 public void addAssetCategoryAssetEntry(long categoryId, long entryId)
267 throws com.liferay.portal.kernel.exception.SystemException {
268 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId, entryId);
269 }
270
271
274 @Override
275 public void addAssetCategoryAssetEntry(long categoryId,
276 com.liferay.portlet.asset.model.AssetEntry assetEntry)
277 throws com.liferay.portal.kernel.exception.SystemException {
278 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId,
279 assetEntry);
280 }
281
282
285 @Override
286 public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds)
287 throws com.liferay.portal.kernel.exception.SystemException {
288 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
289 entryIds);
290 }
291
292
295 @Override
296 public void addAssetCategoryAssetEntries(long categoryId,
297 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
298 throws com.liferay.portal.kernel.exception.SystemException {
299 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
300 AssetEntries);
301 }
302
303
306 @Override
307 public void clearAssetCategoryAssetEntries(long categoryId)
308 throws com.liferay.portal.kernel.exception.SystemException {
309 _assetEntryLocalService.clearAssetCategoryAssetEntries(categoryId);
310 }
311
312
315 @Override
316 public void deleteAssetCategoryAssetEntry(long categoryId, long entryId)
317 throws com.liferay.portal.kernel.exception.SystemException {
318 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
319 entryId);
320 }
321
322
325 @Override
326 public void deleteAssetCategoryAssetEntry(long categoryId,
327 com.liferay.portlet.asset.model.AssetEntry assetEntry)
328 throws com.liferay.portal.kernel.exception.SystemException {
329 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
330 assetEntry);
331 }
332
333
336 @Override
337 public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds)
338 throws com.liferay.portal.kernel.exception.SystemException {
339 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
340 entryIds);
341 }
342
343
346 @Override
347 public void deleteAssetCategoryAssetEntries(long categoryId,
348 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
349 throws com.liferay.portal.kernel.exception.SystemException {
350 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
351 AssetEntries);
352 }
353
354
357 @Override
358 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
359 long categoryId)
360 throws com.liferay.portal.kernel.exception.SystemException {
361 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId);
362 }
363
364
367 @Override
368 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
369 long categoryId, int start, int end)
370 throws com.liferay.portal.kernel.exception.SystemException {
371 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
372 start, end);
373 }
374
375
378 @Override
379 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
380 long categoryId, int start, int end,
381 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
382 throws com.liferay.portal.kernel.exception.SystemException {
383 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
384 start, end, orderByComparator);
385 }
386
387
390 @Override
391 public int getAssetCategoryAssetEntriesCount(long categoryId)
392 throws com.liferay.portal.kernel.exception.SystemException {
393 return _assetEntryLocalService.getAssetCategoryAssetEntriesCount(categoryId);
394 }
395
396
399 @Override
400 public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId)
401 throws com.liferay.portal.kernel.exception.SystemException {
402 return _assetEntryLocalService.hasAssetCategoryAssetEntry(categoryId,
403 entryId);
404 }
405
406
409 @Override
410 public boolean hasAssetCategoryAssetEntries(long categoryId)
411 throws com.liferay.portal.kernel.exception.SystemException {
412 return _assetEntryLocalService.hasAssetCategoryAssetEntries(categoryId);
413 }
414
415
418 @Override
419 public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds)
420 throws com.liferay.portal.kernel.exception.SystemException {
421 _assetEntryLocalService.setAssetCategoryAssetEntries(categoryId,
422 entryIds);
423 }
424
425
428 @Override
429 public void addAssetTagAssetEntry(long tagId, long entryId)
430 throws com.liferay.portal.kernel.exception.SystemException {
431 _assetEntryLocalService.addAssetTagAssetEntry(tagId, entryId);
432 }
433
434
437 @Override
438 public void addAssetTagAssetEntry(long tagId,
439 com.liferay.portlet.asset.model.AssetEntry assetEntry)
440 throws com.liferay.portal.kernel.exception.SystemException {
441 _assetEntryLocalService.addAssetTagAssetEntry(tagId, assetEntry);
442 }
443
444
447 @Override
448 public void addAssetTagAssetEntries(long tagId, long[] entryIds)
449 throws com.liferay.portal.kernel.exception.SystemException {
450 _assetEntryLocalService.addAssetTagAssetEntries(tagId, entryIds);
451 }
452
453
456 @Override
457 public void addAssetTagAssetEntries(long tagId,
458 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
459 throws com.liferay.portal.kernel.exception.SystemException {
460 _assetEntryLocalService.addAssetTagAssetEntries(tagId, AssetEntries);
461 }
462
463
466 @Override
467 public void clearAssetTagAssetEntries(long tagId)
468 throws com.liferay.portal.kernel.exception.SystemException {
469 _assetEntryLocalService.clearAssetTagAssetEntries(tagId);
470 }
471
472
475 @Override
476 public void deleteAssetTagAssetEntry(long tagId, long entryId)
477 throws com.liferay.portal.kernel.exception.SystemException {
478 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, entryId);
479 }
480
481
484 @Override
485 public void deleteAssetTagAssetEntry(long tagId,
486 com.liferay.portlet.asset.model.AssetEntry assetEntry)
487 throws com.liferay.portal.kernel.exception.SystemException {
488 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, assetEntry);
489 }
490
491
494 @Override
495 public void deleteAssetTagAssetEntries(long tagId, long[] entryIds)
496 throws com.liferay.portal.kernel.exception.SystemException {
497 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, entryIds);
498 }
499
500
503 @Override
504 public void deleteAssetTagAssetEntries(long tagId,
505 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
506 throws com.liferay.portal.kernel.exception.SystemException {
507 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, AssetEntries);
508 }
509
510
513 @Override
514 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
515 long tagId) throws com.liferay.portal.kernel.exception.SystemException {
516 return _assetEntryLocalService.getAssetTagAssetEntries(tagId);
517 }
518
519
522 @Override
523 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
524 long tagId, int start, int end)
525 throws com.liferay.portal.kernel.exception.SystemException {
526 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start, end);
527 }
528
529
532 @Override
533 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
534 long tagId, int start, int end,
535 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
536 throws com.liferay.portal.kernel.exception.SystemException {
537 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start,
538 end, orderByComparator);
539 }
540
541
544 @Override
545 public int getAssetTagAssetEntriesCount(long tagId)
546 throws com.liferay.portal.kernel.exception.SystemException {
547 return _assetEntryLocalService.getAssetTagAssetEntriesCount(tagId);
548 }
549
550
553 @Override
554 public boolean hasAssetTagAssetEntry(long tagId, long entryId)
555 throws com.liferay.portal.kernel.exception.SystemException {
556 return _assetEntryLocalService.hasAssetTagAssetEntry(tagId, entryId);
557 }
558
559
562 @Override
563 public boolean hasAssetTagAssetEntries(long tagId)
564 throws com.liferay.portal.kernel.exception.SystemException {
565 return _assetEntryLocalService.hasAssetTagAssetEntries(tagId);
566 }
567
568
571 @Override
572 public void setAssetTagAssetEntries(long tagId, long[] entryIds)
573 throws com.liferay.portal.kernel.exception.SystemException {
574 _assetEntryLocalService.setAssetTagAssetEntries(tagId, entryIds);
575 }
576
577
582 @Override
583 public java.lang.String getBeanIdentifier() {
584 return _assetEntryLocalService.getBeanIdentifier();
585 }
586
587
592 @Override
593 public void setBeanIdentifier(java.lang.String beanIdentifier) {
594 _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
595 }
596
597 @Override
598 public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
599 throws com.liferay.portal.kernel.exception.PortalException,
600 com.liferay.portal.kernel.exception.SystemException {
601 _assetEntryLocalService.deleteEntry(entry);
602 }
603
604 @Override
605 public void deleteEntry(long entryId)
606 throws com.liferay.portal.kernel.exception.PortalException,
607 com.liferay.portal.kernel.exception.SystemException {
608 _assetEntryLocalService.deleteEntry(entryId);
609 }
610
611 @Override
612 public void deleteEntry(java.lang.String className, long classPK)
613 throws com.liferay.portal.kernel.exception.PortalException,
614 com.liferay.portal.kernel.exception.SystemException {
615 _assetEntryLocalService.deleteEntry(className, classPK);
616 }
617
618 @Override
619 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId)
620 throws com.liferay.portal.kernel.exception.SystemException {
621 return _assetEntryLocalService.fetchEntry(entryId);
622 }
623
624 @Override
625 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long groupId,
626 java.lang.String classUuid)
627 throws com.liferay.portal.kernel.exception.SystemException {
628 return _assetEntryLocalService.fetchEntry(groupId, classUuid);
629 }
630
631 @Override
632 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
633 java.lang.String className, long classPK)
634 throws com.liferay.portal.kernel.exception.SystemException {
635 return _assetEntryLocalService.fetchEntry(className, classPK);
636 }
637
638 @Override
639 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
640 long entryId)
641 throws com.liferay.portal.kernel.exception.PortalException,
642 com.liferay.portal.kernel.exception.SystemException {
643 return _assetEntryLocalService.getAncestorEntries(entryId);
644 }
645
646 @Override
647 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
648 long entryId)
649 throws com.liferay.portal.kernel.exception.PortalException,
650 com.liferay.portal.kernel.exception.SystemException {
651 return _assetEntryLocalService.getChildEntries(entryId);
652 }
653
654 @Override
655 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
656 long companyId, int start, int end)
657 throws com.liferay.portal.kernel.exception.SystemException {
658 return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
659 }
660
661 @Override
662 public int getCompanyEntriesCount(long companyId)
663 throws com.liferay.portal.kernel.exception.SystemException {
664 return _assetEntryLocalService.getCompanyEntriesCount(companyId);
665 }
666
667 @Override
668 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
669 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
670 throws com.liferay.portal.kernel.exception.SystemException {
671 return _assetEntryLocalService.getEntries(entryQuery);
672 }
673
674 @Override
675 public int getEntriesCount(
676 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
677 throws com.liferay.portal.kernel.exception.SystemException {
678 return _assetEntryLocalService.getEntriesCount(entryQuery);
679 }
680
681 @Override
682 public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
683 throws com.liferay.portal.kernel.exception.PortalException,
684 com.liferay.portal.kernel.exception.SystemException {
685 return _assetEntryLocalService.getEntry(entryId);
686 }
687
688 @Override
689 public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
690 java.lang.String classUuid)
691 throws com.liferay.portal.kernel.exception.PortalException,
692 com.liferay.portal.kernel.exception.SystemException {
693 return _assetEntryLocalService.getEntry(groupId, classUuid);
694 }
695
696 @Override
697 public com.liferay.portlet.asset.model.AssetEntry getEntry(
698 java.lang.String className, long classPK)
699 throws com.liferay.portal.kernel.exception.PortalException,
700 com.liferay.portal.kernel.exception.SystemException {
701 return _assetEntryLocalService.getEntry(className, classPK);
702 }
703
704 @Override
705 public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
706 throws com.liferay.portal.kernel.exception.PortalException,
707 com.liferay.portal.kernel.exception.SystemException {
708 return _assetEntryLocalService.getNextEntry(entryId);
709 }
710
711 @Override
712 public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
713 long entryId)
714 throws com.liferay.portal.kernel.exception.PortalException,
715 com.liferay.portal.kernel.exception.SystemException {
716 return _assetEntryLocalService.getParentEntry(entryId);
717 }
718
719 @Override
720 public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
721 long entryId)
722 throws com.liferay.portal.kernel.exception.PortalException,
723 com.liferay.portal.kernel.exception.SystemException {
724 return _assetEntryLocalService.getPreviousEntry(entryId);
725 }
726
727 @Override
728 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
729 java.lang.String className, boolean asc, int start, int end)
730 throws com.liferay.portal.kernel.exception.SystemException {
731 return _assetEntryLocalService.getTopViewedEntries(className, asc,
732 start, end);
733 }
734
735 @Override
736 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
737 java.lang.String[] className, boolean asc, int start, int end)
738 throws com.liferay.portal.kernel.exception.SystemException {
739 return _assetEntryLocalService.getTopViewedEntries(className, asc,
740 start, end);
741 }
742
743 @Override
744 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
745 long userId, java.lang.String className, long classPK)
746 throws com.liferay.portal.kernel.exception.PortalException,
747 com.liferay.portal.kernel.exception.SystemException {
748 return _assetEntryLocalService.incrementViewCounter(userId, className,
749 classPK);
750 }
751
752 @Override
753 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
754 long userId, java.lang.String className, long classPK, int increment)
755 throws com.liferay.portal.kernel.exception.SystemException {
756 return _assetEntryLocalService.incrementViewCounter(userId, className,
757 classPK, increment);
758 }
759
760 @Override
761 public void reindex(
762 java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
763 throws com.liferay.portal.kernel.exception.PortalException {
764 _assetEntryLocalService.reindex(entries);
765 }
766
767
771 @Override
772 public com.liferay.portal.kernel.search.Hits search(long companyId,
773 long[] groupIds, long userId, java.lang.String className,
774 java.lang.String keywords, int start, int end)
775 throws com.liferay.portal.kernel.exception.SystemException {
776 return _assetEntryLocalService.search(companyId, groupIds, userId,
777 className, keywords, start, end);
778 }
779
780 @Override
781 public com.liferay.portal.kernel.search.Hits search(long companyId,
782 long[] groupIds, long userId, java.lang.String className,
783 java.lang.String keywords, int status, int start, int end)
784 throws com.liferay.portal.kernel.exception.SystemException {
785 return _assetEntryLocalService.search(companyId, groupIds, userId,
786 className, keywords, status, start, end);
787 }
788
789
794 @Override
795 public com.liferay.portal.kernel.search.Hits search(long companyId,
796 long[] groupIds, long userId, java.lang.String className,
797 java.lang.String userName, java.lang.String title,
798 java.lang.String description, java.lang.String assetCategoryIds,
799 java.lang.String assetTagNames, boolean andSearch, int start, int end)
800 throws com.liferay.portal.kernel.exception.SystemException {
801 return _assetEntryLocalService.search(companyId, groupIds, userId,
802 className, userName, title, description, assetCategoryIds,
803 assetTagNames, andSearch, start, end);
804 }
805
806 @Override
807 public com.liferay.portal.kernel.search.Hits search(long companyId,
808 long[] groupIds, long userId, java.lang.String className,
809 java.lang.String userName, java.lang.String title,
810 java.lang.String description, java.lang.String assetCategoryIds,
811 java.lang.String assetTagNames, int status, boolean andSearch,
812 int start, int end)
813 throws com.liferay.portal.kernel.exception.SystemException {
814 return _assetEntryLocalService.search(companyId, groupIds, userId,
815 className, userName, title, description, assetCategoryIds,
816 assetTagNames, status, andSearch, start, end);
817 }
818
819
823 @Override
824 public com.liferay.portal.kernel.search.Hits search(long companyId,
825 long[] groupIds, java.lang.String className, java.lang.String keywords,
826 int start, int end)
827 throws com.liferay.portal.kernel.exception.SystemException {
828 return _assetEntryLocalService.search(companyId, groupIds, className,
829 keywords, start, end);
830 }
831
832 @Override
833 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
834 long groupId, java.util.Date createDate, java.util.Date modifiedDate,
835 java.lang.String className, long classPK, java.lang.String classUuid,
836 long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
837 boolean visible, java.util.Date startDate, java.util.Date endDate,
838 java.util.Date expirationDate, java.lang.String mimeType,
839 java.lang.String title, java.lang.String description,
840 java.lang.String summary, java.lang.String url,
841 java.lang.String layoutUuid, int height, int width,
842 java.lang.Integer priority, boolean sync)
843 throws com.liferay.portal.kernel.exception.PortalException,
844 com.liferay.portal.kernel.exception.SystemException {
845 return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
846 modifiedDate, className, classPK, classUuid, classTypeId,
847 categoryIds, tagNames, visible, startDate, endDate, expirationDate,
848 mimeType, title, description, summary, url, layoutUuid, height,
849 width, priority, sync);
850 }
851
852 @Override
853 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
854 long groupId, java.lang.String className, long classPK,
855 long[] categoryIds, java.lang.String[] tagNames)
856 throws com.liferay.portal.kernel.exception.PortalException,
857 com.liferay.portal.kernel.exception.SystemException {
858 return _assetEntryLocalService.updateEntry(userId, groupId, className,
859 classPK, categoryIds, tagNames);
860 }
861
862
868 @Override
869 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
870 long groupId, java.lang.String className, long classPK,
871 java.lang.String classUuid, long classTypeId, long[] categoryIds,
872 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
873 java.util.Date endDate, java.util.Date publishDate,
874 java.util.Date expirationDate, java.lang.String mimeType,
875 java.lang.String title, java.lang.String description,
876 java.lang.String summary, java.lang.String url,
877 java.lang.String layoutUuid, int height, int width,
878 java.lang.Integer priority, boolean sync)
879 throws com.liferay.portal.kernel.exception.PortalException,
880 com.liferay.portal.kernel.exception.SystemException {
881 return _assetEntryLocalService.updateEntry(userId, groupId, className,
882 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
883 startDate, endDate, publishDate, expirationDate, mimeType, title,
884 description, summary, url, layoutUuid, height, width, priority, sync);
885 }
886
887
893 @Override
894 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
895 long groupId, java.lang.String className, long classPK,
896 java.lang.String classUuid, long classTypeId, long[] categoryIds,
897 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
898 java.util.Date endDate, java.util.Date expirationDate,
899 java.lang.String mimeType, java.lang.String title,
900 java.lang.String description, java.lang.String summary,
901 java.lang.String url, java.lang.String layoutUuid, int height,
902 int width, java.lang.Integer priority, boolean sync)
903 throws com.liferay.portal.kernel.exception.PortalException,
904 com.liferay.portal.kernel.exception.SystemException {
905 return _assetEntryLocalService.updateEntry(userId, groupId, className,
906 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
907 startDate, endDate, expirationDate, mimeType, title, description,
908 summary, url, layoutUuid, height, width, priority, sync);
909 }
910
911 @Override
912 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
913 java.lang.String className, long classPK, java.util.Date publishDate,
914 boolean visible)
915 throws com.liferay.portal.kernel.exception.PortalException,
916 com.liferay.portal.kernel.exception.SystemException {
917 return _assetEntryLocalService.updateEntry(className, classPK,
918 publishDate, visible);
919 }
920
921 @Override
922 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
923 java.lang.String className, long classPK, java.util.Date publishDate,
924 java.util.Date expirationDate, boolean visible)
925 throws com.liferay.portal.kernel.exception.PortalException,
926 com.liferay.portal.kernel.exception.SystemException {
927 return _assetEntryLocalService.updateEntry(className, classPK,
928 publishDate, expirationDate, visible);
929 }
930
931 @Override
932 public com.liferay.portlet.asset.model.AssetEntry updateVisible(
933 java.lang.String className, long classPK, boolean visible)
934 throws com.liferay.portal.kernel.exception.PortalException,
935 com.liferay.portal.kernel.exception.SystemException {
936 return _assetEntryLocalService.updateVisible(className, classPK, visible);
937 }
938
939 @Override
940 public void validate(long groupId, java.lang.String className,
941 long[] categoryIds, java.lang.String[] tagNames)
942 throws com.liferay.portal.kernel.exception.PortalException,
943 com.liferay.portal.kernel.exception.SystemException {
944 _assetEntryLocalService.validate(groupId, className, categoryIds,
945 tagNames);
946 }
947
948
951 public AssetEntryLocalService getWrappedAssetEntryLocalService() {
952 return _assetEntryLocalService;
953 }
954
955
958 public void setWrappedAssetEntryLocalService(
959 AssetEntryLocalService assetEntryLocalService) {
960 _assetEntryLocalService = assetEntryLocalService;
961 }
962
963 @Override
964 public AssetEntryLocalService getWrappedService() {
965 return _assetEntryLocalService;
966 }
967
968 @Override
969 public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
970 _assetEntryLocalService = assetEntryLocalService;
971 }
972
973 private AssetEntryLocalService _assetEntryLocalService;
974 }