001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
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    /**
022     * Provides a wrapper for {@link AssetTagLocalService}.
023     *
024     * @author Brian Wing Shun Chan
025     * @see AssetTagLocalService
026     * @generated
027     */
028    @ProviderType
029    public class AssetTagLocalServiceWrapper implements AssetTagLocalService,
030            ServiceWrapper<AssetTagLocalService> {
031            public AssetTagLocalServiceWrapper(
032                    AssetTagLocalService assetTagLocalService) {
033                    _assetTagLocalService = assetTagLocalService;
034            }
035    
036            /**
037            * Adds the asset tag to the database. Also notifies the appropriate model listeners.
038            *
039            * @param assetTag the asset tag
040            * @return the asset tag that was added
041            * @throws SystemException if a system exception occurred
042            */
043            @Override
044            public com.liferay.portlet.asset.model.AssetTag addAssetTag(
045                    com.liferay.portlet.asset.model.AssetTag assetTag)
046                    throws com.liferay.portal.kernel.exception.SystemException {
047                    return _assetTagLocalService.addAssetTag(assetTag);
048            }
049    
050            /**
051            * Creates a new asset tag with the primary key. Does not add the asset tag to the database.
052            *
053            * @param tagId the primary key for the new asset tag
054            * @return the new asset tag
055            */
056            @Override
057            public com.liferay.portlet.asset.model.AssetTag createAssetTag(long tagId) {
058                    return _assetTagLocalService.createAssetTag(tagId);
059            }
060    
061            /**
062            * Deletes the asset tag with the primary key from the database. Also notifies the appropriate model listeners.
063            *
064            * @param tagId the primary key of the asset tag
065            * @return the asset tag that was removed
066            * @throws PortalException if a asset tag with the primary key could not be found
067            * @throws SystemException if a system exception occurred
068            */
069            @Override
070            public com.liferay.portlet.asset.model.AssetTag deleteAssetTag(long tagId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    return _assetTagLocalService.deleteAssetTag(tagId);
074            }
075    
076            /**
077            * Deletes the asset tag from the database. Also notifies the appropriate model listeners.
078            *
079            * @param assetTag the asset tag
080            * @return the asset tag that was removed
081            * @throws SystemException if a system exception occurred
082            */
083            @Override
084            public com.liferay.portlet.asset.model.AssetTag deleteAssetTag(
085                    com.liferay.portlet.asset.model.AssetTag assetTag)
086                    throws com.liferay.portal.kernel.exception.SystemException {
087                    return _assetTagLocalService.deleteAssetTag(assetTag);
088            }
089    
090            @Override
091            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
092                    return _assetTagLocalService.dynamicQuery();
093            }
094    
095            /**
096            * Performs a dynamic query on the database and returns the matching rows.
097            *
098            * @param dynamicQuery the dynamic query
099            * @return the matching rows
100            * @throws SystemException if a system exception occurred
101            */
102            @Override
103            @SuppressWarnings("rawtypes")
104            public java.util.List dynamicQuery(
105                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106                    throws com.liferay.portal.kernel.exception.SystemException {
107                    return _assetTagLocalService.dynamicQuery(dynamicQuery);
108            }
109    
110            /**
111            * Performs a dynamic query on the database and returns a range of the matching rows.
112            *
113            * <p>
114            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
115            * </p>
116            *
117            * @param dynamicQuery the dynamic query
118            * @param start the lower bound of the range of model instances
119            * @param end the upper bound of the range of model instances (not inclusive)
120            * @return the range of matching rows
121            * @throws SystemException if a system exception occurred
122            */
123            @Override
124            @SuppressWarnings("rawtypes")
125            public java.util.List dynamicQuery(
126                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
127                    int end) throws com.liferay.portal.kernel.exception.SystemException {
128                    return _assetTagLocalService.dynamicQuery(dynamicQuery, start, end);
129            }
130    
131            /**
132            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
133            *
134            * <p>
135            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
136            * </p>
137            *
138            * @param dynamicQuery the dynamic query
139            * @param start the lower bound of the range of model instances
140            * @param end the upper bound of the range of model instances (not inclusive)
141            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
142            * @return the ordered range of matching rows
143            * @throws SystemException if a system exception occurred
144            */
145            @Override
146            @SuppressWarnings("rawtypes")
147            public java.util.List dynamicQuery(
148                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
149                    int end,
150                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
151                    throws com.liferay.portal.kernel.exception.SystemException {
152                    return _assetTagLocalService.dynamicQuery(dynamicQuery, start, end,
153                            orderByComparator);
154            }
155    
156            /**
157            * Returns the number of rows that match the dynamic query.
158            *
159            * @param dynamicQuery the dynamic query
160            * @return the number of rows that match the dynamic query
161            * @throws SystemException if a system exception occurred
162            */
163            @Override
164            public long dynamicQueryCount(
165                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
166                    throws com.liferay.portal.kernel.exception.SystemException {
167                    return _assetTagLocalService.dynamicQueryCount(dynamicQuery);
168            }
169    
170            /**
171            * Returns the number of rows that match the dynamic query.
172            *
173            * @param dynamicQuery the dynamic query
174            * @param projection the projection to apply to the query
175            * @return the number of rows that match the dynamic query
176            * @throws SystemException if a system exception occurred
177            */
178            @Override
179            public long dynamicQueryCount(
180                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
181                    com.liferay.portal.kernel.dao.orm.Projection projection)
182                    throws com.liferay.portal.kernel.exception.SystemException {
183                    return _assetTagLocalService.dynamicQueryCount(dynamicQuery, projection);
184            }
185    
186            @Override
187            public com.liferay.portlet.asset.model.AssetTag fetchAssetTag(long tagId)
188                    throws com.liferay.portal.kernel.exception.SystemException {
189                    return _assetTagLocalService.fetchAssetTag(tagId);
190            }
191    
192            /**
193            * Returns the asset tag with the primary key.
194            *
195            * @param tagId the primary key of the asset tag
196            * @return the asset tag
197            * @throws PortalException if a asset tag with the primary key could not be found
198            * @throws SystemException if a system exception occurred
199            */
200            @Override
201            public com.liferay.portlet.asset.model.AssetTag getAssetTag(long tagId)
202                    throws com.liferay.portal.kernel.exception.PortalException,
203                            com.liferay.portal.kernel.exception.SystemException {
204                    return _assetTagLocalService.getAssetTag(tagId);
205            }
206    
207            @Override
208            public com.liferay.portal.model.PersistedModel getPersistedModel(
209                    java.io.Serializable primaryKeyObj)
210                    throws com.liferay.portal.kernel.exception.PortalException,
211                            com.liferay.portal.kernel.exception.SystemException {
212                    return _assetTagLocalService.getPersistedModel(primaryKeyObj);
213            }
214    
215            /**
216            * Returns a range of all the asset tags.
217            *
218            * <p>
219            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
220            * </p>
221            *
222            * @param start the lower bound of the range of asset tags
223            * @param end the upper bound of the range of asset tags (not inclusive)
224            * @return the range of asset tags
225            * @throws SystemException if a system exception occurred
226            */
227            @Override
228            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetTags(
229                    int start, int end)
230                    throws com.liferay.portal.kernel.exception.SystemException {
231                    return _assetTagLocalService.getAssetTags(start, end);
232            }
233    
234            /**
235            * Returns the number of asset tags.
236            *
237            * @return the number of asset tags
238            * @throws SystemException if a system exception occurred
239            */
240            @Override
241            public int getAssetTagsCount()
242                    throws com.liferay.portal.kernel.exception.SystemException {
243                    return _assetTagLocalService.getAssetTagsCount();
244            }
245    
246            /**
247            * Updates the asset tag in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
248            *
249            * @param assetTag the asset tag
250            * @return the asset tag that was updated
251            * @throws SystemException if a system exception occurred
252            */
253            @Override
254            public com.liferay.portlet.asset.model.AssetTag updateAssetTag(
255                    com.liferay.portlet.asset.model.AssetTag assetTag)
256                    throws com.liferay.portal.kernel.exception.SystemException {
257                    return _assetTagLocalService.updateAssetTag(assetTag);
258            }
259    
260            /**
261            * @throws SystemException if a system exception occurred
262            */
263            @Override
264            public void addAssetEntryAssetTag(long entryId, long tagId)
265                    throws com.liferay.portal.kernel.exception.SystemException {
266                    _assetTagLocalService.addAssetEntryAssetTag(entryId, tagId);
267            }
268    
269            /**
270            * @throws SystemException if a system exception occurred
271            */
272            @Override
273            public void addAssetEntryAssetTag(long entryId,
274                    com.liferay.portlet.asset.model.AssetTag assetTag)
275                    throws com.liferay.portal.kernel.exception.SystemException {
276                    _assetTagLocalService.addAssetEntryAssetTag(entryId, assetTag);
277            }
278    
279            /**
280            * @throws SystemException if a system exception occurred
281            */
282            @Override
283            public void addAssetEntryAssetTags(long entryId, long[] tagIds)
284                    throws com.liferay.portal.kernel.exception.SystemException {
285                    _assetTagLocalService.addAssetEntryAssetTags(entryId, tagIds);
286            }
287    
288            /**
289            * @throws SystemException if a system exception occurred
290            */
291            @Override
292            public void addAssetEntryAssetTags(long entryId,
293                    java.util.List<com.liferay.portlet.asset.model.AssetTag> AssetTags)
294                    throws com.liferay.portal.kernel.exception.SystemException {
295                    _assetTagLocalService.addAssetEntryAssetTags(entryId, AssetTags);
296            }
297    
298            /**
299            * @throws SystemException if a system exception occurred
300            */
301            @Override
302            public void clearAssetEntryAssetTags(long entryId)
303                    throws com.liferay.portal.kernel.exception.SystemException {
304                    _assetTagLocalService.clearAssetEntryAssetTags(entryId);
305            }
306    
307            /**
308            * @throws SystemException if a system exception occurred
309            */
310            @Override
311            public void deleteAssetEntryAssetTag(long entryId, long tagId)
312                    throws com.liferay.portal.kernel.exception.SystemException {
313                    _assetTagLocalService.deleteAssetEntryAssetTag(entryId, tagId);
314            }
315    
316            /**
317            * @throws SystemException if a system exception occurred
318            */
319            @Override
320            public void deleteAssetEntryAssetTag(long entryId,
321                    com.liferay.portlet.asset.model.AssetTag assetTag)
322                    throws com.liferay.portal.kernel.exception.SystemException {
323                    _assetTagLocalService.deleteAssetEntryAssetTag(entryId, assetTag);
324            }
325    
326            /**
327            * @throws SystemException if a system exception occurred
328            */
329            @Override
330            public void deleteAssetEntryAssetTags(long entryId, long[] tagIds)
331                    throws com.liferay.portal.kernel.exception.SystemException {
332                    _assetTagLocalService.deleteAssetEntryAssetTags(entryId, tagIds);
333            }
334    
335            /**
336            * @throws SystemException if a system exception occurred
337            */
338            @Override
339            public void deleteAssetEntryAssetTags(long entryId,
340                    java.util.List<com.liferay.portlet.asset.model.AssetTag> AssetTags)
341                    throws com.liferay.portal.kernel.exception.SystemException {
342                    _assetTagLocalService.deleteAssetEntryAssetTags(entryId, AssetTags);
343            }
344    
345            /**
346            * @throws SystemException if a system exception occurred
347            */
348            @Override
349            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
350                    long entryId)
351                    throws com.liferay.portal.kernel.exception.SystemException {
352                    return _assetTagLocalService.getAssetEntryAssetTags(entryId);
353            }
354    
355            /**
356            * @throws SystemException if a system exception occurred
357            */
358            @Override
359            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
360                    long entryId, int start, int end)
361                    throws com.liferay.portal.kernel.exception.SystemException {
362                    return _assetTagLocalService.getAssetEntryAssetTags(entryId, start, end);
363            }
364    
365            /**
366            * @throws SystemException if a system exception occurred
367            */
368            @Override
369            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getAssetEntryAssetTags(
370                    long entryId, int start, int end,
371                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
372                    throws com.liferay.portal.kernel.exception.SystemException {
373                    return _assetTagLocalService.getAssetEntryAssetTags(entryId, start,
374                            end, orderByComparator);
375            }
376    
377            /**
378            * @throws SystemException if a system exception occurred
379            */
380            @Override
381            public int getAssetEntryAssetTagsCount(long entryId)
382                    throws com.liferay.portal.kernel.exception.SystemException {
383                    return _assetTagLocalService.getAssetEntryAssetTagsCount(entryId);
384            }
385    
386            /**
387            * @throws SystemException if a system exception occurred
388            */
389            @Override
390            public boolean hasAssetEntryAssetTag(long entryId, long tagId)
391                    throws com.liferay.portal.kernel.exception.SystemException {
392                    return _assetTagLocalService.hasAssetEntryAssetTag(entryId, tagId);
393            }
394    
395            /**
396            * @throws SystemException if a system exception occurred
397            */
398            @Override
399            public boolean hasAssetEntryAssetTags(long entryId)
400                    throws com.liferay.portal.kernel.exception.SystemException {
401                    return _assetTagLocalService.hasAssetEntryAssetTags(entryId);
402            }
403    
404            /**
405            * @throws SystemException if a system exception occurred
406            */
407            @Override
408            public void setAssetEntryAssetTags(long entryId, long[] tagIds)
409                    throws com.liferay.portal.kernel.exception.SystemException {
410                    _assetTagLocalService.setAssetEntryAssetTags(entryId, tagIds);
411            }
412    
413            /**
414            * Returns the Spring bean ID for this bean.
415            *
416            * @return the Spring bean ID for this bean
417            */
418            @Override
419            public java.lang.String getBeanIdentifier() {
420                    return _assetTagLocalService.getBeanIdentifier();
421            }
422    
423            /**
424            * Sets the Spring bean ID for this bean.
425            *
426            * @param beanIdentifier the Spring bean ID for this bean
427            */
428            @Override
429            public void setBeanIdentifier(java.lang.String beanIdentifier) {
430                    _assetTagLocalService.setBeanIdentifier(beanIdentifier);
431            }
432    
433            @Override
434            public com.liferay.portlet.asset.model.AssetTag addTag(long userId,
435                    java.lang.String name, java.lang.String[] tagProperties,
436                    com.liferay.portal.service.ServiceContext serviceContext)
437                    throws com.liferay.portal.kernel.exception.PortalException,
438                            com.liferay.portal.kernel.exception.SystemException {
439                    return _assetTagLocalService.addTag(userId, name, tagProperties,
440                            serviceContext);
441            }
442    
443            @Override
444            public void addTagResources(com.liferay.portlet.asset.model.AssetTag tag,
445                    boolean addGroupPermissions, boolean addGuestPermissions)
446                    throws com.liferay.portal.kernel.exception.PortalException,
447                            com.liferay.portal.kernel.exception.SystemException {
448                    _assetTagLocalService.addTagResources(tag, addGroupPermissions,
449                            addGuestPermissions);
450            }
451    
452            @Override
453            public void addTagResources(com.liferay.portlet.asset.model.AssetTag tag,
454                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
455                    throws com.liferay.portal.kernel.exception.PortalException,
456                            com.liferay.portal.kernel.exception.SystemException {
457                    _assetTagLocalService.addTagResources(tag, groupPermissions,
458                            guestPermissions);
459            }
460    
461            /**
462            * Returns the tags matching the group and names, creating new tags with the
463            * names if the group doesn't already have them.
464            *
465            * <p>
466            * For each name, if a tag with that name doesn't already exist for the
467            * group, this method creates a new tag with that name for the group. If a
468            * tag with that name already exists in the company group, this method
469            * copies that company group's tag's properties to the group's new tag.
470            * </p>
471            *
472            * @param userId the primary key of the user
473            * @param group ID the primary key of the tag's group
474            * @param names the tag names
475            * @return the tags matching the group and names and new tags matching the
476            names that don't already exist for the group
477            * @throws PortalException if a matching group could not be found, if the
478            tag's key or value were invalid, or if a portal exception
479            occurred
480            * @throws SystemException if a system exception occurred
481            */
482            @Override
483            public java.util.List<com.liferay.portlet.asset.model.AssetTag> checkTags(
484                    long userId, com.liferay.portal.model.Group group,
485                    java.lang.String[] names)
486                    throws com.liferay.portal.kernel.exception.PortalException,
487                            com.liferay.portal.kernel.exception.SystemException {
488                    return _assetTagLocalService.checkTags(userId, group, names);
489            }
490    
491            @Override
492            public void checkTags(long userId, long groupId, java.lang.String[] names)
493                    throws com.liferay.portal.kernel.exception.PortalException,
494                            com.liferay.portal.kernel.exception.SystemException {
495                    _assetTagLocalService.checkTags(userId, groupId, names);
496            }
497    
498            @Override
499            public com.liferay.portlet.asset.model.AssetTag decrementAssetCount(
500                    long tagId, long classNameId)
501                    throws com.liferay.portal.kernel.exception.PortalException,
502                            com.liferay.portal.kernel.exception.SystemException {
503                    return _assetTagLocalService.decrementAssetCount(tagId, classNameId);
504            }
505    
506            @Override
507            public void deleteGroupTags(long groupId)
508                    throws com.liferay.portal.kernel.exception.PortalException,
509                            com.liferay.portal.kernel.exception.SystemException {
510                    _assetTagLocalService.deleteGroupTags(groupId);
511            }
512    
513            @Override
514            public void deleteTag(com.liferay.portlet.asset.model.AssetTag tag)
515                    throws com.liferay.portal.kernel.exception.PortalException,
516                            com.liferay.portal.kernel.exception.SystemException {
517                    _assetTagLocalService.deleteTag(tag);
518            }
519    
520            @Override
521            public void deleteTag(long tagId)
522                    throws com.liferay.portal.kernel.exception.PortalException,
523                            com.liferay.portal.kernel.exception.SystemException {
524                    _assetTagLocalService.deleteTag(tagId);
525            }
526    
527            @Override
528            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getEntryTags(
529                    long entryId)
530                    throws com.liferay.portal.kernel.exception.SystemException {
531                    return _assetTagLocalService.getEntryTags(entryId);
532            }
533    
534            @Override
535            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupsTags(
536                    long[] groupIds)
537                    throws com.liferay.portal.kernel.exception.SystemException {
538                    return _assetTagLocalService.getGroupsTags(groupIds);
539            }
540    
541            @Override
542            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupTags(
543                    long groupId)
544                    throws com.liferay.portal.kernel.exception.SystemException {
545                    return _assetTagLocalService.getGroupTags(groupId);
546            }
547    
548            @Override
549            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getGroupTags(
550                    long groupId, int start, int end)
551                    throws com.liferay.portal.kernel.exception.SystemException {
552                    return _assetTagLocalService.getGroupTags(groupId, start, end);
553            }
554    
555            @Override
556            public int getGroupTagsCount(long groupId)
557                    throws com.liferay.portal.kernel.exception.SystemException {
558                    return _assetTagLocalService.getGroupTagsCount(groupId);
559            }
560    
561            @Override
562            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getSocialActivityCounterOffsetTags(
563                    long groupId, java.lang.String socialActivityCounterName,
564                    int startOffset, int endOffset)
565                    throws com.liferay.portal.kernel.exception.SystemException {
566                    return _assetTagLocalService.getSocialActivityCounterOffsetTags(groupId,
567                            socialActivityCounterName, startOffset, endOffset);
568            }
569    
570            @Override
571            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getSocialActivityCounterPeriodTags(
572                    long groupId, java.lang.String socialActivityCounterName,
573                    int startPeriod, int endPeriod)
574                    throws com.liferay.portal.kernel.exception.SystemException {
575                    return _assetTagLocalService.getSocialActivityCounterPeriodTags(groupId,
576                            socialActivityCounterName, startPeriod, endPeriod);
577            }
578    
579            @Override
580            public com.liferay.portlet.asset.model.AssetTag getTag(long tagId)
581                    throws com.liferay.portal.kernel.exception.PortalException,
582                            com.liferay.portal.kernel.exception.SystemException {
583                    return _assetTagLocalService.getTag(tagId);
584            }
585    
586            @Override
587            public com.liferay.portlet.asset.model.AssetTag getTag(long groupId,
588                    java.lang.String name)
589                    throws com.liferay.portal.kernel.exception.PortalException,
590                            com.liferay.portal.kernel.exception.SystemException {
591                    return _assetTagLocalService.getTag(groupId, name);
592            }
593    
594            @Override
595            public long[] getTagIds(long groupId, java.lang.String[] names)
596                    throws com.liferay.portal.kernel.exception.PortalException,
597                            com.liferay.portal.kernel.exception.SystemException {
598                    return _assetTagLocalService.getTagIds(groupId, names);
599            }
600    
601            @Override
602            public long[] getTagIds(long[] groupIds, java.lang.String name)
603                    throws com.liferay.portal.kernel.exception.PortalException,
604                            com.liferay.portal.kernel.exception.SystemException {
605                    return _assetTagLocalService.getTagIds(groupIds, name);
606            }
607    
608            @Override
609            public long[] getTagIds(long[] groupIds, java.lang.String[] names)
610                    throws com.liferay.portal.kernel.exception.PortalException,
611                            com.liferay.portal.kernel.exception.SystemException {
612                    return _assetTagLocalService.getTagIds(groupIds, names);
613            }
614    
615            @Override
616            public java.lang.String[] getTagNames()
617                    throws com.liferay.portal.kernel.exception.SystemException {
618                    return _assetTagLocalService.getTagNames();
619            }
620    
621            @Override
622            public java.lang.String[] getTagNames(long classNameId, long classPK)
623                    throws com.liferay.portal.kernel.exception.SystemException {
624                    return _assetTagLocalService.getTagNames(classNameId, classPK);
625            }
626    
627            @Override
628            public java.lang.String[] getTagNames(java.lang.String className,
629                    long classPK)
630                    throws com.liferay.portal.kernel.exception.SystemException {
631                    return _assetTagLocalService.getTagNames(className, classPK);
632            }
633    
634            @Override
635            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags()
636                    throws com.liferay.portal.kernel.exception.SystemException {
637                    return _assetTagLocalService.getTags();
638            }
639    
640            @Override
641            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
642                    long classNameId, long classPK)
643                    throws com.liferay.portal.kernel.exception.SystemException {
644                    return _assetTagLocalService.getTags(classNameId, classPK);
645            }
646    
647            @Override
648            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
649                    long groupId, long classNameId, java.lang.String name)
650                    throws com.liferay.portal.kernel.exception.SystemException {
651                    return _assetTagLocalService.getTags(groupId, classNameId, name);
652            }
653    
654            @Override
655            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
656                    long groupId, long classNameId, java.lang.String name, int start,
657                    int end) throws com.liferay.portal.kernel.exception.SystemException {
658                    return _assetTagLocalService.getTags(groupId, classNameId, name, start,
659                            end);
660            }
661    
662            @Override
663            public java.util.List<com.liferay.portlet.asset.model.AssetTag> getTags(
664                    java.lang.String className, long classPK)
665                    throws com.liferay.portal.kernel.exception.SystemException {
666                    return _assetTagLocalService.getTags(className, classPK);
667            }
668    
669            @Override
670            public int getTagsSize(long groupId, long classNameId, java.lang.String name)
671                    throws com.liferay.portal.kernel.exception.SystemException {
672                    return _assetTagLocalService.getTagsSize(groupId, classNameId, name);
673            }
674    
675            @Override
676            public boolean hasTag(long groupId, java.lang.String name)
677                    throws com.liferay.portal.kernel.exception.PortalException,
678                            com.liferay.portal.kernel.exception.SystemException {
679                    return _assetTagLocalService.hasTag(groupId, name);
680            }
681    
682            @Override
683            public com.liferay.portlet.asset.model.AssetTag incrementAssetCount(
684                    long tagId, long classNameId)
685                    throws com.liferay.portal.kernel.exception.PortalException,
686                            com.liferay.portal.kernel.exception.SystemException {
687                    return _assetTagLocalService.incrementAssetCount(tagId, classNameId);
688            }
689    
690            @Override
691            public void mergeTags(long fromTagId, long toTagId,
692                    boolean overrideProperties)
693                    throws com.liferay.portal.kernel.exception.PortalException,
694                            com.liferay.portal.kernel.exception.SystemException {
695                    _assetTagLocalService.mergeTags(fromTagId, toTagId, overrideProperties);
696            }
697    
698            @Override
699            public java.util.List<com.liferay.portlet.asset.model.AssetTag> search(
700                    long groupId, java.lang.String name, java.lang.String[] tagProperties,
701                    int start, int end)
702                    throws com.liferay.portal.kernel.exception.SystemException {
703                    return _assetTagLocalService.search(groupId, name, tagProperties,
704                            start, end);
705            }
706    
707            @Override
708            public java.util.List<com.liferay.portlet.asset.model.AssetTag> search(
709                    long[] groupIds, java.lang.String name,
710                    java.lang.String[] tagProperties, int start, int end)
711                    throws com.liferay.portal.kernel.exception.SystemException {
712                    return _assetTagLocalService.search(groupIds, name, tagProperties,
713                            start, end);
714            }
715    
716            @Override
717            public com.liferay.portlet.asset.model.AssetTag updateTag(long userId,
718                    long tagId, java.lang.String name, java.lang.String[] tagProperties,
719                    com.liferay.portal.service.ServiceContext serviceContext)
720                    throws com.liferay.portal.kernel.exception.PortalException,
721                            com.liferay.portal.kernel.exception.SystemException {
722                    return _assetTagLocalService.updateTag(userId, tagId, name,
723                            tagProperties, serviceContext);
724            }
725    
726            /**
727             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
728             */
729            public AssetTagLocalService getWrappedAssetTagLocalService() {
730                    return _assetTagLocalService;
731            }
732    
733            /**
734             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
735             */
736            public void setWrappedAssetTagLocalService(
737                    AssetTagLocalService assetTagLocalService) {
738                    _assetTagLocalService = assetTagLocalService;
739            }
740    
741            @Override
742            public AssetTagLocalService getWrappedService() {
743                    return _assetTagLocalService;
744            }
745    
746            @Override
747            public void setWrappedService(AssetTagLocalService assetTagLocalService) {
748                    _assetTagLocalService = assetTagLocalService;
749            }
750    
751            private AssetTagLocalService _assetTagLocalService;
752    }