001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class AssetCategoryPropertyLocalServiceWrapper
029 implements AssetCategoryPropertyLocalService,
030 ServiceWrapper<AssetCategoryPropertyLocalService> {
031 public AssetCategoryPropertyLocalServiceWrapper(
032 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
033 _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
034 }
035
036
043 public com.liferay.portlet.asset.model.AssetCategoryProperty addAssetCategoryProperty(
044 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
045 throws com.liferay.portal.kernel.exception.SystemException {
046 return _assetCategoryPropertyLocalService.addAssetCategoryProperty(assetCategoryProperty);
047 }
048
049
055 public com.liferay.portlet.asset.model.AssetCategoryProperty createAssetCategoryProperty(
056 long categoryPropertyId) {
057 return _assetCategoryPropertyLocalService.createAssetCategoryProperty(categoryPropertyId);
058 }
059
060
067 public void deleteAssetCategoryProperty(long categoryPropertyId)
068 throws com.liferay.portal.kernel.exception.PortalException,
069 com.liferay.portal.kernel.exception.SystemException {
070 _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(categoryPropertyId);
071 }
072
073
079 public void deleteAssetCategoryProperty(
080 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
081 throws com.liferay.portal.kernel.exception.SystemException {
082 _assetCategoryPropertyLocalService.deleteAssetCategoryProperty(assetCategoryProperty);
083 }
084
085
092 @SuppressWarnings("rawtypes")
093 public java.util.List dynamicQuery(
094 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
095 throws com.liferay.portal.kernel.exception.SystemException {
096 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery);
097 }
098
099
112 @SuppressWarnings("rawtypes")
113 public java.util.List dynamicQuery(
114 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
115 int end) throws com.liferay.portal.kernel.exception.SystemException {
116 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
117 start, end);
118 }
119
120
134 @SuppressWarnings("rawtypes")
135 public java.util.List dynamicQuery(
136 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
137 int end,
138 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
139 throws com.liferay.portal.kernel.exception.SystemException {
140 return _assetCategoryPropertyLocalService.dynamicQuery(dynamicQuery,
141 start, end, orderByComparator);
142 }
143
144
151 public long dynamicQueryCount(
152 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153 throws com.liferay.portal.kernel.exception.SystemException {
154 return _assetCategoryPropertyLocalService.dynamicQueryCount(dynamicQuery);
155 }
156
157 public com.liferay.portlet.asset.model.AssetCategoryProperty fetchAssetCategoryProperty(
158 long categoryPropertyId)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _assetCategoryPropertyLocalService.fetchAssetCategoryProperty(categoryPropertyId);
161 }
162
163
171 public com.liferay.portlet.asset.model.AssetCategoryProperty getAssetCategoryProperty(
172 long categoryPropertyId)
173 throws com.liferay.portal.kernel.exception.PortalException,
174 com.liferay.portal.kernel.exception.SystemException {
175 return _assetCategoryPropertyLocalService.getAssetCategoryProperty(categoryPropertyId);
176 }
177
178 public com.liferay.portal.model.PersistedModel getPersistedModel(
179 java.io.Serializable primaryKeyObj)
180 throws com.liferay.portal.kernel.exception.PortalException,
181 com.liferay.portal.kernel.exception.SystemException {
182 return _assetCategoryPropertyLocalService.getPersistedModel(primaryKeyObj);
183 }
184
185
197 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getAssetCategoryProperties(
198 int start, int end)
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return _assetCategoryPropertyLocalService.getAssetCategoryProperties(start,
201 end);
202 }
203
204
210 public int getAssetCategoryPropertiesCount()
211 throws com.liferay.portal.kernel.exception.SystemException {
212 return _assetCategoryPropertyLocalService.getAssetCategoryPropertiesCount();
213 }
214
215
222 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
223 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty)
224 throws com.liferay.portal.kernel.exception.SystemException {
225 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty);
226 }
227
228
236 public com.liferay.portlet.asset.model.AssetCategoryProperty updateAssetCategoryProperty(
237 com.liferay.portlet.asset.model.AssetCategoryProperty assetCategoryProperty,
238 boolean merge)
239 throws com.liferay.portal.kernel.exception.SystemException {
240 return _assetCategoryPropertyLocalService.updateAssetCategoryProperty(assetCategoryProperty,
241 merge);
242 }
243
244
249 public java.lang.String getBeanIdentifier() {
250 return _assetCategoryPropertyLocalService.getBeanIdentifier();
251 }
252
253
258 public void setBeanIdentifier(java.lang.String beanIdentifier) {
259 _assetCategoryPropertyLocalService.setBeanIdentifier(beanIdentifier);
260 }
261
262 public com.liferay.portlet.asset.model.AssetCategoryProperty addCategoryProperty(
263 long userId, long categoryId, java.lang.String key,
264 java.lang.String value)
265 throws com.liferay.portal.kernel.exception.PortalException,
266 com.liferay.portal.kernel.exception.SystemException {
267 return _assetCategoryPropertyLocalService.addCategoryProperty(userId,
268 categoryId, key, value);
269 }
270
271 public void deleteCategoryProperties(long entryId)
272 throws com.liferay.portal.kernel.exception.SystemException {
273 _assetCategoryPropertyLocalService.deleteCategoryProperties(entryId);
274 }
275
276 public void deleteCategoryProperty(
277 com.liferay.portlet.asset.model.AssetCategoryProperty categoryProperty)
278 throws com.liferay.portal.kernel.exception.SystemException {
279 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryProperty);
280 }
281
282 public void deleteCategoryProperty(long categoryPropertyId)
283 throws com.liferay.portal.kernel.exception.PortalException,
284 com.liferay.portal.kernel.exception.SystemException {
285 _assetCategoryPropertyLocalService.deleteCategoryProperty(categoryPropertyId);
286 }
287
288 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties()
289 throws com.liferay.portal.kernel.exception.SystemException {
290 return _assetCategoryPropertyLocalService.getCategoryProperties();
291 }
292
293 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryProperties(
294 long entryId)
295 throws com.liferay.portal.kernel.exception.SystemException {
296 return _assetCategoryPropertyLocalService.getCategoryProperties(entryId);
297 }
298
299 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
300 long categoryPropertyId)
301 throws com.liferay.portal.kernel.exception.PortalException,
302 com.liferay.portal.kernel.exception.SystemException {
303 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryPropertyId);
304 }
305
306 public com.liferay.portlet.asset.model.AssetCategoryProperty getCategoryProperty(
307 long categoryId, java.lang.String key)
308 throws com.liferay.portal.kernel.exception.PortalException,
309 com.liferay.portal.kernel.exception.SystemException {
310 return _assetCategoryPropertyLocalService.getCategoryProperty(categoryId,
311 key);
312 }
313
314 public java.util.List<com.liferay.portlet.asset.model.AssetCategoryProperty> getCategoryPropertyValues(
315 long groupId, java.lang.String key)
316 throws com.liferay.portal.kernel.exception.SystemException {
317 return _assetCategoryPropertyLocalService.getCategoryPropertyValues(groupId,
318 key);
319 }
320
321 public com.liferay.portlet.asset.model.AssetCategoryProperty updateCategoryProperty(
322 long categoryPropertyId, java.lang.String key, java.lang.String value)
323 throws com.liferay.portal.kernel.exception.PortalException,
324 com.liferay.portal.kernel.exception.SystemException {
325 return _assetCategoryPropertyLocalService.updateCategoryProperty(categoryPropertyId,
326 key, value);
327 }
328
329
332 public AssetCategoryPropertyLocalService getWrappedAssetCategoryPropertyLocalService() {
333 return _assetCategoryPropertyLocalService;
334 }
335
336
339 public void setWrappedAssetCategoryPropertyLocalService(
340 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
341 _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
342 }
343
344 public AssetCategoryPropertyLocalService getWrappedService() {
345 return _assetCategoryPropertyLocalService;
346 }
347
348 public void setWrappedService(
349 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
350 _assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
351 }
352
353 private AssetCategoryPropertyLocalService _assetCategoryPropertyLocalService;
354 }