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 AssetVocabularyLocalService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see AssetVocabularyLocalService
024     * @generated
025     */
026    public class AssetVocabularyLocalServiceWrapper
027            implements AssetVocabularyLocalService,
028                    ServiceWrapper<AssetVocabularyLocalService> {
029            public AssetVocabularyLocalServiceWrapper(
030                    AssetVocabularyLocalService assetVocabularyLocalService) {
031                    _assetVocabularyLocalService = assetVocabularyLocalService;
032            }
033    
034            /**
035            * Adds the asset vocabulary to the database. Also notifies the appropriate model listeners.
036            *
037            * @param assetVocabulary the asset vocabulary
038            * @return the asset vocabulary that was added
039            * @throws SystemException if a system exception occurred
040            */
041            @Override
042            public com.liferay.portlet.asset.model.AssetVocabulary addAssetVocabulary(
043                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
044                    throws com.liferay.portal.kernel.exception.SystemException {
045                    return _assetVocabularyLocalService.addAssetVocabulary(assetVocabulary);
046            }
047    
048            /**
049            * Creates a new asset vocabulary with the primary key. Does not add the asset vocabulary to the database.
050            *
051            * @param vocabularyId the primary key for the new asset vocabulary
052            * @return the new asset vocabulary
053            */
054            @Override
055            public com.liferay.portlet.asset.model.AssetVocabulary createAssetVocabulary(
056                    long vocabularyId) {
057                    return _assetVocabularyLocalService.createAssetVocabulary(vocabularyId);
058            }
059    
060            /**
061            * Deletes the asset vocabulary with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param vocabularyId the primary key of the asset vocabulary
064            * @return the asset vocabulary that was removed
065            * @throws PortalException if a asset vocabulary with the primary key could not be found
066            * @throws SystemException if a system exception occurred
067            */
068            @Override
069            public com.liferay.portlet.asset.model.AssetVocabulary deleteAssetVocabulary(
070                    long vocabularyId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    return _assetVocabularyLocalService.deleteAssetVocabulary(vocabularyId);
074            }
075    
076            /**
077            * Deletes the asset vocabulary from the database. Also notifies the appropriate model listeners.
078            *
079            * @param assetVocabulary the asset vocabulary
080            * @return the asset vocabulary that was removed
081            * @throws SystemException if a system exception occurred
082            */
083            @Override
084            public com.liferay.portlet.asset.model.AssetVocabulary deleteAssetVocabulary(
085                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
086                    throws com.liferay.portal.kernel.exception.SystemException {
087                    return _assetVocabularyLocalService.deleteAssetVocabulary(assetVocabulary);
088            }
089    
090            @Override
091            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
092                    return _assetVocabularyLocalService.dynamicQuery();
093            }
094    
095            /**
096            * Performs a dynamic query on the database and returns the matching rows.
097            *
098            * @param dynamicQuery the dynamic query
099            * @return the matching rows
100            * @throws SystemException if a system exception occurred
101            */
102            @Override
103            @SuppressWarnings("rawtypes")
104            public java.util.List dynamicQuery(
105                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106                    throws com.liferay.portal.kernel.exception.SystemException {
107                    return _assetVocabularyLocalService.dynamicQuery(dynamicQuery);
108            }
109    
110            /**
111            * Performs a dynamic query on the database and returns a range of the matching rows.
112            *
113            * <p>
114            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetVocabularyModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
115            * </p>
116            *
117            * @param dynamicQuery the dynamic query
118            * @param start the lower bound of the range of model instances
119            * @param end the upper bound of the range of model instances (not inclusive)
120            * @return the range of matching rows
121            * @throws SystemException if a system exception occurred
122            */
123            @Override
124            @SuppressWarnings("rawtypes")
125            public java.util.List dynamicQuery(
126                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
127                    int end) throws com.liferay.portal.kernel.exception.SystemException {
128                    return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start,
129                            end);
130            }
131    
132            /**
133            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
134            *
135            * <p>
136            * 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.AssetVocabularyModelImpl}. 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.
137            * </p>
138            *
139            * @param dynamicQuery the dynamic query
140            * @param start the lower bound of the range of model instances
141            * @param end the upper bound of the range of model instances (not inclusive)
142            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
143            * @return the ordered range of matching rows
144            * @throws SystemException if a system exception occurred
145            */
146            @Override
147            @SuppressWarnings("rawtypes")
148            public java.util.List dynamicQuery(
149                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
150                    int end,
151                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
152                    throws com.liferay.portal.kernel.exception.SystemException {
153                    return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start,
154                            end, orderByComparator);
155            }
156    
157            /**
158            * Returns the number of rows that match the dynamic query.
159            *
160            * @param dynamicQuery the dynamic query
161            * @return the number of rows that match the dynamic query
162            * @throws SystemException if a system exception occurred
163            */
164            @Override
165            public long dynamicQueryCount(
166                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
167                    throws com.liferay.portal.kernel.exception.SystemException {
168                    return _assetVocabularyLocalService.dynamicQueryCount(dynamicQuery);
169            }
170    
171            /**
172            * Returns the number of rows that match the dynamic query.
173            *
174            * @param dynamicQuery the dynamic query
175            * @param projection the projection to apply to the query
176            * @return the number of rows that match the dynamic query
177            * @throws SystemException if a system exception occurred
178            */
179            @Override
180            public long dynamicQueryCount(
181                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
182                    com.liferay.portal.kernel.dao.orm.Projection projection)
183                    throws com.liferay.portal.kernel.exception.SystemException {
184                    return _assetVocabularyLocalService.dynamicQueryCount(dynamicQuery,
185                            projection);
186            }
187    
188            @Override
189            public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabulary(
190                    long vocabularyId)
191                    throws com.liferay.portal.kernel.exception.SystemException {
192                    return _assetVocabularyLocalService.fetchAssetVocabulary(vocabularyId);
193            }
194    
195            /**
196            * Returns the asset vocabulary with the matching UUID and company.
197            *
198            * @param uuid the asset vocabulary's UUID
199            * @param companyId the primary key of the company
200            * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
201            * @throws SystemException if a system exception occurred
202            */
203            @Override
204            public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabularyByUuidAndCompanyId(
205                    java.lang.String uuid, long companyId)
206                    throws com.liferay.portal.kernel.exception.SystemException {
207                    return _assetVocabularyLocalService.fetchAssetVocabularyByUuidAndCompanyId(uuid,
208                            companyId);
209            }
210    
211            /**
212            * Returns the asset vocabulary matching the UUID and group.
213            *
214            * @param uuid the asset vocabulary's UUID
215            * @param groupId the primary key of the group
216            * @return the matching asset vocabulary, or <code>null</code> if a matching asset vocabulary could not be found
217            * @throws SystemException if a system exception occurred
218            */
219            @Override
220            public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabularyByUuidAndGroupId(
221                    java.lang.String uuid, long groupId)
222                    throws com.liferay.portal.kernel.exception.SystemException {
223                    return _assetVocabularyLocalService.fetchAssetVocabularyByUuidAndGroupId(uuid,
224                            groupId);
225            }
226    
227            /**
228            * Returns the asset vocabulary with the primary key.
229            *
230            * @param vocabularyId the primary key of the asset vocabulary
231            * @return the asset vocabulary
232            * @throws PortalException if a asset vocabulary with the primary key could not be found
233            * @throws SystemException if a system exception occurred
234            */
235            @Override
236            public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabulary(
237                    long vocabularyId)
238                    throws com.liferay.portal.kernel.exception.PortalException,
239                            com.liferay.portal.kernel.exception.SystemException {
240                    return _assetVocabularyLocalService.getAssetVocabulary(vocabularyId);
241            }
242    
243            @Override
244            public com.liferay.portal.model.PersistedModel getPersistedModel(
245                    java.io.Serializable primaryKeyObj)
246                    throws com.liferay.portal.kernel.exception.PortalException,
247                            com.liferay.portal.kernel.exception.SystemException {
248                    return _assetVocabularyLocalService.getPersistedModel(primaryKeyObj);
249            }
250    
251            /**
252            * Returns the asset vocabulary with the matching UUID and company.
253            *
254            * @param uuid the asset vocabulary's UUID
255            * @param companyId the primary key of the company
256            * @return the matching asset vocabulary
257            * @throws PortalException if a matching asset vocabulary could not be found
258            * @throws SystemException if a system exception occurred
259            */
260            @Override
261            public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabularyByUuidAndCompanyId(
262                    java.lang.String uuid, long companyId)
263                    throws com.liferay.portal.kernel.exception.PortalException,
264                            com.liferay.portal.kernel.exception.SystemException {
265                    return _assetVocabularyLocalService.getAssetVocabularyByUuidAndCompanyId(uuid,
266                            companyId);
267            }
268    
269            /**
270            * Returns the asset vocabulary matching the UUID and group.
271            *
272            * @param uuid the asset vocabulary's UUID
273            * @param groupId the primary key of the group
274            * @return the matching asset vocabulary
275            * @throws PortalException if a matching asset vocabulary could not be found
276            * @throws SystemException if a system exception occurred
277            */
278            @Override
279            public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabularyByUuidAndGroupId(
280                    java.lang.String uuid, long groupId)
281                    throws com.liferay.portal.kernel.exception.PortalException,
282                            com.liferay.portal.kernel.exception.SystemException {
283                    return _assetVocabularyLocalService.getAssetVocabularyByUuidAndGroupId(uuid,
284                            groupId);
285            }
286    
287            /**
288            * Returns a range of all the asset vocabularies.
289            *
290            * <p>
291            * 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.AssetVocabularyModelImpl}. 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.
292            * </p>
293            *
294            * @param start the lower bound of the range of asset vocabularies
295            * @param end the upper bound of the range of asset vocabularies (not inclusive)
296            * @return the range of asset vocabularies
297            * @throws SystemException if a system exception occurred
298            */
299            @Override
300            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getAssetVocabularies(
301                    int start, int end)
302                    throws com.liferay.portal.kernel.exception.SystemException {
303                    return _assetVocabularyLocalService.getAssetVocabularies(start, end);
304            }
305    
306            /**
307            * Returns the number of asset vocabularies.
308            *
309            * @return the number of asset vocabularies
310            * @throws SystemException if a system exception occurred
311            */
312            @Override
313            public int getAssetVocabulariesCount()
314                    throws com.liferay.portal.kernel.exception.SystemException {
315                    return _assetVocabularyLocalService.getAssetVocabulariesCount();
316            }
317    
318            /**
319            * Updates the asset vocabulary in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
320            *
321            * @param assetVocabulary the asset vocabulary
322            * @return the asset vocabulary that was updated
323            * @throws SystemException if a system exception occurred
324            */
325            @Override
326            public com.liferay.portlet.asset.model.AssetVocabulary updateAssetVocabulary(
327                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
328                    throws com.liferay.portal.kernel.exception.SystemException {
329                    return _assetVocabularyLocalService.updateAssetVocabulary(assetVocabulary);
330            }
331    
332            /**
333            * Returns the Spring bean ID for this bean.
334            *
335            * @return the Spring bean ID for this bean
336            */
337            @Override
338            public java.lang.String getBeanIdentifier() {
339                    return _assetVocabularyLocalService.getBeanIdentifier();
340            }
341    
342            /**
343            * Sets the Spring bean ID for this bean.
344            *
345            * @param beanIdentifier the Spring bean ID for this bean
346            */
347            @Override
348            public void setBeanIdentifier(java.lang.String beanIdentifier) {
349                    _assetVocabularyLocalService.setBeanIdentifier(beanIdentifier);
350            }
351    
352            @Override
353            public com.liferay.portlet.asset.model.AssetVocabulary addDefaultVocabulary(
354                    long groupId)
355                    throws com.liferay.portal.kernel.exception.PortalException,
356                            com.liferay.portal.kernel.exception.SystemException {
357                    return _assetVocabularyLocalService.addDefaultVocabulary(groupId);
358            }
359    
360            /**
361            * @deprecated As of 6.1.0
362            */
363            @Override
364            public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
365                    long userId,
366                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
367                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
368                    java.lang.String settings,
369                    com.liferay.portal.service.ServiceContext serviceContext)
370                    throws com.liferay.portal.kernel.exception.PortalException,
371                            com.liferay.portal.kernel.exception.SystemException {
372                    return _assetVocabularyLocalService.addVocabulary(userId, titleMap,
373                            descriptionMap, settings, serviceContext);
374            }
375    
376            @Override
377            public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
378                    long userId, java.lang.String title,
379                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
380                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
381                    java.lang.String settings,
382                    com.liferay.portal.service.ServiceContext serviceContext)
383                    throws com.liferay.portal.kernel.exception.PortalException,
384                            com.liferay.portal.kernel.exception.SystemException {
385                    return _assetVocabularyLocalService.addVocabulary(userId, title,
386                            titleMap, descriptionMap, settings, serviceContext);
387            }
388    
389            @Override
390            public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
391                    long userId, java.lang.String title,
392                    com.liferay.portal.service.ServiceContext serviceContext)
393                    throws com.liferay.portal.kernel.exception.PortalException,
394                            com.liferay.portal.kernel.exception.SystemException {
395                    return _assetVocabularyLocalService.addVocabulary(userId, title,
396                            serviceContext);
397            }
398    
399            @Override
400            public void addVocabularyResources(
401                    com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
402                    boolean addGroupPermissions, boolean addGuestPermissions)
403                    throws com.liferay.portal.kernel.exception.PortalException,
404                            com.liferay.portal.kernel.exception.SystemException {
405                    _assetVocabularyLocalService.addVocabularyResources(vocabulary,
406                            addGroupPermissions, addGuestPermissions);
407            }
408    
409            @Override
410            public void addVocabularyResources(
411                    com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
412                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
413                    throws com.liferay.portal.kernel.exception.PortalException,
414                            com.liferay.portal.kernel.exception.SystemException {
415                    _assetVocabularyLocalService.addVocabularyResources(vocabulary,
416                            groupPermissions, guestPermissions);
417            }
418    
419            @Override
420            public void deleteVocabularies(long groupId)
421                    throws com.liferay.portal.kernel.exception.PortalException,
422                            com.liferay.portal.kernel.exception.SystemException {
423                    _assetVocabularyLocalService.deleteVocabularies(groupId);
424            }
425    
426            @Override
427            public void deleteVocabulary(
428                    com.liferay.portlet.asset.model.AssetVocabulary vocabulary)
429                    throws com.liferay.portal.kernel.exception.PortalException,
430                            com.liferay.portal.kernel.exception.SystemException {
431                    _assetVocabularyLocalService.deleteVocabulary(vocabulary);
432            }
433    
434            @Override
435            public void deleteVocabulary(long vocabularyId)
436                    throws com.liferay.portal.kernel.exception.PortalException,
437                            com.liferay.portal.kernel.exception.SystemException {
438                    _assetVocabularyLocalService.deleteVocabulary(vocabularyId);
439            }
440    
441            @Override
442            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getCompanyVocabularies(
443                    long companyId)
444                    throws com.liferay.portal.kernel.exception.SystemException {
445                    return _assetVocabularyLocalService.getCompanyVocabularies(companyId);
446            }
447    
448            @Override
449            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
450                    long[] groupIds)
451                    throws com.liferay.portal.kernel.exception.PortalException,
452                            com.liferay.portal.kernel.exception.SystemException {
453                    return _assetVocabularyLocalService.getGroupsVocabularies(groupIds);
454            }
455    
456            @Override
457            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
458                    long[] groupIds, java.lang.String className)
459                    throws com.liferay.portal.kernel.exception.PortalException,
460                            com.liferay.portal.kernel.exception.SystemException {
461                    return _assetVocabularyLocalService.getGroupsVocabularies(groupIds,
462                            className);
463            }
464    
465            @Override
466            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
467                    long groupId)
468                    throws com.liferay.portal.kernel.exception.PortalException,
469                            com.liferay.portal.kernel.exception.SystemException {
470                    return _assetVocabularyLocalService.getGroupVocabularies(groupId);
471            }
472    
473            @Override
474            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
475                    long groupId, boolean addDefaultVocabulary)
476                    throws com.liferay.portal.kernel.exception.PortalException,
477                            com.liferay.portal.kernel.exception.SystemException {
478                    return _assetVocabularyLocalService.getGroupVocabularies(groupId,
479                            addDefaultVocabulary);
480            }
481    
482            @Override
483            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
484                    long groupId, java.lang.String name, int start, int end,
485                    com.liferay.portal.kernel.util.OrderByComparator obc)
486                    throws com.liferay.portal.kernel.exception.SystemException {
487                    return _assetVocabularyLocalService.getGroupVocabularies(groupId, name,
488                            start, end, obc);
489            }
490    
491            @Override
492            public com.liferay.portlet.asset.model.AssetVocabulary getGroupVocabulary(
493                    long groupId, java.lang.String name)
494                    throws com.liferay.portal.kernel.exception.PortalException,
495                            com.liferay.portal.kernel.exception.SystemException {
496                    return _assetVocabularyLocalService.getGroupVocabulary(groupId, name);
497            }
498    
499            @Override
500            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getVocabularies(
501                    long[] vocabularyIds)
502                    throws com.liferay.portal.kernel.exception.PortalException,
503                            com.liferay.portal.kernel.exception.SystemException {
504                    return _assetVocabularyLocalService.getVocabularies(vocabularyIds);
505            }
506    
507            @Override
508            public com.liferay.portlet.asset.model.AssetVocabulary getVocabulary(
509                    long vocabularyId)
510                    throws com.liferay.portal.kernel.exception.PortalException,
511                            com.liferay.portal.kernel.exception.SystemException {
512                    return _assetVocabularyLocalService.getVocabulary(vocabularyId);
513            }
514    
515            /**
516            * @deprecated As of 6.1.0
517            */
518            @Override
519            public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
520                    long vocabularyId,
521                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
522                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
523                    java.lang.String settings,
524                    com.liferay.portal.service.ServiceContext serviceContext)
525                    throws com.liferay.portal.kernel.exception.PortalException,
526                            com.liferay.portal.kernel.exception.SystemException {
527                    return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
528                            titleMap, descriptionMap, settings, serviceContext);
529            }
530    
531            @Override
532            public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
533                    long vocabularyId, java.lang.String title,
534                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
535                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
536                    java.lang.String settings,
537                    com.liferay.portal.service.ServiceContext serviceContext)
538                    throws com.liferay.portal.kernel.exception.PortalException,
539                            com.liferay.portal.kernel.exception.SystemException {
540                    return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
541                            title, titleMap, descriptionMap, settings, serviceContext);
542            }
543    
544            /**
545             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
546             */
547            public AssetVocabularyLocalService getWrappedAssetVocabularyLocalService() {
548                    return _assetVocabularyLocalService;
549            }
550    
551            /**
552             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
553             */
554            public void setWrappedAssetVocabularyLocalService(
555                    AssetVocabularyLocalService assetVocabularyLocalService) {
556                    _assetVocabularyLocalService = assetVocabularyLocalService;
557            }
558    
559            @Override
560            public AssetVocabularyLocalService getWrappedService() {
561                    return _assetVocabularyLocalService;
562            }
563    
564            @Override
565            public void setWrappedService(
566                    AssetVocabularyLocalService assetVocabularyLocalService) {
567                    _assetVocabularyLocalService = assetVocabularyLocalService;
568            }
569    
570            private AssetVocabularyLocalService _assetVocabularyLocalService;
571    }