001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class AssetVocabularyLocalServiceWrapper
027 implements AssetVocabularyLocalService,
028 ServiceWrapper<AssetVocabularyLocalService> {
029 public AssetVocabularyLocalServiceWrapper(
030 AssetVocabularyLocalService assetVocabularyLocalService) {
031 _assetVocabularyLocalService = assetVocabularyLocalService;
032 }
033
034
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
054 @Override
055 public com.liferay.portlet.asset.model.AssetVocabulary createAssetVocabulary(
056 long vocabularyId) {
057 return _assetVocabularyLocalService.createAssetVocabulary(vocabularyId);
058 }
059
060
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
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
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
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
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
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
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
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
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
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
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
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
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
312 @Override
313 public int getAssetVocabulariesCount()
314 throws com.liferay.portal.kernel.exception.SystemException {
315 return _assetVocabularyLocalService.getAssetVocabulariesCount();
316 }
317
318
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
337 @Override
338 public java.lang.String getBeanIdentifier() {
339 return _assetVocabularyLocalService.getBeanIdentifier();
340 }
341
342
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
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
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
547 public AssetVocabularyLocalService getWrappedAssetVocabularyLocalService() {
548 return _assetVocabularyLocalService;
549 }
550
551
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 }