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 AssetVocabularyLocalService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       AssetVocabularyLocalService
026     * @generated
027     */
028    public class AssetVocabularyLocalServiceWrapper
029            implements AssetVocabularyLocalService,
030                    ServiceWrapper<AssetVocabularyLocalService> {
031            public AssetVocabularyLocalServiceWrapper(
032                    AssetVocabularyLocalService assetVocabularyLocalService) {
033                    _assetVocabularyLocalService = assetVocabularyLocalService;
034            }
035    
036            /**
037            * Adds the asset vocabulary to the database. Also notifies the appropriate model listeners.
038            *
039            * @param assetVocabulary the asset vocabulary
040            * @return the asset vocabulary that was added
041            * @throws SystemException if a system exception occurred
042            */
043            public com.liferay.portlet.asset.model.AssetVocabulary addAssetVocabulary(
044                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
045                    throws com.liferay.portal.kernel.exception.SystemException {
046                    return _assetVocabularyLocalService.addAssetVocabulary(assetVocabulary);
047            }
048    
049            /**
050            * Creates a new asset vocabulary with the primary key. Does not add the asset vocabulary to the database.
051            *
052            * @param vocabularyId the primary key for the new asset vocabulary
053            * @return the new asset vocabulary
054            */
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            public com.liferay.portlet.asset.model.AssetVocabulary deleteAssetVocabulary(
069                    long vocabularyId)
070                    throws com.liferay.portal.kernel.exception.PortalException,
071                            com.liferay.portal.kernel.exception.SystemException {
072                    return _assetVocabularyLocalService.deleteAssetVocabulary(vocabularyId);
073            }
074    
075            /**
076            * Deletes the asset vocabulary from the database. Also notifies the appropriate model listeners.
077            *
078            * @param assetVocabulary the asset vocabulary
079            * @return the asset vocabulary that was removed
080            * @throws SystemException if a system exception occurred
081            */
082            public com.liferay.portlet.asset.model.AssetVocabulary deleteAssetVocabulary(
083                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
084                    throws com.liferay.portal.kernel.exception.SystemException {
085                    return _assetVocabularyLocalService.deleteAssetVocabulary(assetVocabulary);
086            }
087    
088            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089                    return _assetVocabularyLocalService.dynamicQuery();
090            }
091    
092            /**
093            * Performs a dynamic query on the database and returns the matching rows.
094            *
095            * @param dynamicQuery the dynamic query
096            * @return the matching rows
097            * @throws SystemException if a system exception occurred
098            */
099            @SuppressWarnings("rawtypes")
100            public java.util.List dynamicQuery(
101                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102                    throws com.liferay.portal.kernel.exception.SystemException {
103                    return _assetVocabularyLocalService.dynamicQuery(dynamicQuery);
104            }
105    
106            /**
107            * Performs a dynamic query on the database and returns a range of the matching rows.
108            *
109            * <p>
110            * 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.
111            * </p>
112            *
113            * @param dynamicQuery the dynamic query
114            * @param start the lower bound of the range of model instances
115            * @param end the upper bound of the range of model instances (not inclusive)
116            * @return the range of matching rows
117            * @throws SystemException if a system exception occurred
118            */
119            @SuppressWarnings("rawtypes")
120            public java.util.List dynamicQuery(
121                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
122                    int end) throws com.liferay.portal.kernel.exception.SystemException {
123                    return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start,
124                            end);
125            }
126    
127            /**
128            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
129            *
130            * <p>
131            * 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.
132            * </p>
133            *
134            * @param dynamicQuery the dynamic query
135            * @param start the lower bound of the range of model instances
136            * @param end the upper bound of the range of model instances (not inclusive)
137            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
138            * @return the ordered range of matching rows
139            * @throws SystemException if a system exception occurred
140            */
141            @SuppressWarnings("rawtypes")
142            public java.util.List dynamicQuery(
143                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
144                    int end,
145                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
146                    throws com.liferay.portal.kernel.exception.SystemException {
147                    return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start,
148                            end, orderByComparator);
149            }
150    
151            /**
152            * Returns the number of rows that match the dynamic query.
153            *
154            * @param dynamicQuery the dynamic query
155            * @return the number of rows that match the dynamic query
156            * @throws SystemException if a system exception occurred
157            */
158            public long dynamicQueryCount(
159                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
160                    throws com.liferay.portal.kernel.exception.SystemException {
161                    return _assetVocabularyLocalService.dynamicQueryCount(dynamicQuery);
162            }
163    
164            public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabulary(
165                    long vocabularyId)
166                    throws com.liferay.portal.kernel.exception.SystemException {
167                    return _assetVocabularyLocalService.fetchAssetVocabulary(vocabularyId);
168            }
169    
170            /**
171            * Returns the asset vocabulary with the primary key.
172            *
173            * @param vocabularyId the primary key of the asset vocabulary
174            * @return the asset vocabulary
175            * @throws PortalException if a asset vocabulary with the primary key could not be found
176            * @throws SystemException if a system exception occurred
177            */
178            public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabulary(
179                    long vocabularyId)
180                    throws com.liferay.portal.kernel.exception.PortalException,
181                            com.liferay.portal.kernel.exception.SystemException {
182                    return _assetVocabularyLocalService.getAssetVocabulary(vocabularyId);
183            }
184    
185            public com.liferay.portal.model.PersistedModel getPersistedModel(
186                    java.io.Serializable primaryKeyObj)
187                    throws com.liferay.portal.kernel.exception.PortalException,
188                            com.liferay.portal.kernel.exception.SystemException {
189                    return _assetVocabularyLocalService.getPersistedModel(primaryKeyObj);
190            }
191    
192            /**
193            * Returns the asset vocabulary matching the UUID and group.
194            *
195            * @param uuid the asset vocabulary's UUID
196            * @param groupId the primary key of the group
197            * @return the matching asset vocabulary
198            * @throws PortalException if a matching asset vocabulary could not be found
199            * @throws SystemException if a system exception occurred
200            */
201            public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabularyByUuidAndGroupId(
202                    java.lang.String uuid, long groupId)
203                    throws com.liferay.portal.kernel.exception.PortalException,
204                            com.liferay.portal.kernel.exception.SystemException {
205                    return _assetVocabularyLocalService.getAssetVocabularyByUuidAndGroupId(uuid,
206                            groupId);
207            }
208    
209            /**
210            * Returns a range of all the asset vocabularies.
211            *
212            * <p>
213            * 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.
214            * </p>
215            *
216            * @param start the lower bound of the range of asset vocabularies
217            * @param end the upper bound of the range of asset vocabularies (not inclusive)
218            * @return the range of asset vocabularies
219            * @throws SystemException if a system exception occurred
220            */
221            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getAssetVocabularies(
222                    int start, int end)
223                    throws com.liferay.portal.kernel.exception.SystemException {
224                    return _assetVocabularyLocalService.getAssetVocabularies(start, end);
225            }
226    
227            /**
228            * Returns the number of asset vocabularies.
229            *
230            * @return the number of asset vocabularies
231            * @throws SystemException if a system exception occurred
232            */
233            public int getAssetVocabulariesCount()
234                    throws com.liferay.portal.kernel.exception.SystemException {
235                    return _assetVocabularyLocalService.getAssetVocabulariesCount();
236            }
237    
238            /**
239            * Updates the asset vocabulary in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
240            *
241            * @param assetVocabulary the asset vocabulary
242            * @return the asset vocabulary that was updated
243            * @throws SystemException if a system exception occurred
244            */
245            public com.liferay.portlet.asset.model.AssetVocabulary updateAssetVocabulary(
246                    com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
247                    throws com.liferay.portal.kernel.exception.SystemException {
248                    return _assetVocabularyLocalService.updateAssetVocabulary(assetVocabulary);
249            }
250    
251            /**
252            * Returns the Spring bean ID for this bean.
253            *
254            * @return the Spring bean ID for this bean
255            */
256            public java.lang.String getBeanIdentifier() {
257                    return _assetVocabularyLocalService.getBeanIdentifier();
258            }
259    
260            /**
261            * Sets the Spring bean ID for this bean.
262            *
263            * @param beanIdentifier the Spring bean ID for this bean
264            */
265            public void setBeanIdentifier(java.lang.String beanIdentifier) {
266                    _assetVocabularyLocalService.setBeanIdentifier(beanIdentifier);
267            }
268    
269            /**
270            * @deprecated As of 6.1.0
271            */
272            public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
273                    long userId,
274                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
275                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
276                    java.lang.String settings,
277                    com.liferay.portal.service.ServiceContext serviceContext)
278                    throws com.liferay.portal.kernel.exception.PortalException,
279                            com.liferay.portal.kernel.exception.SystemException {
280                    return _assetVocabularyLocalService.addVocabulary(userId, titleMap,
281                            descriptionMap, settings, serviceContext);
282            }
283    
284            public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
285                    long userId, java.lang.String title,
286                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
287                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
288                    java.lang.String settings,
289                    com.liferay.portal.service.ServiceContext serviceContext)
290                    throws com.liferay.portal.kernel.exception.PortalException,
291                            com.liferay.portal.kernel.exception.SystemException {
292                    return _assetVocabularyLocalService.addVocabulary(userId, title,
293                            titleMap, descriptionMap, settings, serviceContext);
294            }
295    
296            public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
297                    long userId, java.lang.String title,
298                    com.liferay.portal.service.ServiceContext serviceContext)
299                    throws com.liferay.portal.kernel.exception.PortalException,
300                            com.liferay.portal.kernel.exception.SystemException {
301                    return _assetVocabularyLocalService.addVocabulary(userId, title,
302                            serviceContext);
303            }
304    
305            public void addVocabularyResources(
306                    com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
307                    boolean addGroupPermissions, boolean addGuestPermissions)
308                    throws com.liferay.portal.kernel.exception.PortalException,
309                            com.liferay.portal.kernel.exception.SystemException {
310                    _assetVocabularyLocalService.addVocabularyResources(vocabulary,
311                            addGroupPermissions, addGuestPermissions);
312            }
313    
314            public void addVocabularyResources(
315                    com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
316                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
317                    throws com.liferay.portal.kernel.exception.PortalException,
318                            com.liferay.portal.kernel.exception.SystemException {
319                    _assetVocabularyLocalService.addVocabularyResources(vocabulary,
320                            groupPermissions, guestPermissions);
321            }
322    
323            public void deleteVocabularies(long groupId)
324                    throws com.liferay.portal.kernel.exception.PortalException,
325                            com.liferay.portal.kernel.exception.SystemException {
326                    _assetVocabularyLocalService.deleteVocabularies(groupId);
327            }
328    
329            public void deleteVocabulary(
330                    com.liferay.portlet.asset.model.AssetVocabulary vocabulary)
331                    throws com.liferay.portal.kernel.exception.PortalException,
332                            com.liferay.portal.kernel.exception.SystemException {
333                    _assetVocabularyLocalService.deleteVocabulary(vocabulary);
334            }
335    
336            public void deleteVocabulary(long vocabularyId)
337                    throws com.liferay.portal.kernel.exception.PortalException,
338                            com.liferay.portal.kernel.exception.SystemException {
339                    _assetVocabularyLocalService.deleteVocabulary(vocabularyId);
340            }
341    
342            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getCompanyVocabularies(
343                    long companyId)
344                    throws com.liferay.portal.kernel.exception.SystemException {
345                    return _assetVocabularyLocalService.getCompanyVocabularies(companyId);
346            }
347    
348            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
349                    long[] groupIds)
350                    throws com.liferay.portal.kernel.exception.PortalException,
351                            com.liferay.portal.kernel.exception.SystemException {
352                    return _assetVocabularyLocalService.getGroupsVocabularies(groupIds);
353            }
354    
355            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
356                    long[] groupIds, java.lang.String className)
357                    throws com.liferay.portal.kernel.exception.PortalException,
358                            com.liferay.portal.kernel.exception.SystemException {
359                    return _assetVocabularyLocalService.getGroupsVocabularies(groupIds,
360                            className);
361            }
362    
363            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
364                    long groupId)
365                    throws com.liferay.portal.kernel.exception.PortalException,
366                            com.liferay.portal.kernel.exception.SystemException {
367                    return _assetVocabularyLocalService.getGroupVocabularies(groupId);
368            }
369    
370            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
371                    long groupId, boolean createDefaultVocabulary)
372                    throws com.liferay.portal.kernel.exception.PortalException,
373                            com.liferay.portal.kernel.exception.SystemException {
374                    return _assetVocabularyLocalService.getGroupVocabularies(groupId,
375                            createDefaultVocabulary);
376            }
377    
378            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
379                    long groupId, java.lang.String name, int start, int end,
380                    com.liferay.portal.kernel.util.OrderByComparator obc)
381                    throws com.liferay.portal.kernel.exception.SystemException {
382                    return _assetVocabularyLocalService.getGroupVocabularies(groupId, name,
383                            start, end, obc);
384            }
385    
386            public com.liferay.portlet.asset.model.AssetVocabulary getGroupVocabulary(
387                    long groupId, java.lang.String name)
388                    throws com.liferay.portal.kernel.exception.PortalException,
389                            com.liferay.portal.kernel.exception.SystemException {
390                    return _assetVocabularyLocalService.getGroupVocabulary(groupId, name);
391            }
392    
393            public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getVocabularies(
394                    long[] vocabularyIds)
395                    throws com.liferay.portal.kernel.exception.PortalException,
396                            com.liferay.portal.kernel.exception.SystemException {
397                    return _assetVocabularyLocalService.getVocabularies(vocabularyIds);
398            }
399    
400            public com.liferay.portlet.asset.model.AssetVocabulary getVocabulary(
401                    long vocabularyId)
402                    throws com.liferay.portal.kernel.exception.PortalException,
403                            com.liferay.portal.kernel.exception.SystemException {
404                    return _assetVocabularyLocalService.getVocabulary(vocabularyId);
405            }
406    
407            /**
408            * @deprecated As of 6.1.0
409            */
410            public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
411                    long vocabularyId,
412                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
413                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
414                    java.lang.String settings,
415                    com.liferay.portal.service.ServiceContext serviceContext)
416                    throws com.liferay.portal.kernel.exception.PortalException,
417                            com.liferay.portal.kernel.exception.SystemException {
418                    return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
419                            titleMap, descriptionMap, settings, serviceContext);
420            }
421    
422            public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
423                    long vocabularyId, java.lang.String title,
424                    java.util.Map<java.util.Locale, java.lang.String> titleMap,
425                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
426                    java.lang.String settings,
427                    com.liferay.portal.service.ServiceContext serviceContext)
428                    throws com.liferay.portal.kernel.exception.PortalException,
429                            com.liferay.portal.kernel.exception.SystemException {
430                    return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
431                            title, titleMap, descriptionMap, settings, serviceContext);
432            }
433    
434            /**
435             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
436             */
437            public AssetVocabularyLocalService getWrappedAssetVocabularyLocalService() {
438                    return _assetVocabularyLocalService;
439            }
440    
441            /**
442             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
443             */
444            public void setWrappedAssetVocabularyLocalService(
445                    AssetVocabularyLocalService assetVocabularyLocalService) {
446                    _assetVocabularyLocalService = assetVocabularyLocalService;
447            }
448    
449            public AssetVocabularyLocalService getWrappedService() {
450                    return _assetVocabularyLocalService;
451            }
452    
453            public void setWrappedService(
454                    AssetVocabularyLocalService assetVocabularyLocalService) {
455                    _assetVocabularyLocalService = assetVocabularyLocalService;
456            }
457    
458            private AssetVocabularyLocalService _assetVocabularyLocalService;
459    }