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