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
067 public void deleteAssetVocabulary(long vocabularyId)
068 throws com.liferay.portal.kernel.exception.PortalException,
069 com.liferay.portal.kernel.exception.SystemException {
070 _assetVocabularyLocalService.deleteAssetVocabulary(vocabularyId);
071 }
072
073
079 public void deleteAssetVocabulary(
080 com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
081 throws com.liferay.portal.kernel.exception.SystemException {
082 _assetVocabularyLocalService.deleteAssetVocabulary(assetVocabulary);
083 }
084
085
092 @SuppressWarnings("rawtypes")
093 public java.util.List dynamicQuery(
094 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
095 throws com.liferay.portal.kernel.exception.SystemException {
096 return _assetVocabularyLocalService.dynamicQuery(dynamicQuery);
097 }
098
099
112 @SuppressWarnings("rawtypes")
113 public java.util.List dynamicQuery(
114 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
115 int end) throws com.liferay.portal.kernel.exception.SystemException {
116 return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start,
117 end);
118 }
119
120
134 @SuppressWarnings("rawtypes")
135 public java.util.List dynamicQuery(
136 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
137 int end,
138 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
139 throws com.liferay.portal.kernel.exception.SystemException {
140 return _assetVocabularyLocalService.dynamicQuery(dynamicQuery, start,
141 end, orderByComparator);
142 }
143
144
151 public long dynamicQueryCount(
152 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153 throws com.liferay.portal.kernel.exception.SystemException {
154 return _assetVocabularyLocalService.dynamicQueryCount(dynamicQuery);
155 }
156
157 public com.liferay.portlet.asset.model.AssetVocabulary fetchAssetVocabulary(
158 long vocabularyId)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _assetVocabularyLocalService.fetchAssetVocabulary(vocabularyId);
161 }
162
163
171 public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabulary(
172 long vocabularyId)
173 throws com.liferay.portal.kernel.exception.PortalException,
174 com.liferay.portal.kernel.exception.SystemException {
175 return _assetVocabularyLocalService.getAssetVocabulary(vocabularyId);
176 }
177
178 public com.liferay.portal.model.PersistedModel getPersistedModel(
179 java.io.Serializable primaryKeyObj)
180 throws com.liferay.portal.kernel.exception.PortalException,
181 com.liferay.portal.kernel.exception.SystemException {
182 return _assetVocabularyLocalService.getPersistedModel(primaryKeyObj);
183 }
184
185
194 public com.liferay.portlet.asset.model.AssetVocabulary getAssetVocabularyByUuidAndGroupId(
195 java.lang.String uuid, long groupId)
196 throws com.liferay.portal.kernel.exception.PortalException,
197 com.liferay.portal.kernel.exception.SystemException {
198 return _assetVocabularyLocalService.getAssetVocabularyByUuidAndGroupId(uuid,
199 groupId);
200 }
201
202
214 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getAssetVocabularies(
215 int start, int end)
216 throws com.liferay.portal.kernel.exception.SystemException {
217 return _assetVocabularyLocalService.getAssetVocabularies(start, end);
218 }
219
220
226 public int getAssetVocabulariesCount()
227 throws com.liferay.portal.kernel.exception.SystemException {
228 return _assetVocabularyLocalService.getAssetVocabulariesCount();
229 }
230
231
238 public com.liferay.portlet.asset.model.AssetVocabulary updateAssetVocabulary(
239 com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary)
240 throws com.liferay.portal.kernel.exception.SystemException {
241 return _assetVocabularyLocalService.updateAssetVocabulary(assetVocabulary);
242 }
243
244
252 public com.liferay.portlet.asset.model.AssetVocabulary updateAssetVocabulary(
253 com.liferay.portlet.asset.model.AssetVocabulary assetVocabulary,
254 boolean merge)
255 throws com.liferay.portal.kernel.exception.SystemException {
256 return _assetVocabularyLocalService.updateAssetVocabulary(assetVocabulary,
257 merge);
258 }
259
260
265 public java.lang.String getBeanIdentifier() {
266 return _assetVocabularyLocalService.getBeanIdentifier();
267 }
268
269
274 public void setBeanIdentifier(java.lang.String beanIdentifier) {
275 _assetVocabularyLocalService.setBeanIdentifier(beanIdentifier);
276 }
277
278
281 public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
282 long userId,
283 java.util.Map<java.util.Locale, java.lang.String> titleMap,
284 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
285 java.lang.String settings,
286 com.liferay.portal.service.ServiceContext serviceContext)
287 throws com.liferay.portal.kernel.exception.PortalException,
288 com.liferay.portal.kernel.exception.SystemException {
289 return _assetVocabularyLocalService.addVocabulary(userId, titleMap,
290 descriptionMap, settings, serviceContext);
291 }
292
293 public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
294 long userId, java.lang.String title,
295 java.util.Map<java.util.Locale, java.lang.String> titleMap,
296 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
297 java.lang.String settings,
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 titleMap, descriptionMap, settings, 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
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
437 public AssetVocabularyLocalService getWrappedAssetVocabularyLocalService() {
438 return _assetVocabularyLocalService;
439 }
440
441
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 }