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
256 public java.lang.String getBeanIdentifier() {
257 return _assetVocabularyLocalService.getBeanIdentifier();
258 }
259
260
265 public void setBeanIdentifier(java.lang.String beanIdentifier) {
266 _assetVocabularyLocalService.setBeanIdentifier(beanIdentifier);
267 }
268
269
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 void addVocabularyResources(
297 com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
298 boolean addGroupPermissions, boolean addGuestPermissions)
299 throws com.liferay.portal.kernel.exception.PortalException,
300 com.liferay.portal.kernel.exception.SystemException {
301 _assetVocabularyLocalService.addVocabularyResources(vocabulary,
302 addGroupPermissions, addGuestPermissions);
303 }
304
305 public void addVocabularyResources(
306 com.liferay.portlet.asset.model.AssetVocabulary vocabulary,
307 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
308 throws com.liferay.portal.kernel.exception.PortalException,
309 com.liferay.portal.kernel.exception.SystemException {
310 _assetVocabularyLocalService.addVocabularyResources(vocabulary,
311 groupPermissions, guestPermissions);
312 }
313
314 public void deleteVocabularies(long groupId)
315 throws com.liferay.portal.kernel.exception.PortalException,
316 com.liferay.portal.kernel.exception.SystemException {
317 _assetVocabularyLocalService.deleteVocabularies(groupId);
318 }
319
320 public void deleteVocabulary(
321 com.liferay.portlet.asset.model.AssetVocabulary vocabulary)
322 throws com.liferay.portal.kernel.exception.PortalException,
323 com.liferay.portal.kernel.exception.SystemException {
324 _assetVocabularyLocalService.deleteVocabulary(vocabulary);
325 }
326
327 public void deleteVocabulary(long vocabularyId)
328 throws com.liferay.portal.kernel.exception.PortalException,
329 com.liferay.portal.kernel.exception.SystemException {
330 _assetVocabularyLocalService.deleteVocabulary(vocabularyId);
331 }
332
333 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getCompanyVocabularies(
334 long companyId)
335 throws com.liferay.portal.kernel.exception.SystemException {
336 return _assetVocabularyLocalService.getCompanyVocabularies(companyId);
337 }
338
339 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
340 long[] groupIds)
341 throws com.liferay.portal.kernel.exception.PortalException,
342 com.liferay.portal.kernel.exception.SystemException {
343 return _assetVocabularyLocalService.getGroupsVocabularies(groupIds);
344 }
345
346 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
347 long[] groupIds, java.lang.String className)
348 throws com.liferay.portal.kernel.exception.PortalException,
349 com.liferay.portal.kernel.exception.SystemException {
350 return _assetVocabularyLocalService.getGroupsVocabularies(groupIds,
351 className);
352 }
353
354 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
355 long groupId)
356 throws com.liferay.portal.kernel.exception.PortalException,
357 com.liferay.portal.kernel.exception.SystemException {
358 return _assetVocabularyLocalService.getGroupVocabularies(groupId);
359 }
360
361 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
362 long groupId, boolean createDefaultVocabulary)
363 throws com.liferay.portal.kernel.exception.PortalException,
364 com.liferay.portal.kernel.exception.SystemException {
365 return _assetVocabularyLocalService.getGroupVocabularies(groupId,
366 createDefaultVocabulary);
367 }
368
369 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
370 long groupId, java.lang.String name, int start, int end,
371 com.liferay.portal.kernel.util.OrderByComparator obc)
372 throws com.liferay.portal.kernel.exception.SystemException {
373 return _assetVocabularyLocalService.getGroupVocabularies(groupId, name,
374 start, end, obc);
375 }
376
377 public com.liferay.portlet.asset.model.AssetVocabulary getGroupVocabulary(
378 long groupId, java.lang.String name)
379 throws com.liferay.portal.kernel.exception.PortalException,
380 com.liferay.portal.kernel.exception.SystemException {
381 return _assetVocabularyLocalService.getGroupVocabulary(groupId, name);
382 }
383
384 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getVocabularies(
385 long[] vocabularyIds)
386 throws com.liferay.portal.kernel.exception.PortalException,
387 com.liferay.portal.kernel.exception.SystemException {
388 return _assetVocabularyLocalService.getVocabularies(vocabularyIds);
389 }
390
391 public com.liferay.portlet.asset.model.AssetVocabulary getVocabulary(
392 long vocabularyId)
393 throws com.liferay.portal.kernel.exception.PortalException,
394 com.liferay.portal.kernel.exception.SystemException {
395 return _assetVocabularyLocalService.getVocabulary(vocabularyId);
396 }
397
398
401 public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
402 long vocabularyId,
403 java.util.Map<java.util.Locale, java.lang.String> titleMap,
404 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
405 java.lang.String settings,
406 com.liferay.portal.service.ServiceContext serviceContext)
407 throws com.liferay.portal.kernel.exception.PortalException,
408 com.liferay.portal.kernel.exception.SystemException {
409 return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
410 titleMap, descriptionMap, settings, serviceContext);
411 }
412
413 public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
414 long vocabularyId, java.lang.String title,
415 java.util.Map<java.util.Locale, java.lang.String> titleMap,
416 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
417 java.lang.String settings,
418 com.liferay.portal.service.ServiceContext serviceContext)
419 throws com.liferay.portal.kernel.exception.PortalException,
420 com.liferay.portal.kernel.exception.SystemException {
421 return _assetVocabularyLocalService.updateVocabulary(vocabularyId,
422 title, titleMap, descriptionMap, settings, serviceContext);
423 }
424
425
428 public AssetVocabularyLocalService getWrappedAssetVocabularyLocalService() {
429 return _assetVocabularyLocalService;
430 }
431
432
435 public void setWrappedAssetVocabularyLocalService(
436 AssetVocabularyLocalService assetVocabularyLocalService) {
437 _assetVocabularyLocalService = assetVocabularyLocalService;
438 }
439
440 public AssetVocabularyLocalService getWrappedService() {
441 return _assetVocabularyLocalService;
442 }
443
444 public void setWrappedService(
445 AssetVocabularyLocalService assetVocabularyLocalService) {
446 _assetVocabularyLocalService = assetVocabularyLocalService;
447 }
448
449 private AssetVocabularyLocalService _assetVocabularyLocalService;
450 }