001
014
015 package com.liferay.portlet.asset.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.service.ServiceWrapper;
020
021
028 @ProviderType
029 public class AssetEntryLocalServiceWrapper implements AssetEntryLocalService,
030 ServiceWrapper<AssetEntryLocalService> {
031 public AssetEntryLocalServiceWrapper(
032 AssetEntryLocalService assetEntryLocalService) {
033 _assetEntryLocalService = assetEntryLocalService;
034 }
035
036
043 @Override
044 public com.liferay.portlet.asset.model.AssetEntry addAssetEntry(
045 com.liferay.portlet.asset.model.AssetEntry assetEntry)
046 throws com.liferay.portal.kernel.exception.SystemException {
047 return _assetEntryLocalService.addAssetEntry(assetEntry);
048 }
049
050
056 @Override
057 public com.liferay.portlet.asset.model.AssetEntry createAssetEntry(
058 long entryId) {
059 return _assetEntryLocalService.createAssetEntry(entryId);
060 }
061
062
070 @Override
071 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
072 long entryId)
073 throws com.liferay.portal.kernel.exception.PortalException,
074 com.liferay.portal.kernel.exception.SystemException {
075 return _assetEntryLocalService.deleteAssetEntry(entryId);
076 }
077
078
085 @Override
086 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
087 com.liferay.portlet.asset.model.AssetEntry assetEntry)
088 throws com.liferay.portal.kernel.exception.SystemException {
089 return _assetEntryLocalService.deleteAssetEntry(assetEntry);
090 }
091
092 @Override
093 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
094 return _assetEntryLocalService.dynamicQuery();
095 }
096
097
104 @Override
105 @SuppressWarnings("rawtypes")
106 public java.util.List dynamicQuery(
107 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
108 throws com.liferay.portal.kernel.exception.SystemException {
109 return _assetEntryLocalService.dynamicQuery(dynamicQuery);
110 }
111
112
125 @Override
126 @SuppressWarnings("rawtypes")
127 public java.util.List dynamicQuery(
128 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
129 int end) throws com.liferay.portal.kernel.exception.SystemException {
130 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end);
131 }
132
133
147 @Override
148 @SuppressWarnings("rawtypes")
149 public java.util.List dynamicQuery(
150 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
151 int end,
152 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
153 throws com.liferay.portal.kernel.exception.SystemException {
154 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end,
155 orderByComparator);
156 }
157
158
165 @Override
166 public long dynamicQueryCount(
167 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
168 throws com.liferay.portal.kernel.exception.SystemException {
169 return _assetEntryLocalService.dynamicQueryCount(dynamicQuery);
170 }
171
172
180 @Override
181 public long dynamicQueryCount(
182 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
183 com.liferay.portal.kernel.dao.orm.Projection projection)
184 throws com.liferay.portal.kernel.exception.SystemException {
185 return _assetEntryLocalService.dynamicQueryCount(dynamicQuery,
186 projection);
187 }
188
189 @Override
190 public com.liferay.portlet.asset.model.AssetEntry fetchAssetEntry(
191 long entryId)
192 throws com.liferay.portal.kernel.exception.SystemException {
193 return _assetEntryLocalService.fetchAssetEntry(entryId);
194 }
195
196
204 @Override
205 public com.liferay.portlet.asset.model.AssetEntry getAssetEntry(
206 long entryId)
207 throws com.liferay.portal.kernel.exception.PortalException,
208 com.liferay.portal.kernel.exception.SystemException {
209 return _assetEntryLocalService.getAssetEntry(entryId);
210 }
211
212 @Override
213 public com.liferay.portal.model.PersistedModel getPersistedModel(
214 java.io.Serializable primaryKeyObj)
215 throws com.liferay.portal.kernel.exception.PortalException,
216 com.liferay.portal.kernel.exception.SystemException {
217 return _assetEntryLocalService.getPersistedModel(primaryKeyObj);
218 }
219
220
232 @Override
233 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetEntries(
234 int start, int end)
235 throws com.liferay.portal.kernel.exception.SystemException {
236 return _assetEntryLocalService.getAssetEntries(start, end);
237 }
238
239
245 @Override
246 public int getAssetEntriesCount()
247 throws com.liferay.portal.kernel.exception.SystemException {
248 return _assetEntryLocalService.getAssetEntriesCount();
249 }
250
251
258 @Override
259 public com.liferay.portlet.asset.model.AssetEntry updateAssetEntry(
260 com.liferay.portlet.asset.model.AssetEntry assetEntry)
261 throws com.liferay.portal.kernel.exception.SystemException {
262 return _assetEntryLocalService.updateAssetEntry(assetEntry);
263 }
264
265
268 @Override
269 public void addAssetCategoryAssetEntry(long categoryId, long entryId)
270 throws com.liferay.portal.kernel.exception.SystemException {
271 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId, entryId);
272 }
273
274
277 @Override
278 public void addAssetCategoryAssetEntry(long categoryId,
279 com.liferay.portlet.asset.model.AssetEntry assetEntry)
280 throws com.liferay.portal.kernel.exception.SystemException {
281 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId,
282 assetEntry);
283 }
284
285
288 @Override
289 public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds)
290 throws com.liferay.portal.kernel.exception.SystemException {
291 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
292 entryIds);
293 }
294
295
298 @Override
299 public void addAssetCategoryAssetEntries(long categoryId,
300 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
301 throws com.liferay.portal.kernel.exception.SystemException {
302 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
303 AssetEntries);
304 }
305
306
309 @Override
310 public void clearAssetCategoryAssetEntries(long categoryId)
311 throws com.liferay.portal.kernel.exception.SystemException {
312 _assetEntryLocalService.clearAssetCategoryAssetEntries(categoryId);
313 }
314
315
318 @Override
319 public void deleteAssetCategoryAssetEntry(long categoryId, long entryId)
320 throws com.liferay.portal.kernel.exception.SystemException {
321 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
322 entryId);
323 }
324
325
328 @Override
329 public void deleteAssetCategoryAssetEntry(long categoryId,
330 com.liferay.portlet.asset.model.AssetEntry assetEntry)
331 throws com.liferay.portal.kernel.exception.SystemException {
332 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
333 assetEntry);
334 }
335
336
339 @Override
340 public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds)
341 throws com.liferay.portal.kernel.exception.SystemException {
342 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
343 entryIds);
344 }
345
346
349 @Override
350 public void deleteAssetCategoryAssetEntries(long categoryId,
351 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
352 throws com.liferay.portal.kernel.exception.SystemException {
353 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
354 AssetEntries);
355 }
356
357
360 @Override
361 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
362 long categoryId)
363 throws com.liferay.portal.kernel.exception.SystemException {
364 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId);
365 }
366
367
370 @Override
371 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
372 long categoryId, int start, int end)
373 throws com.liferay.portal.kernel.exception.SystemException {
374 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
375 start, end);
376 }
377
378
381 @Override
382 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
383 long categoryId, int start, int end,
384 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
385 throws com.liferay.portal.kernel.exception.SystemException {
386 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
387 start, end, orderByComparator);
388 }
389
390
393 @Override
394 public int getAssetCategoryAssetEntriesCount(long categoryId)
395 throws com.liferay.portal.kernel.exception.SystemException {
396 return _assetEntryLocalService.getAssetCategoryAssetEntriesCount(categoryId);
397 }
398
399
402 @Override
403 public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId)
404 throws com.liferay.portal.kernel.exception.SystemException {
405 return _assetEntryLocalService.hasAssetCategoryAssetEntry(categoryId,
406 entryId);
407 }
408
409
412 @Override
413 public boolean hasAssetCategoryAssetEntries(long categoryId)
414 throws com.liferay.portal.kernel.exception.SystemException {
415 return _assetEntryLocalService.hasAssetCategoryAssetEntries(categoryId);
416 }
417
418
421 @Override
422 public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds)
423 throws com.liferay.portal.kernel.exception.SystemException {
424 _assetEntryLocalService.setAssetCategoryAssetEntries(categoryId,
425 entryIds);
426 }
427
428
431 @Override
432 public void addAssetTagAssetEntry(long tagId, long entryId)
433 throws com.liferay.portal.kernel.exception.SystemException {
434 _assetEntryLocalService.addAssetTagAssetEntry(tagId, entryId);
435 }
436
437
440 @Override
441 public void addAssetTagAssetEntry(long tagId,
442 com.liferay.portlet.asset.model.AssetEntry assetEntry)
443 throws com.liferay.portal.kernel.exception.SystemException {
444 _assetEntryLocalService.addAssetTagAssetEntry(tagId, assetEntry);
445 }
446
447
450 @Override
451 public void addAssetTagAssetEntries(long tagId, long[] entryIds)
452 throws com.liferay.portal.kernel.exception.SystemException {
453 _assetEntryLocalService.addAssetTagAssetEntries(tagId, entryIds);
454 }
455
456
459 @Override
460 public void addAssetTagAssetEntries(long tagId,
461 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
462 throws com.liferay.portal.kernel.exception.SystemException {
463 _assetEntryLocalService.addAssetTagAssetEntries(tagId, AssetEntries);
464 }
465
466
469 @Override
470 public void clearAssetTagAssetEntries(long tagId)
471 throws com.liferay.portal.kernel.exception.SystemException {
472 _assetEntryLocalService.clearAssetTagAssetEntries(tagId);
473 }
474
475
478 @Override
479 public void deleteAssetTagAssetEntry(long tagId, long entryId)
480 throws com.liferay.portal.kernel.exception.SystemException {
481 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, entryId);
482 }
483
484
487 @Override
488 public void deleteAssetTagAssetEntry(long tagId,
489 com.liferay.portlet.asset.model.AssetEntry assetEntry)
490 throws com.liferay.portal.kernel.exception.SystemException {
491 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, assetEntry);
492 }
493
494
497 @Override
498 public void deleteAssetTagAssetEntries(long tagId, long[] entryIds)
499 throws com.liferay.portal.kernel.exception.SystemException {
500 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, entryIds);
501 }
502
503
506 @Override
507 public void deleteAssetTagAssetEntries(long tagId,
508 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
509 throws com.liferay.portal.kernel.exception.SystemException {
510 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, AssetEntries);
511 }
512
513
516 @Override
517 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
518 long tagId) throws com.liferay.portal.kernel.exception.SystemException {
519 return _assetEntryLocalService.getAssetTagAssetEntries(tagId);
520 }
521
522
525 @Override
526 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
527 long tagId, int start, int end)
528 throws com.liferay.portal.kernel.exception.SystemException {
529 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start, end);
530 }
531
532
535 @Override
536 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
537 long tagId, int start, int end,
538 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
539 throws com.liferay.portal.kernel.exception.SystemException {
540 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start,
541 end, orderByComparator);
542 }
543
544
547 @Override
548 public int getAssetTagAssetEntriesCount(long tagId)
549 throws com.liferay.portal.kernel.exception.SystemException {
550 return _assetEntryLocalService.getAssetTagAssetEntriesCount(tagId);
551 }
552
553
556 @Override
557 public boolean hasAssetTagAssetEntry(long tagId, long entryId)
558 throws com.liferay.portal.kernel.exception.SystemException {
559 return _assetEntryLocalService.hasAssetTagAssetEntry(tagId, entryId);
560 }
561
562
565 @Override
566 public boolean hasAssetTagAssetEntries(long tagId)
567 throws com.liferay.portal.kernel.exception.SystemException {
568 return _assetEntryLocalService.hasAssetTagAssetEntries(tagId);
569 }
570
571
574 @Override
575 public void setAssetTagAssetEntries(long tagId, long[] entryIds)
576 throws com.liferay.portal.kernel.exception.SystemException {
577 _assetEntryLocalService.setAssetTagAssetEntries(tagId, entryIds);
578 }
579
580
585 @Override
586 public java.lang.String getBeanIdentifier() {
587 return _assetEntryLocalService.getBeanIdentifier();
588 }
589
590
595 @Override
596 public void setBeanIdentifier(java.lang.String beanIdentifier) {
597 _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
598 }
599
600 @Override
601 public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
602 throws com.liferay.portal.kernel.exception.PortalException,
603 com.liferay.portal.kernel.exception.SystemException {
604 _assetEntryLocalService.deleteEntry(entry);
605 }
606
607 @Override
608 public void deleteEntry(long entryId)
609 throws com.liferay.portal.kernel.exception.PortalException,
610 com.liferay.portal.kernel.exception.SystemException {
611 _assetEntryLocalService.deleteEntry(entryId);
612 }
613
614 @Override
615 public void deleteEntry(java.lang.String className, long classPK)
616 throws com.liferay.portal.kernel.exception.PortalException,
617 com.liferay.portal.kernel.exception.SystemException {
618 _assetEntryLocalService.deleteEntry(className, classPK);
619 }
620
621 @Override
622 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId)
623 throws com.liferay.portal.kernel.exception.SystemException {
624 return _assetEntryLocalService.fetchEntry(entryId);
625 }
626
627 @Override
628 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long groupId,
629 java.lang.String classUuid)
630 throws com.liferay.portal.kernel.exception.SystemException {
631 return _assetEntryLocalService.fetchEntry(groupId, classUuid);
632 }
633
634 @Override
635 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
636 java.lang.String className, long classPK)
637 throws com.liferay.portal.kernel.exception.SystemException {
638 return _assetEntryLocalService.fetchEntry(className, classPK);
639 }
640
641 @Override
642 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
643 long entryId)
644 throws com.liferay.portal.kernel.exception.PortalException,
645 com.liferay.portal.kernel.exception.SystemException {
646 return _assetEntryLocalService.getAncestorEntries(entryId);
647 }
648
649 @Override
650 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
651 long entryId)
652 throws com.liferay.portal.kernel.exception.PortalException,
653 com.liferay.portal.kernel.exception.SystemException {
654 return _assetEntryLocalService.getChildEntries(entryId);
655 }
656
657 @Override
658 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
659 long companyId, int start, int end)
660 throws com.liferay.portal.kernel.exception.SystemException {
661 return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
662 }
663
664 @Override
665 public int getCompanyEntriesCount(long companyId)
666 throws com.liferay.portal.kernel.exception.SystemException {
667 return _assetEntryLocalService.getCompanyEntriesCount(companyId);
668 }
669
670 @Override
671 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
672 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
673 throws com.liferay.portal.kernel.exception.SystemException {
674 return _assetEntryLocalService.getEntries(entryQuery);
675 }
676
677 @Override
678 public int getEntriesCount(
679 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
680 throws com.liferay.portal.kernel.exception.SystemException {
681 return _assetEntryLocalService.getEntriesCount(entryQuery);
682 }
683
684 @Override
685 public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
686 throws com.liferay.portal.kernel.exception.PortalException,
687 com.liferay.portal.kernel.exception.SystemException {
688 return _assetEntryLocalService.getEntry(entryId);
689 }
690
691 @Override
692 public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
693 java.lang.String classUuid)
694 throws com.liferay.portal.kernel.exception.PortalException,
695 com.liferay.portal.kernel.exception.SystemException {
696 return _assetEntryLocalService.getEntry(groupId, classUuid);
697 }
698
699 @Override
700 public com.liferay.portlet.asset.model.AssetEntry getEntry(
701 java.lang.String className, long classPK)
702 throws com.liferay.portal.kernel.exception.PortalException,
703 com.liferay.portal.kernel.exception.SystemException {
704 return _assetEntryLocalService.getEntry(className, classPK);
705 }
706
707 @Override
708 public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
709 throws com.liferay.portal.kernel.exception.PortalException,
710 com.liferay.portal.kernel.exception.SystemException {
711 return _assetEntryLocalService.getNextEntry(entryId);
712 }
713
714 @Override
715 public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
716 long entryId)
717 throws com.liferay.portal.kernel.exception.PortalException,
718 com.liferay.portal.kernel.exception.SystemException {
719 return _assetEntryLocalService.getParentEntry(entryId);
720 }
721
722 @Override
723 public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
724 long entryId)
725 throws com.liferay.portal.kernel.exception.PortalException,
726 com.liferay.portal.kernel.exception.SystemException {
727 return _assetEntryLocalService.getPreviousEntry(entryId);
728 }
729
730 @Override
731 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
732 java.lang.String className, boolean asc, int start, int end)
733 throws com.liferay.portal.kernel.exception.SystemException {
734 return _assetEntryLocalService.getTopViewedEntries(className, asc,
735 start, end);
736 }
737
738 @Override
739 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
740 java.lang.String[] className, boolean asc, int start, int end)
741 throws com.liferay.portal.kernel.exception.SystemException {
742 return _assetEntryLocalService.getTopViewedEntries(className, asc,
743 start, end);
744 }
745
746 @Override
747 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
748 long userId, java.lang.String className, long classPK)
749 throws com.liferay.portal.kernel.exception.PortalException,
750 com.liferay.portal.kernel.exception.SystemException {
751 return _assetEntryLocalService.incrementViewCounter(userId, className,
752 classPK);
753 }
754
755 @Override
756 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
757 long userId, java.lang.String className, long classPK, int increment)
758 throws com.liferay.portal.kernel.exception.SystemException {
759 return _assetEntryLocalService.incrementViewCounter(userId, className,
760 classPK, increment);
761 }
762
763 @Override
764 public void reindex(
765 java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
766 throws com.liferay.portal.kernel.exception.PortalException {
767 _assetEntryLocalService.reindex(entries);
768 }
769
770
774 @Override
775 public com.liferay.portal.kernel.search.Hits search(long companyId,
776 long[] groupIds, long userId, java.lang.String className,
777 java.lang.String keywords, int start, int end)
778 throws com.liferay.portal.kernel.exception.SystemException {
779 return _assetEntryLocalService.search(companyId, groupIds, userId,
780 className, keywords, start, end);
781 }
782
783 @Override
784 public com.liferay.portal.kernel.search.Hits search(long companyId,
785 long[] groupIds, long userId, java.lang.String className,
786 java.lang.String keywords, int status, int start, int end)
787 throws com.liferay.portal.kernel.exception.SystemException {
788 return _assetEntryLocalService.search(companyId, groupIds, userId,
789 className, keywords, status, start, end);
790 }
791
792
797 @Override
798 public com.liferay.portal.kernel.search.Hits search(long companyId,
799 long[] groupIds, long userId, java.lang.String className,
800 java.lang.String userName, java.lang.String title,
801 java.lang.String description, java.lang.String assetCategoryIds,
802 java.lang.String assetTagNames, boolean andSearch, int start, int end)
803 throws com.liferay.portal.kernel.exception.SystemException {
804 return _assetEntryLocalService.search(companyId, groupIds, userId,
805 className, userName, title, description, assetCategoryIds,
806 assetTagNames, andSearch, start, end);
807 }
808
809 @Override
810 public com.liferay.portal.kernel.search.Hits search(long companyId,
811 long[] groupIds, long userId, java.lang.String className,
812 java.lang.String userName, java.lang.String title,
813 java.lang.String description, java.lang.String assetCategoryIds,
814 java.lang.String assetTagNames, int status, boolean andSearch,
815 int start, int end)
816 throws com.liferay.portal.kernel.exception.SystemException {
817 return _assetEntryLocalService.search(companyId, groupIds, userId,
818 className, userName, title, description, assetCategoryIds,
819 assetTagNames, status, andSearch, start, end);
820 }
821
822
826 @Override
827 public com.liferay.portal.kernel.search.Hits search(long companyId,
828 long[] groupIds, java.lang.String className, java.lang.String keywords,
829 int start, int end)
830 throws com.liferay.portal.kernel.exception.SystemException {
831 return _assetEntryLocalService.search(companyId, groupIds, className,
832 keywords, start, end);
833 }
834
835 @Override
836 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
837 long groupId, java.util.Date createDate, java.util.Date modifiedDate,
838 java.lang.String className, long classPK, java.lang.String classUuid,
839 long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
840 boolean visible, java.util.Date startDate, java.util.Date endDate,
841 java.util.Date expirationDate, java.lang.String mimeType,
842 java.lang.String title, java.lang.String description,
843 java.lang.String summary, java.lang.String url,
844 java.lang.String layoutUuid, int height, int width,
845 java.lang.Integer priority, boolean sync)
846 throws com.liferay.portal.kernel.exception.PortalException,
847 com.liferay.portal.kernel.exception.SystemException {
848 return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
849 modifiedDate, className, classPK, classUuid, classTypeId,
850 categoryIds, tagNames, visible, startDate, endDate, expirationDate,
851 mimeType, title, description, summary, url, layoutUuid, height,
852 width, priority, sync);
853 }
854
855 @Override
856 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
857 long groupId, java.lang.String className, long classPK,
858 long[] categoryIds, java.lang.String[] tagNames)
859 throws com.liferay.portal.kernel.exception.PortalException,
860 com.liferay.portal.kernel.exception.SystemException {
861 return _assetEntryLocalService.updateEntry(userId, groupId, className,
862 classPK, categoryIds, tagNames);
863 }
864
865
871 @Override
872 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
873 long groupId, java.lang.String className, long classPK,
874 java.lang.String classUuid, long classTypeId, long[] categoryIds,
875 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
876 java.util.Date endDate, java.util.Date publishDate,
877 java.util.Date expirationDate, java.lang.String mimeType,
878 java.lang.String title, java.lang.String description,
879 java.lang.String summary, java.lang.String url,
880 java.lang.String layoutUuid, int height, int width,
881 java.lang.Integer priority, boolean sync)
882 throws com.liferay.portal.kernel.exception.PortalException,
883 com.liferay.portal.kernel.exception.SystemException {
884 return _assetEntryLocalService.updateEntry(userId, groupId, className,
885 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
886 startDate, endDate, publishDate, expirationDate, mimeType, title,
887 description, summary, url, layoutUuid, height, width, priority, sync);
888 }
889
890
896 @Override
897 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
898 long groupId, java.lang.String className, long classPK,
899 java.lang.String classUuid, long classTypeId, long[] categoryIds,
900 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
901 java.util.Date endDate, java.util.Date expirationDate,
902 java.lang.String mimeType, java.lang.String title,
903 java.lang.String description, java.lang.String summary,
904 java.lang.String url, java.lang.String layoutUuid, int height,
905 int width, java.lang.Integer priority, boolean sync)
906 throws com.liferay.portal.kernel.exception.PortalException,
907 com.liferay.portal.kernel.exception.SystemException {
908 return _assetEntryLocalService.updateEntry(userId, groupId, className,
909 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
910 startDate, endDate, expirationDate, mimeType, title, description,
911 summary, url, layoutUuid, height, width, priority, sync);
912 }
913
914 @Override
915 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
916 java.lang.String className, long classPK, java.util.Date publishDate,
917 boolean visible)
918 throws com.liferay.portal.kernel.exception.PortalException,
919 com.liferay.portal.kernel.exception.SystemException {
920 return _assetEntryLocalService.updateEntry(className, classPK,
921 publishDate, visible);
922 }
923
924 @Override
925 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
926 java.lang.String className, long classPK, java.util.Date publishDate,
927 java.util.Date expirationDate, boolean visible)
928 throws com.liferay.portal.kernel.exception.PortalException,
929 com.liferay.portal.kernel.exception.SystemException {
930 return _assetEntryLocalService.updateEntry(className, classPK,
931 publishDate, expirationDate, visible);
932 }
933
934 @Override
935 public com.liferay.portlet.asset.model.AssetEntry updateVisible(
936 java.lang.String className, long classPK, boolean visible)
937 throws com.liferay.portal.kernel.exception.PortalException,
938 com.liferay.portal.kernel.exception.SystemException {
939 return _assetEntryLocalService.updateVisible(className, classPK, visible);
940 }
941
942 @Override
943 public void validate(long groupId, java.lang.String className,
944 long[] categoryIds, java.lang.String[] tagNames)
945 throws com.liferay.portal.kernel.exception.PortalException,
946 com.liferay.portal.kernel.exception.SystemException {
947 _assetEntryLocalService.validate(groupId, className, categoryIds,
948 tagNames);
949 }
950
951
954 public AssetEntryLocalService getWrappedAssetEntryLocalService() {
955 return _assetEntryLocalService;
956 }
957
958
961 public void setWrappedAssetEntryLocalService(
962 AssetEntryLocalService assetEntryLocalService) {
963 _assetEntryLocalService = assetEntryLocalService;
964 }
965
966 @Override
967 public AssetEntryLocalService getWrappedService() {
968 return _assetEntryLocalService;
969 }
970
971 @Override
972 public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
973 _assetEntryLocalService = assetEntryLocalService;
974 }
975
976 private AssetEntryLocalService _assetEntryLocalService;
977 }