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