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
231 public void addAssetEntryAssetTag(long entryId, long tagId)
232 throws com.liferay.portal.kernel.exception.SystemException {
233 _assetTagLocalService.addAssetEntryAssetTag(entryId, tagId);
234 }
235
236
239 public void addAssetEntryAssetTag(long entryId,
240 com.liferay.portlet.asset.model.AssetTag assetTag)
241 throws com.liferay.portal.kernel.exception.SystemException {
242 _assetTagLocalService.addAssetEntryAssetTag(entryId, assetTag);
243 }
244
245
248 public void addAssetEntryAssetTags(long entryId, long[] tagIds)
249 throws com.liferay.portal.kernel.exception.SystemException {
250 _assetTagLocalService.addAssetEntryAssetTags(entryId, tagIds);
251 }
252
253
256 public void addAssetEntryAssetTags(long entryId,
257 java.util.List<com.liferay.portlet.asset.model.AssetTag> AssetTags)
258 throws com.liferay.portal.kernel.exception.SystemException {
259 _assetTagLocalService.addAssetEntryAssetTags(entryId, AssetTags);
260 }
261
262
265 public void clearAssetEntryAssetTags(long entryId)
266 throws com.liferay.portal.kernel.exception.SystemException {
267 _assetTagLocalService.clearAssetEntryAssetTags(entryId);
268 }
269
270
273 public void deleteAssetEntryAssetTag(long entryId, long tagId)
274 throws com.liferay.portal.kernel.exception.SystemException {
275 _assetTagLocalService.deleteAssetEntryAssetTag(entryId, tagId);
276 }
277
278
281 public void deleteAssetEntryAssetTag(long entryId,
282 com.liferay.portlet.asset.model.AssetTag assetTag)
283 throws com.liferay.portal.kernel.exception.SystemException {
284 _assetTagLocalService.deleteAssetEntryAssetTag(entryId, assetTag);
285 }
286
287
290 public void deleteAssetEntryAssetTags(long entryId, long[] tagIds)
291 throws com.liferay.portal.kernel.exception.SystemException {
292 _assetTagLocalService.deleteAssetEntryAssetTags(entryId, tagIds);
293 }
294
295
298 public void deleteAssetEntryAssetTags(long entryId,
299 java.util.List<com.liferay.portlet.asset.model.AssetTag> AssetTags)
300 throws com.liferay.portal.kernel.exception.SystemException {
301 _assetTagLocalService.deleteAssetEntryAssetTags(entryId, AssetTags);
302 }
303
304
307 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
308 long entryId)
309 throws com.liferay.portal.kernel.exception.SystemException {
310 return _assetTagLocalService.getAssetEntryAssetTags(entryId);
311 }
312
313
316 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
317 long entryId, int start, int end)
318 throws com.liferay.portal.kernel.exception.SystemException {
319 return _assetTagLocalService.getAssetEntryAssetTags(entryId, start, end);
320 }
321
322
325 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
326 long entryId, int start, int end,
327 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
328 throws com.liferay.portal.kernel.exception.SystemException {
329 return _assetTagLocalService.getAssetEntryAssetTags(entryId, start,
330 end, orderByComparator);
331 }
332
333
336 public int getAssetEntryAssetTagsCount(long entryId)
337 throws com.liferay.portal.kernel.exception.SystemException {
338 return _assetTagLocalService.getAssetEntryAssetTagsCount(entryId);
339 }
340
341
344 public boolean hasAssetEntryAssetTag(long entryId, long tagId)
345 throws com.liferay.portal.kernel.exception.SystemException {
346 return _assetTagLocalService.hasAssetEntryAssetTag(entryId, tagId);
347 }
348
349
352 public boolean hasAssetEntryAssetTags(long entryId)
353 throws com.liferay.portal.kernel.exception.SystemException {
354 return _assetTagLocalService.hasAssetEntryAssetTags(entryId);
355 }
356
357
360 public void setAssetEntryAssetTags(long entryId, long[] tagIds)
361 throws com.liferay.portal.kernel.exception.SystemException {
362 _assetTagLocalService.setAssetEntryAssetTags(entryId, tagIds);
363 }
364
365
370 public java.lang.String getBeanIdentifier() {
371 return _assetTagLocalService.getBeanIdentifier();
372 }
373
374
379 public void setBeanIdentifier(java.lang.String beanIdentifier) {
380 _assetTagLocalService.setBeanIdentifier(beanIdentifier);
381 }
382
383 public com.liferay.portlet.asset.model.AssetTag addTag(long userId,
384 java.lang.String name, java.lang.String[] tagProperties,
385 com.liferay.portal.service.ServiceContext serviceContext)
386 throws com.liferay.portal.kernel.exception.PortalException,
387 com.liferay.portal.kernel.exception.SystemException {
388 return _assetTagLocalService.addTag(userId, name, tagProperties,
389 serviceContext);
390 }
391
392 public void addTagResources(com.liferay.portlet.asset.model.AssetTag tag,
393 boolean addGroupPermissions, boolean addGuestPermissions)
394 throws com.liferay.portal.kernel.exception.PortalException,
395 com.liferay.portal.kernel.exception.SystemException {
396 _assetTagLocalService.addTagResources(tag, addGroupPermissions,
397 addGuestPermissions);
398 }
399
400 public void addTagResources(com.liferay.portlet.asset.model.AssetTag tag,
401 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
402 throws com.liferay.portal.kernel.exception.PortalException,
403 com.liferay.portal.kernel.exception.SystemException {
404 _assetTagLocalService.addTagResources(tag, groupPermissions,
405 guestPermissions);
406 }
407
408 public void checkTags(long userId, long groupId, java.lang.String[] names)
409 throws com.liferay.portal.kernel.exception.PortalException,
410 com.liferay.portal.kernel.exception.SystemException {
411 _assetTagLocalService.checkTags(userId, groupId, names);
412 }
413
414 public com.liferay.portlet.asset.model.AssetTag decrementAssetCount(
415 long tagId, long classNameId)
416 throws com.liferay.portal.kernel.exception.PortalException,
417 com.liferay.portal.kernel.exception.SystemException {
418 return _assetTagLocalService.decrementAssetCount(tagId, classNameId);
419 }
420
421 public void deleteTag(com.liferay.portlet.asset.model.AssetTag tag)
422 throws com.liferay.portal.kernel.exception.PortalException,
423 com.liferay.portal.kernel.exception.SystemException {
424 _assetTagLocalService.deleteTag(tag);
425 }
426
427 public void deleteTag(long tagId)
428 throws com.liferay.portal.kernel.exception.PortalException,
429 com.liferay.portal.kernel.exception.SystemException {
430 _assetTagLocalService.deleteTag(tagId);
431 }
432
433 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getEntryTags(
434 long entryId)
435 throws com.liferay.portal.kernel.exception.SystemException {
436 return _assetTagLocalService.getEntryTags(entryId);
437 }
438
439 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupsTags(
440 long[] groupIds)
441 throws com.liferay.portal.kernel.exception.SystemException {
442 return _assetTagLocalService.getGroupsTags(groupIds);
443 }
444
445 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupTags(
446 long groupId)
447 throws com.liferay.portal.kernel.exception.SystemException {
448 return _assetTagLocalService.getGroupTags(groupId);
449 }
450
451 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupTags(
452 long groupId, int start, int end)
453 throws com.liferay.portal.kernel.exception.SystemException {
454 return _assetTagLocalService.getGroupTags(groupId, start, end);
455 }
456
457 public int getGroupTagsCount(long groupId)
458 throws com.liferay.portal.kernel.exception.SystemException {
459 return _assetTagLocalService.getGroupTagsCount(groupId);
460 }
461
462 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getSocialActivityCounterOffsetTags(
463 long groupId, java.lang.String socialActivityCounterName,
464 int startOffset, int endOffset)
465 throws com.liferay.portal.kernel.exception.SystemException {
466 return _assetTagLocalService.getSocialActivityCounterOffsetTags(groupId,
467 socialActivityCounterName, startOffset, endOffset);
468 }
469
470 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getSocialActivityCounterPeriodTags(
471 long groupId, java.lang.String socialActivityCounterName,
472 int startPeriod, int endPeriod)
473 throws com.liferay.portal.kernel.exception.SystemException {
474 return _assetTagLocalService.getSocialActivityCounterPeriodTags(groupId,
475 socialActivityCounterName, startPeriod, endPeriod);
476 }
477
478 public com.liferay.portlet.asset.model.AssetTag getTag(long tagId)
479 throws com.liferay.portal.kernel.exception.PortalException,
480 com.liferay.portal.kernel.exception.SystemException {
481 return _assetTagLocalService.getTag(tagId);
482 }
483
484 public com.liferay.portlet.asset.model.AssetTag getTag(long groupId,
485 java.lang.String name)
486 throws com.liferay.portal.kernel.exception.PortalException,
487 com.liferay.portal.kernel.exception.SystemException {
488 return _assetTagLocalService.getTag(groupId, name);
489 }
490
491 public long[] getTagIds(long groupId, java.lang.String[] names)
492 throws com.liferay.portal.kernel.exception.PortalException,
493 com.liferay.portal.kernel.exception.SystemException {
494 return _assetTagLocalService.getTagIds(groupId, names);
495 }
496
497 public long[] getTagIds(long[] groupIds, java.lang.String name)
498 throws com.liferay.portal.kernel.exception.PortalException,
499 com.liferay.portal.kernel.exception.SystemException {
500 return _assetTagLocalService.getTagIds(groupIds, name);
501 }
502
503 public long[] getTagIds(long[] groupIds, java.lang.String[] names)
504 throws com.liferay.portal.kernel.exception.PortalException,
505 com.liferay.portal.kernel.exception.SystemException {
506 return _assetTagLocalService.getTagIds(groupIds, names);
507 }
508
509 public java.lang.String[] getTagNames()
510 throws com.liferay.portal.kernel.exception.SystemException {
511 return _assetTagLocalService.getTagNames();
512 }
513
514 public java.lang.String[] getTagNames(long classNameId, long classPK)
515 throws com.liferay.portal.kernel.exception.SystemException {
516 return _assetTagLocalService.getTagNames(classNameId, classPK);
517 }
518
519 public java.lang.String[] getTagNames(java.lang.String className,
520 long classPK)
521 throws com.liferay.portal.kernel.exception.SystemException {
522 return _assetTagLocalService.getTagNames(className, classPK);
523 }
524
525 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags()
526 throws com.liferay.portal.kernel.exception.SystemException {
527 return _assetTagLocalService.getTags();
528 }
529
530 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
531 long classNameId, long classPK)
532 throws com.liferay.portal.kernel.exception.SystemException {
533 return _assetTagLocalService.getTags(classNameId, classPK);
534 }
535
536 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
537 long groupId, long classNameId, java.lang.String name)
538 throws com.liferay.portal.kernel.exception.SystemException {
539 return _assetTagLocalService.getTags(groupId, classNameId, name);
540 }
541
542 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
543 long groupId, long classNameId, java.lang.String name, int start,
544 int end) throws com.liferay.portal.kernel.exception.SystemException {
545 return _assetTagLocalService.getTags(groupId, classNameId, name, start,
546 end);
547 }
548
549 public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
550 java.lang.String className, long classPK)
551 throws com.liferay.portal.kernel.exception.SystemException {
552 return _assetTagLocalService.getTags(className, classPK);
553 }
554
555 public int getTagsSize(long groupId, long classNameId, java.lang.String name)
556 throws com.liferay.portal.kernel.exception.SystemException {
557 return _assetTagLocalService.getTagsSize(groupId, classNameId, name);
558 }
559
560 public boolean hasTag(long groupId, java.lang.String name)
561 throws com.liferay.portal.kernel.exception.PortalException,
562 com.liferay.portal.kernel.exception.SystemException {
563 return _assetTagLocalService.hasTag(groupId, name);
564 }
565
566 public com.liferay.portlet.asset.model.AssetTag incrementAssetCount(
567 long tagId, long classNameId)
568 throws com.liferay.portal.kernel.exception.PortalException,
569 com.liferay.portal.kernel.exception.SystemException {
570 return _assetTagLocalService.incrementAssetCount(tagId, classNameId);
571 }
572
573 public void mergeTags(long fromTagId, long toTagId,
574 boolean overrideProperties)
575 throws com.liferay.portal.kernel.exception.PortalException,
576 com.liferay.portal.kernel.exception.SystemException {
577 _assetTagLocalService.mergeTags(fromTagId, toTagId, overrideProperties);
578 }
579
580 public java.util.List<com.liferay.portlet.asset.model.AssetTag> search(
581 long groupId, java.lang.String name, java.lang.String[] tagProperties,
582 int start, int end)
583 throws com.liferay.portal.kernel.exception.SystemException {
584 return _assetTagLocalService.search(groupId, name, tagProperties,
585 start, end);
586 }
587
588 public java.util.List<com.liferay.portlet.asset.model.AssetTag> search(
589 long[] groupIds, java.lang.String name,
590 java.lang.String[] tagProperties, int start, int end)
591 throws com.liferay.portal.kernel.exception.SystemException {
592 return _assetTagLocalService.search(groupIds, name, tagProperties,
593 start, end);
594 }
595
596 public com.liferay.portlet.asset.model.AssetTag updateTag(long userId,
597 long tagId, java.lang.String name, java.lang.String[] tagProperties,
598 com.liferay.portal.service.ServiceContext serviceContext)
599 throws com.liferay.portal.kernel.exception.PortalException,
600 com.liferay.portal.kernel.exception.SystemException {
601 return _assetTagLocalService.updateTag(userId, tagId, name,
602 tagProperties, serviceContext);
603 }
604
605
608 public AssetTagLocalService getWrappedAssetTagLocalService() {
609 return _assetTagLocalService;
610 }
611
612
615 public void setWrappedAssetTagLocalService(
616 AssetTagLocalService assetTagLocalService) {
617 _assetTagLocalService = assetTagLocalService;
618 }
619
620 public AssetTagLocalService getWrappedService() {
621 return _assetTagLocalService;
622 }
623
624 public void setWrappedService(AssetTagLocalService assetTagLocalService) {
625 _assetTagLocalService = assetTagLocalService;
626 }
627
628 private AssetTagLocalService _assetTagLocalService;
629 }