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
240 public com.liferay.portlet.asset.model.AssetEntry updateAssetEntry(
241 com.liferay.portlet.asset.model.AssetEntry assetEntry, boolean merge)
242 throws com.liferay.portal.kernel.exception.SystemException {
243 return _assetEntryLocalService.updateAssetEntry(assetEntry, merge);
244 }
245
246
249 public void addAssetCategoryAssetEntry(long categoryId, long entryId)
250 throws com.liferay.portal.kernel.exception.SystemException {
251 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId, entryId);
252 }
253
254
257 public void addAssetCategoryAssetEntry(long categoryId,
258 com.liferay.portlet.asset.model.AssetEntry assetEntry)
259 throws com.liferay.portal.kernel.exception.SystemException {
260 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId,
261 assetEntry);
262 }
263
264
267 public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds)
268 throws com.liferay.portal.kernel.exception.SystemException {
269 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
270 entryIds);
271 }
272
273
276 public void addAssetCategoryAssetEntries(long categoryId,
277 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
278 throws com.liferay.portal.kernel.exception.SystemException {
279 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
280 AssetEntries);
281 }
282
283
286 public void clearAssetCategoryAssetEntries(long categoryId)
287 throws com.liferay.portal.kernel.exception.SystemException {
288 _assetEntryLocalService.clearAssetCategoryAssetEntries(categoryId);
289 }
290
291
294 public void deleteAssetCategoryAssetEntry(long categoryId, long entryId)
295 throws com.liferay.portal.kernel.exception.SystemException {
296 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
297 entryId);
298 }
299
300
303 public void deleteAssetCategoryAssetEntry(long categoryId,
304 com.liferay.portlet.asset.model.AssetEntry assetEntry)
305 throws com.liferay.portal.kernel.exception.SystemException {
306 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
307 assetEntry);
308 }
309
310
313 public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds)
314 throws com.liferay.portal.kernel.exception.SystemException {
315 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
316 entryIds);
317 }
318
319
322 public void deleteAssetCategoryAssetEntries(long categoryId,
323 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
324 throws com.liferay.portal.kernel.exception.SystemException {
325 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
326 AssetEntries);
327 }
328
329
332 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
333 long categoryId)
334 throws com.liferay.portal.kernel.exception.SystemException {
335 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId);
336 }
337
338
341 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
342 long categoryId, int start, int end)
343 throws com.liferay.portal.kernel.exception.SystemException {
344 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
345 start, end);
346 }
347
348
351 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
352 long categoryId, int start, int end,
353 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
354 throws com.liferay.portal.kernel.exception.SystemException {
355 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
356 start, end, orderByComparator);
357 }
358
359
362 public int getAssetCategoryAssetEntriesCount(long categoryId)
363 throws com.liferay.portal.kernel.exception.SystemException {
364 return _assetEntryLocalService.getAssetCategoryAssetEntriesCount(categoryId);
365 }
366
367
370 public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId)
371 throws com.liferay.portal.kernel.exception.SystemException {
372 return _assetEntryLocalService.hasAssetCategoryAssetEntry(categoryId,
373 entryId);
374 }
375
376
379 public boolean hasAssetCategoryAssetEntries(long categoryId)
380 throws com.liferay.portal.kernel.exception.SystemException {
381 return _assetEntryLocalService.hasAssetCategoryAssetEntries(categoryId);
382 }
383
384
387 public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds)
388 throws com.liferay.portal.kernel.exception.SystemException {
389 _assetEntryLocalService.setAssetCategoryAssetEntries(categoryId,
390 entryIds);
391 }
392
393
396 public void addAssetTagAssetEntry(long tagId, long entryId)
397 throws com.liferay.portal.kernel.exception.SystemException {
398 _assetEntryLocalService.addAssetTagAssetEntry(tagId, entryId);
399 }
400
401
404 public void addAssetTagAssetEntry(long tagId,
405 com.liferay.portlet.asset.model.AssetEntry assetEntry)
406 throws com.liferay.portal.kernel.exception.SystemException {
407 _assetEntryLocalService.addAssetTagAssetEntry(tagId, assetEntry);
408 }
409
410
413 public void addAssetTagAssetEntries(long tagId, long[] entryIds)
414 throws com.liferay.portal.kernel.exception.SystemException {
415 _assetEntryLocalService.addAssetTagAssetEntries(tagId, entryIds);
416 }
417
418
421 public void addAssetTagAssetEntries(long tagId,
422 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
423 throws com.liferay.portal.kernel.exception.SystemException {
424 _assetEntryLocalService.addAssetTagAssetEntries(tagId, AssetEntries);
425 }
426
427
430 public void clearAssetTagAssetEntries(long tagId)
431 throws com.liferay.portal.kernel.exception.SystemException {
432 _assetEntryLocalService.clearAssetTagAssetEntries(tagId);
433 }
434
435
438 public void deleteAssetTagAssetEntry(long tagId, long entryId)
439 throws com.liferay.portal.kernel.exception.SystemException {
440 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, entryId);
441 }
442
443
446 public void deleteAssetTagAssetEntry(long tagId,
447 com.liferay.portlet.asset.model.AssetEntry assetEntry)
448 throws com.liferay.portal.kernel.exception.SystemException {
449 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, assetEntry);
450 }
451
452
455 public void deleteAssetTagAssetEntries(long tagId, long[] entryIds)
456 throws com.liferay.portal.kernel.exception.SystemException {
457 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, entryIds);
458 }
459
460
463 public void deleteAssetTagAssetEntries(long tagId,
464 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries)
465 throws com.liferay.portal.kernel.exception.SystemException {
466 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, AssetEntries);
467 }
468
469
472 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
473 long tagId) throws com.liferay.portal.kernel.exception.SystemException {
474 return _assetEntryLocalService.getAssetTagAssetEntries(tagId);
475 }
476
477
480 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
481 long tagId, int start, int end)
482 throws com.liferay.portal.kernel.exception.SystemException {
483 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start, end);
484 }
485
486
489 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
490 long tagId, int start, int end,
491 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
492 throws com.liferay.portal.kernel.exception.SystemException {
493 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start,
494 end, orderByComparator);
495 }
496
497
500 public int getAssetTagAssetEntriesCount(long tagId)
501 throws com.liferay.portal.kernel.exception.SystemException {
502 return _assetEntryLocalService.getAssetTagAssetEntriesCount(tagId);
503 }
504
505
508 public boolean hasAssetTagAssetEntry(long tagId, long entryId)
509 throws com.liferay.portal.kernel.exception.SystemException {
510 return _assetEntryLocalService.hasAssetTagAssetEntry(tagId, entryId);
511 }
512
513
516 public boolean hasAssetTagAssetEntries(long tagId)
517 throws com.liferay.portal.kernel.exception.SystemException {
518 return _assetEntryLocalService.hasAssetTagAssetEntries(tagId);
519 }
520
521
524 public void setAssetTagAssetEntries(long tagId, long[] entryIds)
525 throws com.liferay.portal.kernel.exception.SystemException {
526 _assetEntryLocalService.setAssetTagAssetEntries(tagId, entryIds);
527 }
528
529
534 public java.lang.String getBeanIdentifier() {
535 return _assetEntryLocalService.getBeanIdentifier();
536 }
537
538
543 public void setBeanIdentifier(java.lang.String beanIdentifier) {
544 _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
545 }
546
547 public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
548 throws com.liferay.portal.kernel.exception.PortalException,
549 com.liferay.portal.kernel.exception.SystemException {
550 _assetEntryLocalService.deleteEntry(entry);
551 }
552
553 public void deleteEntry(long entryId)
554 throws com.liferay.portal.kernel.exception.PortalException,
555 com.liferay.portal.kernel.exception.SystemException {
556 _assetEntryLocalService.deleteEntry(entryId);
557 }
558
559 public void deleteEntry(java.lang.String className, long classPK)
560 throws com.liferay.portal.kernel.exception.PortalException,
561 com.liferay.portal.kernel.exception.SystemException {
562 _assetEntryLocalService.deleteEntry(className, classPK);
563 }
564
565 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId)
566 throws com.liferay.portal.kernel.exception.SystemException {
567 return _assetEntryLocalService.fetchEntry(entryId);
568 }
569
570 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long groupId,
571 java.lang.String classUuid)
572 throws com.liferay.portal.kernel.exception.SystemException {
573 return _assetEntryLocalService.fetchEntry(groupId, classUuid);
574 }
575
576 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
577 java.lang.String className, long classPK)
578 throws com.liferay.portal.kernel.exception.SystemException {
579 return _assetEntryLocalService.fetchEntry(className, classPK);
580 }
581
582 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
583 long entryId)
584 throws com.liferay.portal.kernel.exception.PortalException,
585 com.liferay.portal.kernel.exception.SystemException {
586 return _assetEntryLocalService.getAncestorEntries(entryId);
587 }
588
589 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
590 long entryId)
591 throws com.liferay.portal.kernel.exception.PortalException,
592 com.liferay.portal.kernel.exception.SystemException {
593 return _assetEntryLocalService.getChildEntries(entryId);
594 }
595
596 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
597 long companyId, int start, int end)
598 throws com.liferay.portal.kernel.exception.SystemException {
599 return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
600 }
601
602 public int getCompanyEntriesCount(long companyId)
603 throws com.liferay.portal.kernel.exception.SystemException {
604 return _assetEntryLocalService.getCompanyEntriesCount(companyId);
605 }
606
607 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
608 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
609 throws com.liferay.portal.kernel.exception.SystemException {
610 return _assetEntryLocalService.getEntries(entryQuery);
611 }
612
613 public int getEntriesCount(
614 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery)
615 throws com.liferay.portal.kernel.exception.SystemException {
616 return _assetEntryLocalService.getEntriesCount(entryQuery);
617 }
618
619 public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
620 throws com.liferay.portal.kernel.exception.PortalException,
621 com.liferay.portal.kernel.exception.SystemException {
622 return _assetEntryLocalService.getEntry(entryId);
623 }
624
625 public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
626 java.lang.String classUuid)
627 throws com.liferay.portal.kernel.exception.PortalException,
628 com.liferay.portal.kernel.exception.SystemException {
629 return _assetEntryLocalService.getEntry(groupId, classUuid);
630 }
631
632 public com.liferay.portlet.asset.model.AssetEntry getEntry(
633 java.lang.String className, long classPK)
634 throws com.liferay.portal.kernel.exception.PortalException,
635 com.liferay.portal.kernel.exception.SystemException {
636 return _assetEntryLocalService.getEntry(className, classPK);
637 }
638
639 public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
640 throws com.liferay.portal.kernel.exception.PortalException,
641 com.liferay.portal.kernel.exception.SystemException {
642 return _assetEntryLocalService.getNextEntry(entryId);
643 }
644
645 public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
646 long entryId)
647 throws com.liferay.portal.kernel.exception.PortalException,
648 com.liferay.portal.kernel.exception.SystemException {
649 return _assetEntryLocalService.getParentEntry(entryId);
650 }
651
652 public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
653 long entryId)
654 throws com.liferay.portal.kernel.exception.PortalException,
655 com.liferay.portal.kernel.exception.SystemException {
656 return _assetEntryLocalService.getPreviousEntry(entryId);
657 }
658
659 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
660 java.lang.String className, boolean asc, int start, int end)
661 throws com.liferay.portal.kernel.exception.SystemException {
662 return _assetEntryLocalService.getTopViewedEntries(className, asc,
663 start, end);
664 }
665
666 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
667 java.lang.String[] className, boolean asc, int start, int end)
668 throws com.liferay.portal.kernel.exception.SystemException {
669 return _assetEntryLocalService.getTopViewedEntries(className, asc,
670 start, end);
671 }
672
673 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
674 long userId, java.lang.String className, long classPK)
675 throws com.liferay.portal.kernel.exception.PortalException,
676 com.liferay.portal.kernel.exception.SystemException {
677 return _assetEntryLocalService.incrementViewCounter(userId, className,
678 classPK);
679 }
680
681 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
682 long userId, java.lang.String className, long classPK, int increment)
683 throws com.liferay.portal.kernel.exception.SystemException {
684 return _assetEntryLocalService.incrementViewCounter(userId, className,
685 classPK, increment);
686 }
687
688 public void reindex(
689 java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
690 throws com.liferay.portal.kernel.exception.PortalException {
691 _assetEntryLocalService.reindex(entries);
692 }
693
694
698 public com.liferay.portal.kernel.search.Hits search(long companyId,
699 long[] groupIds, long userId, java.lang.String className,
700 java.lang.String keywords, int start, int end)
701 throws com.liferay.portal.kernel.exception.SystemException {
702 return _assetEntryLocalService.search(companyId, groupIds, userId,
703 className, keywords, start, end);
704 }
705
706 public com.liferay.portal.kernel.search.Hits search(long companyId,
707 long[] groupIds, long userId, java.lang.String className,
708 java.lang.String keywords, int status, int start, int end)
709 throws com.liferay.portal.kernel.exception.SystemException {
710 return _assetEntryLocalService.search(companyId, groupIds, userId,
711 className, keywords, status, start, end);
712 }
713
714
718 public com.liferay.portal.kernel.search.Hits search(long companyId,
719 long[] groupIds, long userId, java.lang.String className,
720 java.lang.String userName, java.lang.String title,
721 java.lang.String description, java.lang.String assetCategoryIds,
722 java.lang.String assetTagNames, boolean andSearch, int start, int end)
723 throws com.liferay.portal.kernel.exception.SystemException {
724 return _assetEntryLocalService.search(companyId, groupIds, userId,
725 className, userName, title, description, assetCategoryIds,
726 assetTagNames, andSearch, start, end);
727 }
728
729 public com.liferay.portal.kernel.search.Hits search(long companyId,
730 long[] groupIds, long userId, java.lang.String className,
731 java.lang.String userName, java.lang.String title,
732 java.lang.String description, java.lang.String assetCategoryIds,
733 java.lang.String assetTagNames, int status, boolean andSearch,
734 int start, int end)
735 throws com.liferay.portal.kernel.exception.SystemException {
736 return _assetEntryLocalService.search(companyId, groupIds, userId,
737 className, userName, title, description, assetCategoryIds,
738 assetTagNames, status, andSearch, start, end);
739 }
740
741
745 public com.liferay.portal.kernel.search.Hits search(long companyId,
746 long[] groupIds, java.lang.String className, java.lang.String keywords,
747 int start, int end)
748 throws com.liferay.portal.kernel.exception.SystemException {
749 return _assetEntryLocalService.search(companyId, groupIds, className,
750 keywords, start, end);
751 }
752
753 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
754 long groupId, java.util.Date createDate, java.util.Date modifiedDate,
755 java.lang.String className, long classPK, java.lang.String classUuid,
756 long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
757 boolean visible, java.util.Date startDate, java.util.Date endDate,
758 java.util.Date publishDate, java.util.Date expirationDate,
759 java.lang.String mimeType, java.lang.String title,
760 java.lang.String description, java.lang.String summary,
761 java.lang.String url, java.lang.String layoutUuid, int height,
762 int width, java.lang.Integer priority, boolean sync)
763 throws com.liferay.portal.kernel.exception.PortalException,
764 com.liferay.portal.kernel.exception.SystemException {
765 return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
766 modifiedDate, className, classPK, classUuid, classTypeId,
767 categoryIds, tagNames, visible, startDate, endDate, publishDate,
768 expirationDate, mimeType, title, description, summary, url,
769 layoutUuid, height, width, priority, sync);
770 }
771
772 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
773 long groupId, java.lang.String className, long classPK,
774 long[] categoryIds, java.lang.String[] tagNames)
775 throws com.liferay.portal.kernel.exception.PortalException,
776 com.liferay.portal.kernel.exception.SystemException {
777 return _assetEntryLocalService.updateEntry(userId, groupId, className,
778 classPK, categoryIds, tagNames);
779 }
780
781
787 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
788 long groupId, java.lang.String className, long classPK,
789 java.lang.String classUuid, long classTypeId, long[] categoryIds,
790 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
791 java.util.Date endDate, java.util.Date publishDate,
792 java.util.Date expirationDate, java.lang.String mimeType,
793 java.lang.String title, java.lang.String description,
794 java.lang.String summary, java.lang.String url,
795 java.lang.String layoutUuid, int height, int width,
796 java.lang.Integer priority, boolean sync)
797 throws com.liferay.portal.kernel.exception.PortalException,
798 com.liferay.portal.kernel.exception.SystemException {
799 return _assetEntryLocalService.updateEntry(userId, groupId, className,
800 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
801 startDate, endDate, publishDate, expirationDate, mimeType, title,
802 description, summary, url, layoutUuid, height, width, priority, sync);
803 }
804
805 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
806 java.lang.String className, long classPK, java.util.Date publishDate,
807 java.util.Date expirationDate, boolean visible)
808 throws com.liferay.portal.kernel.exception.PortalException,
809 com.liferay.portal.kernel.exception.SystemException {
810 return _assetEntryLocalService.updateEntry(className, classPK,
811 publishDate, expirationDate, visible);
812 }
813
814 public com.liferay.portlet.asset.model.AssetEntry updateVisible(
815 java.lang.String className, long classPK, boolean visible)
816 throws com.liferay.portal.kernel.exception.PortalException,
817 com.liferay.portal.kernel.exception.SystemException {
818 return _assetEntryLocalService.updateVisible(className, classPK, visible);
819 }
820
821 public void validate(long groupId, java.lang.String className,
822 long[] categoryIds, java.lang.String[] tagNames)
823 throws com.liferay.portal.kernel.exception.PortalException,
824 com.liferay.portal.kernel.exception.SystemException {
825 _assetEntryLocalService.validate(groupId, className, categoryIds,
826 tagNames);
827 }
828
829
832 public AssetEntryLocalService getWrappedAssetEntryLocalService() {
833 return _assetEntryLocalService;
834 }
835
836
839 public void setWrappedAssetEntryLocalService(
840 AssetEntryLocalService assetEntryLocalService) {
841 _assetEntryLocalService = assetEntryLocalService;
842 }
843
844 public AssetEntryLocalService getWrappedService() {
845 return _assetEntryLocalService;
846 }
847
848 public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
849 _assetEntryLocalService = assetEntryLocalService;
850 }
851
852 private AssetEntryLocalService _assetEntryLocalService;
853 }