001
014
015 package com.liferay.portlet.asset.service;
016
017
026 public class AssetCategoryLocalServiceWrapper
027 implements AssetCategoryLocalService {
028 public AssetCategoryLocalServiceWrapper(
029 AssetCategoryLocalService assetCategoryLocalService) {
030 _assetCategoryLocalService = assetCategoryLocalService;
031 }
032
033
040 public com.liferay.portlet.asset.model.AssetCategory addAssetCategory(
041 com.liferay.portlet.asset.model.AssetCategory assetCategory)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _assetCategoryLocalService.addAssetCategory(assetCategory);
044 }
045
046
052 public com.liferay.portlet.asset.model.AssetCategory createAssetCategory(
053 long categoryId) {
054 return _assetCategoryLocalService.createAssetCategory(categoryId);
055 }
056
057
064 public void deleteAssetCategory(long categoryId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _assetCategoryLocalService.deleteAssetCategory(categoryId);
068 }
069
070
076 public void deleteAssetCategory(
077 com.liferay.portlet.asset.model.AssetCategory assetCategory)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 _assetCategoryLocalService.deleteAssetCategory(assetCategory);
080 }
081
082
089 @SuppressWarnings("rawtypes")
090 public java.util.List dynamicQuery(
091 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092 throws com.liferay.portal.kernel.exception.SystemException {
093 return _assetCategoryLocalService.dynamicQuery(dynamicQuery);
094 }
095
096
109 @SuppressWarnings("rawtypes")
110 public java.util.List dynamicQuery(
111 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112 int end) throws com.liferay.portal.kernel.exception.SystemException {
113 return _assetCategoryLocalService.dynamicQuery(dynamicQuery, start, end);
114 }
115
116
130 @SuppressWarnings("rawtypes")
131 public java.util.List dynamicQuery(
132 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133 int end,
134 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135 throws com.liferay.portal.kernel.exception.SystemException {
136 return _assetCategoryLocalService.dynamicQuery(dynamicQuery, start,
137 end, orderByComparator);
138 }
139
140
147 public long dynamicQueryCount(
148 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return _assetCategoryLocalService.dynamicQueryCount(dynamicQuery);
151 }
152
153
161 public com.liferay.portlet.asset.model.AssetCategory getAssetCategory(
162 long categoryId)
163 throws com.liferay.portal.kernel.exception.PortalException,
164 com.liferay.portal.kernel.exception.SystemException {
165 return _assetCategoryLocalService.getAssetCategory(categoryId);
166 }
167
168
177 public com.liferay.portlet.asset.model.AssetCategory getAssetCategoryByUuidAndGroupId(
178 java.lang.String uuid, long groupId)
179 throws com.liferay.portal.kernel.exception.PortalException,
180 com.liferay.portal.kernel.exception.SystemException {
181 return _assetCategoryLocalService.getAssetCategoryByUuidAndGroupId(uuid,
182 groupId);
183 }
184
185
197 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getAssetCategories(
198 int start, int end)
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return _assetCategoryLocalService.getAssetCategories(start, end);
201 }
202
203
209 public int getAssetCategoriesCount()
210 throws com.liferay.portal.kernel.exception.SystemException {
211 return _assetCategoryLocalService.getAssetCategoriesCount();
212 }
213
214
221 public com.liferay.portlet.asset.model.AssetCategory updateAssetCategory(
222 com.liferay.portlet.asset.model.AssetCategory assetCategory)
223 throws com.liferay.portal.kernel.exception.SystemException {
224 return _assetCategoryLocalService.updateAssetCategory(assetCategory);
225 }
226
227
235 public com.liferay.portlet.asset.model.AssetCategory updateAssetCategory(
236 com.liferay.portlet.asset.model.AssetCategory assetCategory,
237 boolean merge)
238 throws com.liferay.portal.kernel.exception.SystemException {
239 return _assetCategoryLocalService.updateAssetCategory(assetCategory,
240 merge);
241 }
242
243 public com.liferay.portlet.asset.model.AssetCategory addCategory(
244 long userId, long parentCategoryId,
245 java.util.Map<java.util.Locale, java.lang.String> titleMap,
246 long vocabularyId, java.lang.String[] categoryProperties,
247 com.liferay.portal.service.ServiceContext serviceContext)
248 throws com.liferay.portal.kernel.exception.PortalException,
249 com.liferay.portal.kernel.exception.SystemException {
250 return _assetCategoryLocalService.addCategory(userId, parentCategoryId,
251 titleMap, vocabularyId, categoryProperties, serviceContext);
252 }
253
254 public void addCategoryResources(
255 com.liferay.portlet.asset.model.AssetCategory category,
256 boolean addCommunityPermissions, boolean addGuestPermissions)
257 throws com.liferay.portal.kernel.exception.PortalException,
258 com.liferay.portal.kernel.exception.SystemException {
259 _assetCategoryLocalService.addCategoryResources(category,
260 addCommunityPermissions, addGuestPermissions);
261 }
262
263 public void addCategoryResources(
264 com.liferay.portlet.asset.model.AssetCategory category,
265 java.lang.String[] communityPermissions,
266 java.lang.String[] guestPermissions)
267 throws com.liferay.portal.kernel.exception.PortalException,
268 com.liferay.portal.kernel.exception.SystemException {
269 _assetCategoryLocalService.addCategoryResources(category,
270 communityPermissions, guestPermissions);
271 }
272
273 public void deleteCategory(
274 com.liferay.portlet.asset.model.AssetCategory category)
275 throws com.liferay.portal.kernel.exception.PortalException,
276 com.liferay.portal.kernel.exception.SystemException {
277 _assetCategoryLocalService.deleteCategory(category);
278 }
279
280 public void deleteCategory(long categoryId)
281 throws com.liferay.portal.kernel.exception.PortalException,
282 com.liferay.portal.kernel.exception.SystemException {
283 _assetCategoryLocalService.deleteCategory(categoryId);
284 }
285
286 public void deleteVocabularyCategories(long vocabularyId)
287 throws com.liferay.portal.kernel.exception.PortalException,
288 com.liferay.portal.kernel.exception.SystemException {
289 _assetCategoryLocalService.deleteVocabularyCategories(vocabularyId);
290 }
291
292 public java.lang.String[] getCategoryNames()
293 throws com.liferay.portal.kernel.exception.SystemException {
294 return _assetCategoryLocalService.getCategoryNames();
295 }
296
297 public java.lang.String[] getCategoryNames(long classNameId, long classPK)
298 throws com.liferay.portal.kernel.exception.SystemException {
299 return _assetCategoryLocalService.getCategoryNames(classNameId, classPK);
300 }
301
302 public java.lang.String[] getCategoryNames(java.lang.String className,
303 long classPK)
304 throws com.liferay.portal.kernel.exception.SystemException {
305 return _assetCategoryLocalService.getCategoryNames(className, classPK);
306 }
307
308 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getCategories()
309 throws com.liferay.portal.kernel.exception.SystemException {
310 return _assetCategoryLocalService.getCategories();
311 }
312
313 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getCategories(
314 long classNameId, long classPK)
315 throws com.liferay.portal.kernel.exception.SystemException {
316 return _assetCategoryLocalService.getCategories(classNameId, classPK);
317 }
318
319 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getCategories(
320 java.lang.String className, long classPK)
321 throws com.liferay.portal.kernel.exception.SystemException {
322 return _assetCategoryLocalService.getCategories(className, classPK);
323 }
324
325 public com.liferay.portlet.asset.model.AssetCategory getCategory(
326 long categoryId)
327 throws com.liferay.portal.kernel.exception.PortalException,
328 com.liferay.portal.kernel.exception.SystemException {
329 return _assetCategoryLocalService.getCategory(categoryId);
330 }
331
332 public long[] getCategoryIds(java.lang.String className, long classPK)
333 throws com.liferay.portal.kernel.exception.SystemException {
334 return _assetCategoryLocalService.getCategoryIds(className, classPK);
335 }
336
337 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getChildCategories(
338 long parentCategoryId)
339 throws com.liferay.portal.kernel.exception.SystemException {
340 return _assetCategoryLocalService.getChildCategories(parentCategoryId);
341 }
342
343 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getChildCategories(
344 long parentCategoryId, int start, int end,
345 com.liferay.portal.kernel.util.OrderByComparator obc)
346 throws com.liferay.portal.kernel.exception.SystemException {
347 return _assetCategoryLocalService.getChildCategories(parentCategoryId,
348 start, end, obc);
349 }
350
351 public int getChildCategoriesCount(long parentCategoryId)
352 throws com.liferay.portal.kernel.exception.SystemException {
353 return _assetCategoryLocalService.getChildCategoriesCount(parentCategoryId);
354 }
355
356 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getEntryCategories(
357 long entryId)
358 throws com.liferay.portal.kernel.exception.SystemException {
359 return _assetCategoryLocalService.getEntryCategories(entryId);
360 }
361
362 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getVocabularyCategories(
363 long vocabularyId, int start, int end,
364 com.liferay.portal.kernel.util.OrderByComparator obc)
365 throws com.liferay.portal.kernel.exception.SystemException {
366 return _assetCategoryLocalService.getVocabularyCategories(vocabularyId,
367 start, end, obc);
368 }
369
370 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getVocabularyCategories(
371 long parentCategoryId, long vocabularyId, int start, int end,
372 com.liferay.portal.kernel.util.OrderByComparator obc)
373 throws com.liferay.portal.kernel.exception.SystemException {
374 return _assetCategoryLocalService.getVocabularyCategories(parentCategoryId,
375 vocabularyId, start, end, obc);
376 }
377
378 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> getVocabularyRootCategories(
379 long vocabularyId, int start, int end,
380 com.liferay.portal.kernel.util.OrderByComparator obc)
381 throws com.liferay.portal.kernel.exception.SystemException {
382 return _assetCategoryLocalService.getVocabularyRootCategories(vocabularyId,
383 start, end, obc);
384 }
385
386 public void mergeCategories(long fromCategoryId, long toCategoryId)
387 throws com.liferay.portal.kernel.exception.PortalException,
388 com.liferay.portal.kernel.exception.SystemException {
389 _assetCategoryLocalService.mergeCategories(fromCategoryId, toCategoryId);
390 }
391
392 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> search(
393 long groupId, java.lang.String name,
394 java.lang.String[] categoryProperties, int start, int end)
395 throws com.liferay.portal.kernel.exception.SystemException {
396 return _assetCategoryLocalService.search(groupId, name,
397 categoryProperties, start, end);
398 }
399
400 public com.liferay.portlet.asset.model.AssetCategory updateCategory(
401 long userId, long categoryId, long parentCategoryId,
402 java.util.Map<java.util.Locale, java.lang.String> titleMap,
403 long vocabularyId, java.lang.String[] categoryProperties,
404 com.liferay.portal.service.ServiceContext serviceContext)
405 throws com.liferay.portal.kernel.exception.PortalException,
406 com.liferay.portal.kernel.exception.SystemException {
407 return _assetCategoryLocalService.updateCategory(userId, categoryId,
408 parentCategoryId, titleMap, vocabularyId, categoryProperties,
409 serviceContext);
410 }
411
412 public AssetCategoryLocalService getWrappedAssetCategoryLocalService() {
413 return _assetCategoryLocalService;
414 }
415
416 private AssetCategoryLocalService _assetCategoryLocalService;
417 }