001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class AssetCategoryPropertyServiceWrapper
027 implements AssetCategoryPropertyService,
028 ServiceWrapper<AssetCategoryPropertyService> {
029 public AssetCategoryPropertyServiceWrapper(
030 AssetCategoryPropertyService assetCategoryPropertyService) {
031 _assetCategoryPropertyService = assetCategoryPropertyService;
032 }
033
034
039 @Override
040 public java.lang.String getBeanIdentifier() {
041 return _assetCategoryPropertyService.getBeanIdentifier();
042 }
043
044
049 @Override
050 public void setBeanIdentifier(java.lang.String beanIdentifier) {
051 _assetCategoryPropertyService.setBeanIdentifier(beanIdentifier);
052 }
053
054 @Override
055 public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
056 long entryId, java.lang.String key, java.lang.String value)
057 throws com.liferay.portal.kernel.exception.PortalException,
058 com.liferay.portal.kernel.exception.SystemException {
059 return _assetCategoryPropertyService.addCategoryProperty(entryId, key,
060 value);
061 }
062
063 @Override
064 public void deleteCategoryProperty(long categoryPropertyId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _assetCategoryPropertyService.deleteCategoryProperty(categoryPropertyId);
068 }
069
070 @Override
071 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
072 long entryId)
073 throws com.liferay.portal.kernel.exception.SystemException {
074 return _assetCategoryPropertyService.getCategoryProperties(entryId);
075 }
076
077 @Override
078 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
079 long companyId, java.lang.String key)
080 throws com.liferay.portal.kernel.exception.SystemException {
081 return _assetCategoryPropertyService.getCategoryPropertyValues(companyId,
082 key);
083 }
084
085 @Override
086 public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
087 long categoryPropertyId, java.lang.String key, java.lang.String value)
088 throws com.liferay.portal.kernel.exception.PortalException,
089 com.liferay.portal.kernel.exception.SystemException {
090 return _assetCategoryPropertyService.updateCategoryProperty(categoryPropertyId,
091 key, value);
092 }
093
094
097 public AssetCategoryPropertyService getWrappedAssetCategoryPropertyService() {
098 return _assetCategoryPropertyService;
099 }
100
101
104 public void setWrappedAssetCategoryPropertyService(
105 AssetCategoryPropertyService assetCategoryPropertyService) {
106 _assetCategoryPropertyService = assetCategoryPropertyService;
107 }
108
109 @Override
110 public AssetCategoryPropertyService getWrappedService() {
111 return _assetCategoryPropertyService;
112 }
113
114 @Override
115 public void setWrappedService(
116 AssetCategoryPropertyService assetCategoryPropertyService) {
117 _assetCategoryPropertyService = assetCategoryPropertyService;
118 }
119
120 private AssetCategoryPropertyService _assetCategoryPropertyService;
121 }