1
14
15 package com.liferay.portlet.asset.service;
16
17
18
34 public class AssetCategoryPropertyLocalServiceWrapper
35 implements AssetCategoryPropertyLocalService {
36 public AssetCategoryPropertyLocalServiceWrapper(
37 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
38 _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
39 }
40
41 public com.liferay.portlet.asset.model.AssetCategoryProperty addAssetCategoryProperty(
42 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
43 throws com.liferay.portal.kernel.exception.SystemException {
44 return _assetCategoryPropertyLocalService.addAssetCategoryProperty(assetCategoryProperty);
45 }
46
47 public com.liferay.portlet.asset.model.AssetCategoryProperty createAssetCategoryProperty(
48 long categoryPropertyId) {
49 return _assetCategoryPropertyLocalService.createAssetCategoryProperty(categoryPropertyId);
50 }
51
52 public void deleteAssetCategoryProperty(long categoryPropertyId)
53 throws com.liferay.portal.kernel.exception.PortalException,
54 com.liferay.portal.kernel.exception.SystemException {
55 _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(categoryPropertyId);
56 }
57
58 public void deleteAssetCategoryProperty(
59 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
60 throws com.liferay.portal.kernel.exception.SystemException {
61 _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(assetCategoryProperty);
62 }
63
64 public java.util.List<Object> dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.kernel.exception.SystemException {
73 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
74 start, end);
75 }
76
77 public com.liferay.portlet.asset.model.AssetCategoryProperty getAssetCategoryProperty(
78 long categoryPropertyId)
79 throws com.liferay.portal.kernel.exception.PortalException,
80 com.liferay.portal.kernel.exception.SystemException {
81 return _assetCategoryPropertyLocalService.getAssetCategoryProperty(categoryPropertyId);
82 }
83
84 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getAssetCategoryProperties(
85 int start, int end)
86 throws com.liferay.portal.kernel.exception.SystemException {
87 return _assetCategoryPropertyLocalService.getAssetCategoryProperties(start,
88 end);
89 }
90
91 public int getAssetCategoryPropertiesCount()
92 throws com.liferay.portal.kernel.exception.SystemException {
93 return _assetCategoryPropertyLocalService.getAssetCategoryPropertiesCount();
94 }
95
96 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
97 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
98 throws com.liferay.portal.kernel.exception.SystemException {
99 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty);
100 }
101
102 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
103 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty,
104 boolean merge)
105 throws com.liferay.portal.kernel.exception.SystemException {
106 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty,
107 merge);
108 }
109
110 public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
111 long userId, long categoryId, java.lang.String key,
112 java.lang.String value)
113 throws com.liferay.portal.kernel.exception.PortalException,
114 com.liferay.portal.kernel.exception.SystemException {
115 return _assetCategoryPropertyLocalService.addCategoryProperty(userId,
116 categoryId, key, value);
117 }
118
119 public void deleteCategoryProperties(long entryId)
120 throws com.liferay.portal.kernel.exception.SystemException {
121 _assetCategoryPropertyLocalService.deleteCategoryProperties(entryId);
122 }
123
124 public void deleteCategoryProperty(
125 com.liferay.portlet.asset.model.AssetCategoryProperty categoryProperty)
126 throws com.liferay.portal.kernel.exception.SystemException {
127 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryProperty);
128 }
129
130 public void deleteCategoryProperty(long categoryPropertyId)
131 throws com.liferay.portal.kernel.exception.PortalException,
132 com.liferay.portal.kernel.exception.SystemException {
133 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryPropertyId);
134 }
135
136 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties()
137 throws com.liferay.portal.kernel.exception.SystemException {
138 return _assetCategoryPropertyLocalService.getCategoryProperties();
139 }
140
141 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
142 long entryId)
143 throws com.liferay.portal.kernel.exception.SystemException {
144 return _assetCategoryPropertyLocalService.getCategoryProperties(entryId);
145 }
146
147 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
148 long categoryPropertyId)
149 throws com.liferay.portal.kernel.exception.PortalException,
150 com.liferay.portal.kernel.exception.SystemException {
151 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryPropertyId);
152 }
153
154 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
155 long categoryId, java.lang.String key)
156 throws com.liferay.portal.kernel.exception.PortalException,
157 com.liferay.portal.kernel.exception.SystemException {
158 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryId,
159 key);
160 }
161
162 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
163 long groupId, java.lang.String key)
164 throws com.liferay.portal.kernel.exception.SystemException {
165 return _assetCategoryPropertyLocalService.getCategoryPropertyValues(groupId,
166 key);
167 }
168
169 public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
170 long categoryPropertyId, java.lang.String key, java.lang.String value)
171 throws com.liferay.portal.kernel.exception.PortalException,
172 com.liferay.portal.kernel.exception.SystemException {
173 return _assetCategoryPropertyLocalService.updateCategoryProperty(categoryPropertyId,
174 key, value);
175 }
176
177 public AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService() {
178 return _assetCategoryPropertyLocalService;
179 }
180
181 private AssetCategoryPropertyLocalService _assetCategoryPropertyLocalService;
182 }