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