001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class AssetTagLocalServiceWrapper implements AssetTagLocalService,
029 ServiceWrapper<AssetTagLocalService> {
030 public AssetTagLocalServiceWrapper(
031 AssetTagLocalService assetTagLocalService) {
032 _assetTagLocalService = assetTagLocalService;
033 }
034
035
042 public com.liferay.portlet.asset.model.AssetTag addAssetTag(
043 com.liferay.portlet.asset.model.AssetTag assetTag)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _assetTagLocalService.addAssetTag(assetTag);
046 }
047
048
054 public com.liferay.portlet.asset.model.AssetTag createAssetTag(long tagId) {
055 return _assetTagLocalService.createAssetTag(tagId);
056 }
057
058
066 public com.liferay.portlet.asset.model.AssetTag deleteAssetTag(long tagId)
067 throws com.liferay.portal.kernel.exception.PortalException,
068 com.liferay.portal.kernel.exception.SystemException {
069 return _assetTagLocalService.deleteAssetTag(tagId);
070 }
071
072
079 public com.liferay.portlet.asset.model.AssetTag deleteAssetTag(
080 com.liferay.portlet.asset.model.AssetTag assetTag)
081 throws com.liferay.portal.kernel.exception.SystemException {
082 return _assetTagLocalService.deleteAssetTag(assetTag);
083 }
084
085 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
086 return _assetTagLocalService.dynamicQuery();
087 }
088
089
096 @SuppressWarnings("rawtypes")
097 public java.util.List dynamicQuery(
098 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
099 throws com.liferay.portal.kernel.exception.SystemException {
100 return _assetTagLocalService.dynamicQuery(dynamicQuery);
101 }
102
103
116 @SuppressWarnings("rawtypes")
117 public java.util.List dynamicQuery(
118 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
119 int end) throws com.liferay.portal.kernel.exception.SystemException {
120 return _assetTagLocalService.dynamicQuery(dynamicQuery, start, end);
121 }
122
123
137 @SuppressWarnings("rawtypes")
138 public java.util.List dynamicQuery(
139 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
140 int end,
141 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
142 throws com.liferay.portal.kernel.exception.SystemException {
143 return _assetTagLocalService.dynamicQuery(dynamicQuery, start, end,
144 orderByComparator);
145 }
146
147
154 public long dynamicQueryCount(
155 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
156 throws com.liferay.portal.kernel.exception.SystemException {
157 return _assetTagLocalService.dynamicQueryCount(dynamicQuery);
158 }
159
160 public com.liferay.portlet.asset.model.AssetTag fetchAssetTag(long tagId)
161 throws com.liferay.portal.kernel.exception.SystemException {
162 return _assetTagLocalService.fetchAssetTag(tagId);
163 }
164
165
173 public com.liferay.portlet.asset.model.AssetTag getAssetTag(long tagId)
174 throws com.liferay.portal.kernel.exception.PortalException,
175 com.liferay.portal.kernel.exception.SystemException {
176 return _assetTagLocalService.getAssetTag(tagId);
177 }
178
179 public com.liferay.portal.model.PersistedModel getPersistedModel(
180 java.io.Serializable primaryKeyObj)
181 throws com.liferay.portal.kernel.exception.PortalException,
182 com.liferay.portal.kernel.exception.SystemException {
183 return _assetTagLocalService.getPersistedModel(primaryKeyObj);
184 }
185
186
198 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetTags(
199 int start, int end)
200 throws com.liferay.portal.kernel.exception.SystemException {
201 return _assetTagLocalService.getAssetTags(start, end);
202 }
203
204
210 public int getAssetTagsCount()
211 throws com.liferay.portal.kernel.exception.SystemException {
212 return _assetTagLocalService.getAssetTagsCount();
213 }
214
215
222 public com.liferay.portlet.asset.model.AssetTag updateAssetTag(
223 com.liferay.portlet.asset.model.AssetTag assetTag)
224 throws com.liferay.portal.kernel.exception.SystemException {
225 return _assetTagLocalService.updateAssetTag(assetTag);
226 }
227
228
236 public com.liferay.portlet.asset.model.AssetTag updateAssetTag(
237 com.liferay.portlet.asset.model.AssetTag assetTag, boolean merge)
238 throws com.liferay.portal.kernel.exception.SystemException {
239 return _assetTagLocalService.updateAssetTag(assetTag, merge);
240 }
241
242
245 public void addAssetEntryAssetTag(long entryId, long tagId)
246 throws com.liferay.portal.kernel.exception.SystemException {
247 _assetTagLocalService.addAssetEntryAssetTag(entryId, tagId);
248 }
249
250
253 public void addAssetEntryAssetTag(long entryId,
254 com.liferay.portlet.asset.model.AssetTag assetTag)
255 throws com.liferay.portal.kernel.exception.SystemException {
256 _assetTagLocalService.addAssetEntryAssetTag(entryId, assetTag);
257 }
258
259
262 public void addAssetEntryAssetTags(long entryId, long[] tagIds)
263 throws com.liferay.portal.kernel.exception.SystemException {
264 _assetTagLocalService.addAssetEntryAssetTags(entryId, tagIds);
265 }
266
267
270 public void addAssetEntryAssetTags(long entryId,
271 java.util.List<com.liferay.portlet.asset.model.AssetTag> AssetTags)
272 throws com.liferay.portal.kernel.exception.SystemException {
273 _assetTagLocalService.addAssetEntryAssetTags(entryId, AssetTags);
274 }
275
276
279 public void clearAssetEntryAssetTags(long entryId)
280 throws com.liferay.portal.kernel.exception.SystemException {
281 _assetTagLocalService.clearAssetEntryAssetTags(entryId);
282 }
283
284
287 public void deleteAssetEntryAssetTag(long entryId, long tagId)
288 throws com.liferay.portal.kernel.exception.SystemException {
289 _assetTagLocalService.deleteAssetEntryAssetTag(entryId, tagId);
290 }
291
292
295 public void deleteAssetEntryAssetTag(long entryId,
296 com.liferay.portlet.asset.model.AssetTag assetTag)
297 throws com.liferay.portal.kernel.exception.SystemException {
298 _assetTagLocalService.deleteAssetEntryAssetTag(entryId, assetTag);
299 }
300
301
304 public void deleteAssetEntryAssetTags(long entryId, long[] tagIds)
305 throws com.liferay.portal.kernel.exception.SystemException {
306 _assetTagLocalService.deleteAssetEntryAssetTags(entryId, tagIds);
307 }
308
309
312 public void deleteAssetEntryAssetTags(long entryId,
313 java.util.List<com.liferay.portlet.asset.model.AssetTag> AssetTags)
314 throws com.liferay.portal.kernel.exception.SystemException {
315 _assetTagLocalService.deleteAssetEntryAssetTags(entryId, AssetTags);
316 }
317
318
321 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
322 long entryId)
323 throws com.liferay.portal.kernel.exception.SystemException {
324 return _assetTagLocalService.getAssetEntryAssetTags(entryId);
325 }
326
327
330 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
331 long entryId, int start, int end)
332 throws com.liferay.portal.kernel.exception.SystemException {
333 return _assetTagLocalService.getAssetEntryAssetTags(entryId, start, end);
334 }
335
336
339 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
340 long entryId, int start, int end,
341 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
342 throws com.liferay.portal.kernel.exception.SystemException {
343 return _assetTagLocalService.getAssetEntryAssetTags(entryId, start,
344 end, orderByComparator);
345 }
346
347
350 public int getAssetEntryAssetTagsCount(long entryId)
351 throws com.liferay.portal.kernel.exception.SystemException {
352 return _assetTagLocalService.getAssetEntryAssetTagsCount(entryId);
353 }
354
355
358 public boolean hasAssetEntryAssetTag(long entryId, long tagId)
359 throws com.liferay.portal.kernel.exception.SystemException {
360 return _assetTagLocalService.hasAssetEntryAssetTag(entryId, tagId);
361 }
362
363
366 public boolean hasAssetEntryAssetTags(long entryId)
367 throws com.liferay.portal.kernel.exception.SystemException {
368 return _assetTagLocalService.hasAssetEntryAssetTags(entryId);
369 }
370
371
374 public void setAssetEntryAssetTags(long entryId, long[] tagIds)
375 throws com.liferay.portal.kernel.exception.SystemException {
376 _assetTagLocalService.setAssetEntryAssetTags(entryId, tagIds);
377 }
378
379
384 public java.lang.String getBeanIdentifier() {
385 return _assetTagLocalService.getBeanIdentifier();
386 }
387
388
393 public void setBeanIdentifier(java.lang.String beanIdentifier) {
394 _assetTagLocalService.setBeanIdentifier(beanIdentifier);
395 }
396
397 public com.liferay.portlet.asset.model.AssetTag addTag(long userId,
398 java.lang.String name, java.lang.String[] tagProperties,
399 com.liferay.portal.service.ServiceContext serviceContext)
400 throws com.liferay.portal.kernel.exception.PortalException,
401 com.liferay.portal.kernel.exception.SystemException {
402 return _assetTagLocalService.addTag(userId, name, tagProperties,
403 serviceContext);
404 }
405
406 public void addTagResources(com.liferay.portlet.asset.model.AssetTag tag,
407 boolean addGroupPermissions, boolean addGuestPermissions)
408 throws com.liferay.portal.kernel.exception.PortalException,
409 com.liferay.portal.kernel.exception.SystemException {
410 _assetTagLocalService.addTagResources(tag, addGroupPermissions,
411 addGuestPermissions);
412 }
413
414 public void addTagResources(com.liferay.portlet.asset.model.AssetTag tag,
415 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
416 throws com.liferay.portal.kernel.exception.PortalException,
417 com.liferay.portal.kernel.exception.SystemException {
418 _assetTagLocalService.addTagResources(tag, groupPermissions,
419 guestPermissions);
420 }
421
422 public void checkTags(long userId, long groupId, java.lang.String[] names)
423 throws com.liferay.portal.kernel.exception.PortalException,
424 com.liferay.portal.kernel.exception.SystemException {
425 _assetTagLocalService.checkTags(userId, groupId, names);
426 }
427
428 public com.liferay.portlet.asset.model.AssetTag decrementAssetCount(
429 long tagId, long classNameId)
430 throws com.liferay.portal.kernel.exception.PortalException,
431 com.liferay.portal.kernel.exception.SystemException {
432 return _assetTagLocalService.decrementAssetCount(tagId, classNameId);
433 }
434
435 public void deleteTag(com.liferay.portlet.asset.model.AssetTag tag)
436 throws com.liferay.portal.kernel.exception.PortalException,
437 com.liferay.portal.kernel.exception.SystemException {
438 _assetTagLocalService.deleteTag(tag);
439 }
440
441 public void deleteTag(long tagId)
442 throws com.liferay.portal.kernel.exception.PortalException,
443 com.liferay.portal.kernel.exception.SystemException {
444 _assetTagLocalService.deleteTag(tagId);
445 }
446
447 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getEntryTags(
448 long entryId)
449 throws com.liferay.portal.kernel.exception.SystemException {
450 return _assetTagLocalService.getEntryTags(entryId);
451 }
452
453 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupsTags(
454 long[] groupIds)
455 throws com.liferay.portal.kernel.exception.SystemException {
456 return _assetTagLocalService.getGroupsTags(groupIds);
457 }
458
459 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupTags(
460 long groupId)
461 throws com.liferay.portal.kernel.exception.SystemException {
462 return _assetTagLocalService.getGroupTags(groupId);
463 }
464
465 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupTags(
466 long groupId, int start, int end)
467 throws com.liferay.portal.kernel.exception.SystemException {
468 return _assetTagLocalService.getGroupTags(groupId, start, end);
469 }
470
471 public int getGroupTagsCount(long groupId)
472 throws com.liferay.portal.kernel.exception.SystemException {
473 return _assetTagLocalService.getGroupTagsCount(groupId);
474 }
475
476 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getSocialActivityCounterOffsetTags(
477 long groupId, java.lang.String socialActivityCounterName,
478 int startOffset, int endOffset)
479 throws com.liferay.portal.kernel.exception.SystemException {
480 return _assetTagLocalService.getSocialActivityCounterOffsetTags(groupId,
481 socialActivityCounterName, startOffset, endOffset);
482 }
483
484 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getSocialActivityCounterPeriodTags(
485 long groupId, java.lang.String socialActivityCounterName,
486 int startPeriod, int endPeriod)
487 throws com.liferay.portal.kernel.exception.SystemException {
488 return _assetTagLocalService.getSocialActivityCounterPeriodTags(groupId,
489 socialActivityCounterName, startPeriod, endPeriod);
490 }
491
492 public com.liferay.portlet.asset.model.AssetTag getTag(long tagId)
493 throws com.liferay.portal.kernel.exception.PortalException,
494 com.liferay.portal.kernel.exception.SystemException {
495 return _assetTagLocalService.getTag(tagId);
496 }
497
498 public com.liferay.portlet.asset.model.AssetTag getTag(long groupId,
499 java.lang.String name)
500 throws com.liferay.portal.kernel.exception.PortalException,
501 com.liferay.portal.kernel.exception.SystemException {
502 return _assetTagLocalService.getTag(groupId, name);
503 }
504
505 public long[] getTagIds(long groupId, java.lang.String[] names)
506 throws com.liferay.portal.kernel.exception.PortalException,
507 com.liferay.portal.kernel.exception.SystemException {
508 return _assetTagLocalService.getTagIds(groupId, names);
509 }
510
511 public long[] getTagIds(long[] groupIds, java.lang.String name)
512 throws com.liferay.portal.kernel.exception.PortalException,
513 com.liferay.portal.kernel.exception.SystemException {
514 return _assetTagLocalService.getTagIds(groupIds, name);
515 }
516
517 public long[] getTagIds(long[] groupIds, java.lang.String[] names)
518 throws com.liferay.portal.kernel.exception.PortalException,
519 com.liferay.portal.kernel.exception.SystemException {
520 return _assetTagLocalService.getTagIds(groupIds, names);
521 }
522
523 public java.lang.String[] getTagNames()
524 throws com.liferay.portal.kernel.exception.SystemException {
525 return _assetTagLocalService.getTagNames();
526 }
527
528 public java.lang.String[] getTagNames(long classNameId, long classPK)
529 throws com.liferay.portal.kernel.exception.SystemException {
530 return _assetTagLocalService.getTagNames(classNameId, classPK);
531 }
532
533 public java.lang.String[] getTagNames(java.lang.String className,
534 long classPK)
535 throws com.liferay.portal.kernel.exception.SystemException {
536 return _assetTagLocalService.getTagNames(className, classPK);
537 }
538
539 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags()
540 throws com.liferay.portal.kernel.exception.SystemException {
541 return _assetTagLocalService.getTags();
542 }
543
544 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
545 long classNameId, long classPK)
546 throws com.liferay.portal.kernel.exception.SystemException {
547 return _assetTagLocalService.getTags(classNameId, classPK);
548 }
549
550 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
551 long groupId, long classNameId, java.lang.String name)
552 throws com.liferay.portal.kernel.exception.SystemException {
553 return _assetTagLocalService.getTags(groupId, classNameId, name);
554 }
555
556 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
557 long groupId, long classNameId, java.lang.String name, int start,
558 int end) throws com.liferay.portal.kernel.exception.SystemException {
559 return _assetTagLocalService.getTags(groupId, classNameId, name, start,
560 end);
561 }
562
563 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
564 java.lang.String className, long classPK)
565 throws com.liferay.portal.kernel.exception.SystemException {
566 return _assetTagLocalService.getTags(className, classPK);
567 }
568
569 public int getTagsSize(long groupId, long classNameId, java.lang.String name)
570 throws com.liferay.portal.kernel.exception.SystemException {
571 return _assetTagLocalService.getTagsSize(groupId, classNameId, name);
572 }
573
574 public boolean hasTag(long groupId, java.lang.String name)
575 throws com.liferay.portal.kernel.exception.PortalException,
576 com.liferay.portal.kernel.exception.SystemException {
577 return _assetTagLocalService.hasTag(groupId, name);
578 }
579
580 public com.liferay.portlet.asset.model.AssetTag incrementAssetCount(
581 long tagId, long classNameId)
582 throws com.liferay.portal.kernel.exception.PortalException,
583 com.liferay.portal.kernel.exception.SystemException {
584 return _assetTagLocalService.incrementAssetCount(tagId, classNameId);
585 }
586
587 public void mergeTags(long fromTagId, long toTagId,
588 boolean overrideProperties)
589 throws com.liferay.portal.kernel.exception.PortalException,
590 com.liferay.portal.kernel.exception.SystemException {
591 _assetTagLocalService.mergeTags(fromTagId, toTagId, overrideProperties);
592 }
593
594 public java.util.List<com.liferay.portlet.asset.model.AssetTag> search(
595 long groupId, java.lang.String name, java.lang.String[] tagProperties,
596 int start, int end)
597 throws com.liferay.portal.kernel.exception.SystemException {
598 return _assetTagLocalService.search(groupId, name, tagProperties,
599 start, end);
600 }
601
602 public java.util.List<com.liferay.portlet.asset.model.AssetTag> search(
603 long[] groupIds, java.lang.String name,
604 java.lang.String[] tagProperties, int start, int end)
605 throws com.liferay.portal.kernel.exception.SystemException {
606 return _assetTagLocalService.search(groupIds, name, tagProperties,
607 start, end);
608 }
609
610 public com.liferay.portlet.asset.model.AssetTag updateTag(long userId,
611 long tagId, java.lang.String name, java.lang.String[] tagProperties,
612 com.liferay.portal.service.ServiceContext serviceContext)
613 throws com.liferay.portal.kernel.exception.PortalException,
614 com.liferay.portal.kernel.exception.SystemException {
615 return _assetTagLocalService.updateTag(userId, tagId, name,
616 tagProperties, serviceContext);
617 }
618
619
622 public AssetTagLocalService getWrappedAssetTagLocalService() {
623 return _assetTagLocalService;
624 }
625
626
629 public void setWrappedAssetTagLocalService(
630 AssetTagLocalService assetTagLocalService) {
631 _assetTagLocalService = assetTagLocalService;
632 }
633
634 public AssetTagLocalService getWrappedService() {
635 return _assetTagLocalService;
636 }
637
638 public void setWrappedService(AssetTagLocalService assetTagLocalService) {
639 _assetTagLocalService = assetTagLocalService;
640 }
641
642 private AssetTagLocalService _assetTagLocalService;
643 }