001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class AssetVocabularyLocalServiceWrapper
029 implements AssetVocabularyLocalService,
030 ServiceWrapper<AssetVocabularyLocalService> {
031 public AssetVocabularyLocalServiceWrapper(
032 AssetVocabularyLocalService assetVocabularyLocalService) {
033 _assetVocabularyLocalService = assetVocabularyLocalService;
034 }
035
036
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
055 public com.liferay.portlet.asset.model.AssetVocabulary createAssetVocabulary(
056 long vocabularyId) {
057 return _assetVocabularyLocalService.createAssetVocabulary(vocabularyId);
058 }
059
060
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
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
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
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
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
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
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
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
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
233 public int getAssetVocabulariesCount()
234 throws com.liferay.portal.kernel.exception.SystemException {
235 return _assetVocabularyLocalService.getAssetVocabulariesCount();
236 }
237
238
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
259 public com.liferay.portlet.asset.model.AssetVocabulary updateAssetVocabulary(
260 com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary,
261 boolean merge)
262 throws com.liferay.portal.kernel.exception.SystemException {
263 return _assetVocabularyLocalService.updateAssetVocabulary(assetVocabulary,
264 merge);
265 }
266
267
272 public java.lang.String getBeanIdentifier() {
273 return _assetVocabularyLocalService.getBeanIdentifier();
274 }
275
276
281 public void setBeanIdentifier(java.lang.String beanIdentifier) {
282 _assetVocabularyLocalService.setBeanIdentifier(beanIdentifier);
283 }
284
285
288 public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
289 long userId,
290 java.util.Map<java.util.Locale, java.lang.String> titleMap,
291 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
292 java.lang.String settings,
293 com.liferay.portal.service.ServiceContext serviceContext)
294 throws com.liferay.portal.kernel.exception.PortalException,
295 com.liferay.portal.kernel.exception.SystemException {
296 return _assetVocabularyLocalService.addVocabulary(userId, titleMap,
297 descriptionMap, settings, serviceContext);
298 }
299
300 public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
301 long userId, java.lang.String title,
302 java.util.Map<java.util.Locale, java.lang.String> titleMap,
303 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
304 java.lang.String settings,
305 com.liferay.portal.service.ServiceContext serviceContext)
306 throws com.liferay.portal.kernel.exception.PortalException,
307 com.liferay.portal.kernel.exception.SystemException {
308 return _assetVocabularyLocalService.addVocabulary(userId, title,
309 titleMap, descriptionMap, settings, serviceContext);
310 }
311
312 public void addVocabularyResources(
313 com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
314 boolean addGroupPermissions, boolean addGuestPermissions)
315 throws com.liferay.portal.kernel.exception.PortalException,
316 com.liferay.portal.kernel.exception.SystemException {
317 _assetVocabularyLocalService.addVocabularyResources(vocabulary,
318 addGroupPermissions, addGuestPermissions);
319 }
320
321 public void addVocabularyResources(
322 com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
323 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
324 throws com.liferay.portal.kernel.exception.PortalException,
325 com.liferay.portal.kernel.exception.SystemException {
326 _assetVocabularyLocalService.addVocabularyResources(vocabulary,
327 groupPermissions, guestPermissions);
328 }
329
330 public void deleteVocabularies(long groupId)
331 throws com.liferay.portal.kernel.exception.PortalException,
332 com.liferay.portal.kernel.exception.SystemException {
333 _assetVocabularyLocalService.deleteVocabularies(groupId);
334 }
335
336 public void deleteVocabulary(
337 com.liferay.portlet.asset.model.AssetVocabulary vocabulary)
338 throws com.liferay.portal.kernel.exception.PortalException,
339 com.liferay.portal.kernel.exception.SystemException {
340 _assetVocabularyLocalService.deleteVocabulary(vocabulary);
341 }
342
343 public void deleteVocabulary(long vocabularyId)
344 throws com.liferay.portal.kernel.exception.PortalException,
345 com.liferay.portal.kernel.exception.SystemException {
346 _assetVocabularyLocalService.deleteVocabulary(vocabularyId);
347 }
348
349 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getCompanyVocabularies(
350 long companyId)
351 throws com.liferay.portal.kernel.exception.SystemException {
352 return _assetVocabularyLocalService.getCompanyVocabularies(companyId);
353 }
354
355 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
356 long[] groupIds)
357 throws com.liferay.portal.kernel.exception.PortalException,
358 com.liferay.portal.kernel.exception.SystemException {
359 return _assetVocabularyLocalService.getGroupsVocabularies(groupIds);
360 }
361
362 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
363 long[] groupIds, java.lang.String className)
364 throws com.liferay.portal.kernel.exception.PortalException,
365 com.liferay.portal.kernel.exception.SystemException {
366 return _assetVocabularyLocalService.getGroupsVocabularies(groupIds,
367 className);
368 }
369
370 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
371 long groupId)
372 throws com.liferay.portal.kernel.exception.PortalException,
373 com.liferay.portal.kernel.exception.SystemException {
374 return _assetVocabularyLocalService.getGroupVocabularies(groupId);
375 }
376
377 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
378 long groupId, boolean createDefaultVocabulary)
379 throws com.liferay.portal.kernel.exception.PortalException,
380 com.liferay.portal.kernel.exception.SystemException {
381 return _assetVocabularyLocalService.getGroupVocabularies(groupId,
382 createDefaultVocabulary);
383 }
384
385 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
386 long groupId, java.lang.String name, int start, int end,
387 com.liferay.portal.kernel.util.OrderByComparator obc)
388 throws com.liferay.portal.kernel.exception.SystemException {
389 return _assetVocabularyLocalService.getGroupVocabularies(groupId, name,
390 start, end, obc);
391 }
392
393 public com.liferay.portlet.asset.model.AssetVocabulary getGroupVocabulary(
394 long groupId, java.lang.String name)
395 throws com.liferay.portal.kernel.exception.PortalException,
396 com.liferay.portal.kernel.exception.SystemException {
397 return _assetVocabularyLocalService.getGroupVocabulary(groupId, name);
398 }
399
400 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getVocabularies(
401 long[] vocabularyIds)
402 throws com.liferay.portal.kernel.exception.PortalException,
403 com.liferay.portal.kernel.exception.SystemException {
404 return _assetVocabularyLocalService.getVocabularies(vocabularyIds);
405 }
406
407 public com.liferay.portlet.asset.model.AssetVocabulary getVocabulary(
408 long vocabularyId)
409 throws com.liferay.portal.kernel.exception.PortalException,
410 com.liferay.portal.kernel.exception.SystemException {
411 return _assetVocabularyLocalService.getVocabulary(vocabularyId);
412 }
413
414
417 public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
418 long vocabularyId,
419 java.util.Map<java.util.Locale, java.lang.String> titleMap,
420 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
421 java.lang.String settings,
422 com.liferay.portal.service.ServiceContext serviceContext)
423 throws com.liferay.portal.kernel.exception.PortalException,
424 com.liferay.portal.kernel.exception.SystemException {
425 return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
426 titleMap, descriptionMap, settings, serviceContext);
427 }
428
429 public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
430 long vocabularyId, java.lang.String title,
431 java.util.Map<java.util.Locale, java.lang.String> titleMap,
432 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
433 java.lang.String settings,
434 com.liferay.portal.service.ServiceContext serviceContext)
435 throws com.liferay.portal.kernel.exception.PortalException,
436 com.liferay.portal.kernel.exception.SystemException {
437 return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
438 title, titleMap, descriptionMap, settings, serviceContext);
439 }
440
441
444 public AssetVocabularyLocalService getWrappedAssetVocabularyLocalService() {
445 return _assetVocabularyLocalService;
446 }
447
448
451 public void setWrappedAssetVocabularyLocalService(
452 AssetVocabularyLocalService assetVocabularyLocalService) {
453 _assetVocabularyLocalService = assetVocabularyLocalService;
454 }
455
456 public AssetVocabularyLocalService getWrappedService() {
457 return _assetVocabularyLocalService;
458 }
459
460 public void setWrappedService(
461 AssetVocabularyLocalService assetVocabularyLocalService) {
462 _assetVocabularyLocalService = assetVocabularyLocalService;
463 }
464
465 private AssetVocabularyLocalService _assetVocabularyLocalService;
466 }