001
014
015 package com.liferay.portlet.asset.service;
016
017
026 public class AssetCategoryPropertyLocalServiceWrapper
027 implements AssetCategoryPropertyLocalService {
028 public AssetCategoryPropertyLocalServiceWrapper(
029 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
030 _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
031 }
032
033
040 public com.liferay.portlet.asset.model.AssetCategoryProperty addAssetCategoryProperty(
041 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _assetCategoryPropertyLocalService.addAssetCategoryProperty(assetCategoryProperty);
044 }
045
046
052 public com.liferay.portlet.asset.model.AssetCategoryProperty createAssetCategoryProperty(
053 long categoryPropertyId) {
054 return _assetCategoryPropertyLocalService.createAssetCategoryProperty(categoryPropertyId);
055 }
056
057
064 public void deleteAssetCategoryProperty(long categoryPropertyId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(categoryPropertyId);
068 }
069
070
076 public void deleteAssetCategoryProperty(
077 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(assetCategoryProperty);
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 _assetCategoryPropertyLocalService.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 _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
114 start, end);
115 }
116
117
131 @SuppressWarnings("rawtypes")
132 public java.util.List dynamicQuery(
133 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
134 int end,
135 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
136 throws com.liferay.portal.kernel.exception.SystemException {
137 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
138 start, end, orderByComparator);
139 }
140
141
148 public long dynamicQueryCount(
149 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
150 throws com.liferay.portal.kernel.exception.SystemException {
151 return _assetCategoryPropertyLocalService.dynamicQueryCount(dynamicQuery);
152 }
153
154
162 public com.liferay.portlet.asset.model.AssetCategoryProperty getAssetCategoryProperty(
163 long categoryPropertyId)
164 throws com.liferay.portal.kernel.exception.PortalException,
165 com.liferay.portal.kernel.exception.SystemException {
166 return _assetCategoryPropertyLocalService.getAssetCategoryProperty(categoryPropertyId);
167 }
168
169 public com.liferay.portal.model.PersistedModel getPersistedModel(
170 java.io.Serializable primaryKeyObj)
171 throws com.liferay.portal.kernel.exception.PortalException,
172 com.liferay.portal.kernel.exception.SystemException {
173 return _assetCategoryPropertyLocalService.getPersistedModel(primaryKeyObj);
174 }
175
176
188 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getAssetCategoryProperties(
189 int start, int end)
190 throws com.liferay.portal.kernel.exception.SystemException {
191 return _assetCategoryPropertyLocalService.getAssetCategoryProperties(start,
192 end);
193 }
194
195
201 public int getAssetCategoryPropertiesCount()
202 throws com.liferay.portal.kernel.exception.SystemException {
203 return _assetCategoryPropertyLocalService.getAssetCategoryPropertiesCount();
204 }
205
206
213 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
214 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
215 throws com.liferay.portal.kernel.exception.SystemException {
216 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty);
217 }
218
219
227 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
228 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty,
229 boolean merge)
230 throws com.liferay.portal.kernel.exception.SystemException {
231 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty,
232 merge);
233 }
234
235
240 public java.lang.String getBeanIdentifier() {
241 return _assetCategoryPropertyLocalService.getBeanIdentifier();
242 }
243
244
249 public void setBeanIdentifier(java.lang.String beanIdentifier) {
250 _assetCategoryPropertyLocalService.setBeanIdentifier(beanIdentifier);
251 }
252
253 public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
254 long userId, long categoryId, java.lang.String key,
255 java.lang.String value)
256 throws com.liferay.portal.kernel.exception.PortalException,
257 com.liferay.portal.kernel.exception.SystemException {
258 return _assetCategoryPropertyLocalService.addCategoryProperty(userId,
259 categoryId, key, value);
260 }
261
262 public void deleteCategoryProperties(long entryId)
263 throws com.liferay.portal.kernel.exception.SystemException {
264 _assetCategoryPropertyLocalService.deleteCategoryProperties(entryId);
265 }
266
267 public void deleteCategoryProperty(
268 com.liferay.portlet.asset.model.AssetCategoryProperty categoryProperty)
269 throws com.liferay.portal.kernel.exception.SystemException {
270 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryProperty);
271 }
272
273 public void deleteCategoryProperty(long categoryPropertyId)
274 throws com.liferay.portal.kernel.exception.PortalException,
275 com.liferay.portal.kernel.exception.SystemException {
276 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryPropertyId);
277 }
278
279 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties()
280 throws com.liferay.portal.kernel.exception.SystemException {
281 return _assetCategoryPropertyLocalService.getCategoryProperties();
282 }
283
284 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
285 long entryId)
286 throws com.liferay.portal.kernel.exception.SystemException {
287 return _assetCategoryPropertyLocalService.getCategoryProperties(entryId);
288 }
289
290 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
291 long categoryPropertyId)
292 throws com.liferay.portal.kernel.exception.PortalException,
293 com.liferay.portal.kernel.exception.SystemException {
294 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryPropertyId);
295 }
296
297 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
298 long categoryId, java.lang.String key)
299 throws com.liferay.portal.kernel.exception.PortalException,
300 com.liferay.portal.kernel.exception.SystemException {
301 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryId,
302 key);
303 }
304
305 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
306 long groupId, java.lang.String key)
307 throws com.liferay.portal.kernel.exception.SystemException {
308 return _assetCategoryPropertyLocalService.getCategoryPropertyValues(groupId,
309 key);
310 }
311
312 public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
313 long categoryPropertyId, java.lang.String key, java.lang.String value)
314 throws com.liferay.portal.kernel.exception.PortalException,
315 com.liferay.portal.kernel.exception.SystemException {
316 return _assetCategoryPropertyLocalService.updateCategoryProperty(categoryPropertyId,
317 key, value);
318 }
319
320 public AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService() {
321 return _assetCategoryPropertyLocalService;
322 }
323
324 public void setWrappedAssetCategoryPropertyLocalService(
325 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
326 _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
327 }
328
329 private AssetCategoryPropertyLocalService _assetCategoryPropertyLocalService;
330 }