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 @Override
037 public void addAssetCategoryAssetEntries(long categoryId,
038 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
039 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
040 AssetEntries);
041 }
042
043 @Override
044 public void addAssetCategoryAssetEntries(long categoryId, long[] entryIds) {
045 _assetEntryLocalService.addAssetCategoryAssetEntries(categoryId,
046 entryIds);
047 }
048
049 @Override
050 public void addAssetCategoryAssetEntry(long categoryId,
051 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
052 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId,
053 assetEntry);
054 }
055
056 @Override
057 public void addAssetCategoryAssetEntry(long categoryId, long entryId) {
058 _assetEntryLocalService.addAssetCategoryAssetEntry(categoryId, entryId);
059 }
060
061
067 @Override
068 public com.liferay.portlet.asset.model.AssetEntry addAssetEntry(
069 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
070 return _assetEntryLocalService.addAssetEntry(assetEntry);
071 }
072
073 @Override
074 public void addAssetTagAssetEntries(long tagId,
075 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
076 _assetEntryLocalService.addAssetTagAssetEntries(tagId, AssetEntries);
077 }
078
079 @Override
080 public void addAssetTagAssetEntries(long tagId, long[] entryIds) {
081 _assetEntryLocalService.addAssetTagAssetEntries(tagId, entryIds);
082 }
083
084 @Override
085 public void addAssetTagAssetEntry(long tagId,
086 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
087 _assetEntryLocalService.addAssetTagAssetEntry(tagId, assetEntry);
088 }
089
090 @Override
091 public void addAssetTagAssetEntry(long tagId, long entryId) {
092 _assetEntryLocalService.addAssetTagAssetEntry(tagId, entryId);
093 }
094
095 @Override
096 public void clearAssetCategoryAssetEntries(long categoryId) {
097 _assetEntryLocalService.clearAssetCategoryAssetEntries(categoryId);
098 }
099
100 @Override
101 public void clearAssetTagAssetEntries(long tagId) {
102 _assetEntryLocalService.clearAssetTagAssetEntries(tagId);
103 }
104
105
111 @Override
112 public com.liferay.portlet.asset.model.AssetEntry createAssetEntry(
113 long entryId) {
114 return _assetEntryLocalService.createAssetEntry(entryId);
115 }
116
117 @Override
118 public void deleteAssetCategoryAssetEntries(long categoryId,
119 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
120 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
121 AssetEntries);
122 }
123
124 @Override
125 public void deleteAssetCategoryAssetEntries(long categoryId, long[] entryIds) {
126 _assetEntryLocalService.deleteAssetCategoryAssetEntries(categoryId,
127 entryIds);
128 }
129
130 @Override
131 public void deleteAssetCategoryAssetEntry(long categoryId,
132 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
133 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
134 assetEntry);
135 }
136
137 @Override
138 public void deleteAssetCategoryAssetEntry(long categoryId, long entryId) {
139 _assetEntryLocalService.deleteAssetCategoryAssetEntry(categoryId,
140 entryId);
141 }
142
143
149 @Override
150 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
151 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
152 return _assetEntryLocalService.deleteAssetEntry(assetEntry);
153 }
154
155
162 @Override
163 public com.liferay.portlet.asset.model.AssetEntry deleteAssetEntry(
164 long entryId)
165 throws com.liferay.portal.kernel.exception.PortalException {
166 return _assetEntryLocalService.deleteAssetEntry(entryId);
167 }
168
169 @Override
170 public void deleteAssetTagAssetEntries(long tagId,
171 java.util.List<com.liferay.portlet.asset.model.AssetEntry> AssetEntries) {
172 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, AssetEntries);
173 }
174
175 @Override
176 public void deleteAssetTagAssetEntries(long tagId, long[] entryIds) {
177 _assetEntryLocalService.deleteAssetTagAssetEntries(tagId, entryIds);
178 }
179
180 @Override
181 public void deleteAssetTagAssetEntry(long tagId,
182 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
183 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, assetEntry);
184 }
185
186 @Override
187 public void deleteAssetTagAssetEntry(long tagId, long entryId) {
188 _assetEntryLocalService.deleteAssetTagAssetEntry(tagId, entryId);
189 }
190
191 @Override
192 public void deleteEntry(java.lang.String className, long classPK)
193 throws com.liferay.portal.kernel.exception.PortalException {
194 _assetEntryLocalService.deleteEntry(className, classPK);
195 }
196
197 @Override
198 public void deleteEntry(com.liferay.portlet.asset.model.AssetEntry entry)
199 throws com.liferay.portal.kernel.exception.PortalException {
200 _assetEntryLocalService.deleteEntry(entry);
201 }
202
203 @Override
204 public void deleteEntry(long entryId)
205 throws com.liferay.portal.kernel.exception.PortalException {
206 _assetEntryLocalService.deleteEntry(entryId);
207 }
208
209 @Override
210 public void deleteGroupEntries(long groupId)
211 throws com.liferay.portal.kernel.exception.PortalException {
212 _assetEntryLocalService.deleteGroupEntries(groupId);
213 }
214
215
218 @Override
219 public com.liferay.portal.model.PersistedModel deletePersistedModel(
220 com.liferay.portal.model.PersistedModel persistedModel)
221 throws com.liferay.portal.kernel.exception.PortalException {
222 return _assetEntryLocalService.deletePersistedModel(persistedModel);
223 }
224
225 @Override
226 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
227 return _assetEntryLocalService.dynamicQuery();
228 }
229
230
236 @Override
237 public <T> java.util.List<T> dynamicQuery(
238 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
239 return _assetEntryLocalService.dynamicQuery(dynamicQuery);
240 }
241
242
254 @Override
255 public <T> java.util.List<T> dynamicQuery(
256 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
257 int end) {
258 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end);
259 }
260
261
274 @Override
275 public <T> java.util.List<T> dynamicQuery(
276 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
277 int end,
278 com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
279 return _assetEntryLocalService.dynamicQuery(dynamicQuery, start, end,
280 orderByComparator);
281 }
282
283
289 @Override
290 public long dynamicQueryCount(
291 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
292 return _assetEntryLocalService.dynamicQueryCount(dynamicQuery);
293 }
294
295
302 @Override
303 public long dynamicQueryCount(
304 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
305 com.liferay.portal.kernel.dao.orm.Projection projection) {
306 return _assetEntryLocalService.dynamicQueryCount(dynamicQuery,
307 projection);
308 }
309
310 @Override
311 public com.liferay.portlet.asset.model.AssetEntry fetchAssetEntry(
312 long entryId) {
313 return _assetEntryLocalService.fetchAssetEntry(entryId);
314 }
315
316 @Override
317 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(
318 java.lang.String className, long classPK) {
319 return _assetEntryLocalService.fetchEntry(className, classPK);
320 }
321
322 @Override
323 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long entryId) {
324 return _assetEntryLocalService.fetchEntry(entryId);
325 }
326
327 @Override
328 public com.liferay.portlet.asset.model.AssetEntry fetchEntry(long groupId,
329 java.lang.String classUuid) {
330 return _assetEntryLocalService.fetchEntry(groupId, classUuid);
331 }
332
333 @Override
334 public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
335 return _assetEntryLocalService.getActionableDynamicQuery();
336 }
337
338 @Override
339 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAncestorEntries(
340 long entryId)
341 throws com.liferay.portal.kernel.exception.PortalException {
342 return _assetEntryLocalService.getAncestorEntries(entryId);
343 }
344
345 @Override
346 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
347 long categoryId) {
348 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId);
349 }
350
351 @Override
352 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
353 long categoryId, int start, int end) {
354 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
355 start, end);
356 }
357
358 @Override
359 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetCategoryAssetEntries(
360 long categoryId, int start, int end,
361 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.asset.model.AssetEntry> orderByComparator) {
362 return _assetEntryLocalService.getAssetCategoryAssetEntries(categoryId,
363 start, end, orderByComparator);
364 }
365
366 @Override
367 public int getAssetCategoryAssetEntriesCount(long categoryId) {
368 return _assetEntryLocalService.getAssetCategoryAssetEntriesCount(categoryId);
369 }
370
371
377 @Override
378 public long[] getAssetCategoryPrimaryKeys(long entryId) {
379 return _assetEntryLocalService.getAssetCategoryPrimaryKeys(entryId);
380 }
381
382
393 @Override
394 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetEntries(
395 int start, int end) {
396 return _assetEntryLocalService.getAssetEntries(start, end);
397 }
398
399
404 @Override
405 public int getAssetEntriesCount() {
406 return _assetEntryLocalService.getAssetEntriesCount();
407 }
408
409
416 @Override
417 public com.liferay.portlet.asset.model.AssetEntry getAssetEntry(
418 long entryId)
419 throws com.liferay.portal.kernel.exception.PortalException {
420 return _assetEntryLocalService.getAssetEntry(entryId);
421 }
422
423 @Override
424 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
425 long tagId) {
426 return _assetEntryLocalService.getAssetTagAssetEntries(tagId);
427 }
428
429 @Override
430 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
431 long tagId, int start, int end) {
432 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start, end);
433 }
434
435 @Override
436 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getAssetTagAssetEntries(
437 long tagId, int start, int end,
438 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.asset.model.AssetEntry> orderByComparator) {
439 return _assetEntryLocalService.getAssetTagAssetEntries(tagId, start,
440 end, orderByComparator);
441 }
442
443 @Override
444 public int getAssetTagAssetEntriesCount(long tagId) {
445 return _assetEntryLocalService.getAssetTagAssetEntriesCount(tagId);
446 }
447
448
454 @Override
455 public long[] getAssetTagPrimaryKeys(long entryId) {
456 return _assetEntryLocalService.getAssetTagPrimaryKeys(entryId);
457 }
458
459
464 @Override
465 public java.lang.String getBeanIdentifier() {
466 return _assetEntryLocalService.getBeanIdentifier();
467 }
468
469 @Override
470 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getChildEntries(
471 long entryId)
472 throws com.liferay.portal.kernel.exception.PortalException {
473 return _assetEntryLocalService.getChildEntries(entryId);
474 }
475
476 @Override
477 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getCompanyEntries(
478 long companyId, int start, int end) {
479 return _assetEntryLocalService.getCompanyEntries(companyId, start, end);
480 }
481
482 @Override
483 public int getCompanyEntriesCount(long companyId) {
484 return _assetEntryLocalService.getCompanyEntriesCount(companyId);
485 }
486
487 @Override
488 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getEntries(
489 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery) {
490 return _assetEntryLocalService.getEntries(entryQuery);
491 }
492
493 @Override
494 public int getEntriesCount(
495 com.liferay.portlet.asset.service.persistence.AssetEntryQuery entryQuery) {
496 return _assetEntryLocalService.getEntriesCount(entryQuery);
497 }
498
499 @Override
500 public com.liferay.portlet.asset.model.AssetEntry getEntry(
501 java.lang.String className, long classPK)
502 throws com.liferay.portal.kernel.exception.PortalException {
503 return _assetEntryLocalService.getEntry(className, classPK);
504 }
505
506 @Override
507 public com.liferay.portlet.asset.model.AssetEntry getEntry(long entryId)
508 throws com.liferay.portal.kernel.exception.PortalException {
509 return _assetEntryLocalService.getEntry(entryId);
510 }
511
512 @Override
513 public com.liferay.portlet.asset.model.AssetEntry getEntry(long groupId,
514 java.lang.String classUuid)
515 throws com.liferay.portal.kernel.exception.PortalException {
516 return _assetEntryLocalService.getEntry(groupId, classUuid);
517 }
518
519 @Override
520 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getGroupEntries(
521 long groupId) {
522 return _assetEntryLocalService.getGroupEntries(groupId);
523 }
524
525 @Override
526 public com.liferay.portlet.asset.model.AssetEntry getNextEntry(long entryId)
527 throws com.liferay.portal.kernel.exception.PortalException {
528 return _assetEntryLocalService.getNextEntry(entryId);
529 }
530
531 @Override
532 public com.liferay.portlet.asset.model.AssetEntry getParentEntry(
533 long entryId)
534 throws com.liferay.portal.kernel.exception.PortalException {
535 return _assetEntryLocalService.getParentEntry(entryId);
536 }
537
538 @Override
539 public com.liferay.portal.model.PersistedModel getPersistedModel(
540 java.io.Serializable primaryKeyObj)
541 throws com.liferay.portal.kernel.exception.PortalException {
542 return _assetEntryLocalService.getPersistedModel(primaryKeyObj);
543 }
544
545 @Override
546 public com.liferay.portlet.asset.model.AssetEntry getPreviousEntry(
547 long entryId)
548 throws com.liferay.portal.kernel.exception.PortalException {
549 return _assetEntryLocalService.getPreviousEntry(entryId);
550 }
551
552 @Override
553 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
554 java.lang.String className, boolean asc, int start, int end) {
555 return _assetEntryLocalService.getTopViewedEntries(className, asc,
556 start, end);
557 }
558
559 @Override
560 public java.util.List<com.liferay.portlet.asset.model.AssetEntry> getTopViewedEntries(
561 java.lang.String[] className, boolean asc, int start, int end) {
562 return _assetEntryLocalService.getTopViewedEntries(className, asc,
563 start, end);
564 }
565
566 @Override
567 public boolean hasAssetCategoryAssetEntries(long categoryId) {
568 return _assetEntryLocalService.hasAssetCategoryAssetEntries(categoryId);
569 }
570
571 @Override
572 public boolean hasAssetCategoryAssetEntry(long categoryId, long entryId) {
573 return _assetEntryLocalService.hasAssetCategoryAssetEntry(categoryId,
574 entryId);
575 }
576
577 @Override
578 public boolean hasAssetTagAssetEntries(long tagId) {
579 return _assetEntryLocalService.hasAssetTagAssetEntries(tagId);
580 }
581
582 @Override
583 public boolean hasAssetTagAssetEntry(long tagId, long entryId) {
584 return _assetEntryLocalService.hasAssetTagAssetEntry(tagId, entryId);
585 }
586
587 @Override
588 public com.liferay.portlet.asset.model.AssetEntry incrementViewCounter(
589 long userId, java.lang.String className, long classPK)
590 throws com.liferay.portal.kernel.exception.PortalException {
591 return _assetEntryLocalService.incrementViewCounter(userId, className,
592 classPK);
593 }
594
595 @Override
596 public void incrementViewCounter(long userId, java.lang.String className,
597 long classPK, int increment) {
598 _assetEntryLocalService.incrementViewCounter(userId, className,
599 classPK, increment);
600 }
601
602 @Override
603 public void reindex(
604 java.util.List<com.liferay.portlet.asset.model.AssetEntry> entries)
605 throws com.liferay.portal.kernel.exception.PortalException {
606 _assetEntryLocalService.reindex(entries);
607 }
608
609
613 @Deprecated
614 @Override
615 public com.liferay.portal.kernel.search.Hits search(long companyId,
616 long[] groupIds, java.lang.String className, java.lang.String keywords,
617 int start, int end) {
618 return _assetEntryLocalService.search(companyId, groupIds, className,
619 keywords, start, end);
620 }
621
622 @Override
623 public com.liferay.portal.kernel.search.Hits search(long companyId,
624 long[] groupIds, long userId, java.lang.String className,
625 long classTypeId, java.lang.String keywords, int status, int start,
626 int end) {
627 return _assetEntryLocalService.search(companyId, groupIds, userId,
628 className, classTypeId, keywords, status, start, end);
629 }
630
631 @Override
632 public com.liferay.portal.kernel.search.Hits search(long companyId,
633 long[] groupIds, long userId, java.lang.String className,
634 long classTypeId, java.lang.String userName, java.lang.String title,
635 java.lang.String description, java.lang.String assetCategoryIds,
636 java.lang.String assetTagNames, int status, boolean andSearch,
637 int start, int end) {
638 return _assetEntryLocalService.search(companyId, groupIds, userId,
639 className, classTypeId, userName, title, description,
640 assetCategoryIds, assetTagNames, status, andSearch, start, end);
641 }
642
643
647 @Deprecated
648 @Override
649 public com.liferay.portal.kernel.search.Hits search(long companyId,
650 long[] groupIds, long userId, java.lang.String className,
651 java.lang.String keywords, int start, int end) {
652 return _assetEntryLocalService.search(companyId, groupIds, userId,
653 className, keywords, start, end);
654 }
655
656 @Override
657 public com.liferay.portal.kernel.search.Hits search(long companyId,
658 long[] groupIds, long userId, java.lang.String className,
659 java.lang.String keywords, int status, int start, int end) {
660 return _assetEntryLocalService.search(companyId, groupIds, userId,
661 className, keywords, status, start, end);
662 }
663
664
669 @Deprecated
670 @Override
671 public com.liferay.portal.kernel.search.Hits search(long companyId,
672 long[] groupIds, long userId, java.lang.String className,
673 java.lang.String userName, java.lang.String title,
674 java.lang.String description, java.lang.String assetCategoryIds,
675 java.lang.String assetTagNames, boolean andSearch, int start, int end) {
676 return _assetEntryLocalService.search(companyId, groupIds, userId,
677 className, userName, title, description, assetCategoryIds,
678 assetTagNames, andSearch, start, end);
679 }
680
681 @Override
682 public com.liferay.portal.kernel.search.Hits search(long companyId,
683 long[] groupIds, long userId, java.lang.String className,
684 java.lang.String userName, java.lang.String title,
685 java.lang.String description, java.lang.String assetCategoryIds,
686 java.lang.String assetTagNames, int status, boolean andSearch,
687 int start, int end) {
688 return _assetEntryLocalService.search(companyId, groupIds, userId,
689 className, userName, title, description, assetCategoryIds,
690 assetTagNames, status, andSearch, start, end);
691 }
692
693 @Override
694 public void setAssetCategoryAssetEntries(long categoryId, long[] entryIds) {
695 _assetEntryLocalService.setAssetCategoryAssetEntries(categoryId,
696 entryIds);
697 }
698
699 @Override
700 public void setAssetTagAssetEntries(long tagId, long[] entryIds) {
701 _assetEntryLocalService.setAssetTagAssetEntries(tagId, entryIds);
702 }
703
704
709 @Override
710 public void setBeanIdentifier(java.lang.String beanIdentifier) {
711 _assetEntryLocalService.setBeanIdentifier(beanIdentifier);
712 }
713
714
720 @Override
721 public com.liferay.portlet.asset.model.AssetEntry updateAssetEntry(
722 com.liferay.portlet.asset.model.AssetEntry assetEntry) {
723 return _assetEntryLocalService.updateAssetEntry(assetEntry);
724 }
725
726 @Override
727 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
728 java.lang.String className, long classPK, java.util.Date publishDate,
729 java.util.Date expirationDate, boolean visible)
730 throws com.liferay.portal.kernel.exception.PortalException {
731 return _assetEntryLocalService.updateEntry(className, classPK,
732 publishDate, expirationDate, visible);
733 }
734
735 @Override
736 public com.liferay.portlet.asset.model.AssetEntry updateEntry(
737 java.lang.String className, long classPK, java.util.Date publishDate,
738 boolean visible)
739 throws com.liferay.portal.kernel.exception.PortalException {
740 return _assetEntryLocalService.updateEntry(className, classPK,
741 publishDate, visible);
742 }
743
744 @Override
745 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
746 long groupId, java.lang.String className, long classPK,
747 long[] categoryIds, java.lang.String[] tagNames)
748 throws com.liferay.portal.kernel.exception.PortalException {
749 return _assetEntryLocalService.updateEntry(userId, groupId, className,
750 classPK, categoryIds, tagNames);
751 }
752
753
759 @Deprecated
760 @Override
761 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
762 long groupId, java.lang.String className, long classPK,
763 java.lang.String classUuid, long classTypeId, long[] categoryIds,
764 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
765 java.util.Date endDate, java.util.Date expirationDate,
766 java.lang.String mimeType, java.lang.String title,
767 java.lang.String description, java.lang.String summary,
768 java.lang.String url, java.lang.String layoutUuid, int height,
769 int width, java.lang.Integer priority, boolean sync)
770 throws com.liferay.portal.kernel.exception.PortalException {
771 return _assetEntryLocalService.updateEntry(userId, groupId, className,
772 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
773 startDate, endDate, expirationDate, mimeType, title, description,
774 summary, url, layoutUuid, height, width, priority, sync);
775 }
776
777
783 @Deprecated
784 @Override
785 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
786 long groupId, java.lang.String className, long classPK,
787 java.lang.String classUuid, long classTypeId, long[] categoryIds,
788 java.lang.String[] tagNames, boolean visible, java.util.Date startDate,
789 java.util.Date endDate, java.util.Date publishDate,
790 java.util.Date expirationDate, java.lang.String mimeType,
791 java.lang.String title, java.lang.String description,
792 java.lang.String summary, java.lang.String url,
793 java.lang.String layoutUuid, int height, int width,
794 java.lang.Integer priority, boolean sync)
795 throws com.liferay.portal.kernel.exception.PortalException {
796 return _assetEntryLocalService.updateEntry(userId, groupId, className,
797 classPK, classUuid, classTypeId, categoryIds, tagNames, visible,
798 startDate, endDate, publishDate, expirationDate, mimeType, title,
799 description, summary, url, layoutUuid, height, width, priority, sync);
800 }
801
802 @Override
803 public com.liferay.portlet.asset.model.AssetEntry updateEntry(long userId,
804 long groupId, java.util.Date createDate, java.util.Date modifiedDate,
805 java.lang.String className, long classPK, java.lang.String classUuid,
806 long classTypeId, long[] categoryIds, java.lang.String[] tagNames,
807 boolean visible, java.util.Date startDate, java.util.Date endDate,
808 java.util.Date expirationDate, java.lang.String mimeType,
809 java.lang.String title, java.lang.String description,
810 java.lang.String summary, java.lang.String url,
811 java.lang.String layoutUuid, int height, int width,
812 java.lang.Integer priority, boolean sync)
813 throws com.liferay.portal.kernel.exception.PortalException {
814 return _assetEntryLocalService.updateEntry(userId, groupId, createDate,
815 modifiedDate, className, classPK, classUuid, classTypeId,
816 categoryIds, tagNames, visible, startDate, endDate, expirationDate,
817 mimeType, title, description, summary, url, layoutUuid, height,
818 width, priority, sync);
819 }
820
821 @Override
822 public com.liferay.portlet.asset.model.AssetEntry updateVisible(
823 java.lang.String className, long classPK, boolean visible)
824 throws com.liferay.portal.kernel.exception.PortalException {
825 return _assetEntryLocalService.updateVisible(className, classPK, visible);
826 }
827
828
832 @Deprecated
833 @Override
834 public void validate(long groupId, java.lang.String className,
835 long[] categoryIds, java.lang.String[] tagNames)
836 throws com.liferay.portal.kernel.exception.PortalException {
837 _assetEntryLocalService.validate(groupId, className, categoryIds,
838 tagNames);
839 }
840
841 @Override
842 public void validate(long groupId, java.lang.String className,
843 long classTypePK, long[] categoryIds, java.lang.String[] tagNames)
844 throws com.liferay.portal.kernel.exception.PortalException {
845 _assetEntryLocalService.validate(groupId, className, classTypePK,
846 categoryIds, tagNames);
847 }
848
849
852 @Deprecated
853 public AssetEntryLocalService getWrappedAssetEntryLocalService() {
854 return _assetEntryLocalService;
855 }
856
857
860 @Deprecated
861 public void setWrappedAssetEntryLocalService(
862 AssetEntryLocalService assetEntryLocalService) {
863 _assetEntryLocalService = assetEntryLocalService;
864 }
865
866 @Override
867 public AssetEntryLocalService getWrappedService() {
868 return _assetEntryLocalService;
869 }
870
871 @Override
872 public void setWrappedService(AssetEntryLocalService assetEntryLocalService) {
873 _assetEntryLocalService = assetEntryLocalService;
874 }
875
876 private AssetEntryLocalService _assetEntryLocalService;
877 }