001
014
015 package com.liferay.portlet.asset.service;
016
017
026 public class AssetTagPropertyLocalServiceWrapper
027 implements AssetTagPropertyLocalService {
028 public AssetTagPropertyLocalServiceWrapper(
029 AssetTagPropertyLocalService assetTagPropertyLocalService) {
030 _assetTagPropertyLocalService = assetTagPropertyLocalService;
031 }
032
033
040 public com.liferay.portlet.asset.model.AssetTagProperty addAssetTagProperty(
041 com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _assetTagPropertyLocalService.addAssetTagProperty(assetTagProperty);
044 }
045
046
052 public com.liferay.portlet.asset.model.AssetTagProperty createAssetTagProperty(
053 long tagPropertyId) {
054 return _assetTagPropertyLocalService.createAssetTagProperty(tagPropertyId);
055 }
056
057
064 public void deleteAssetTagProperty(long tagPropertyId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _assetTagPropertyLocalService.deleteAssetTagProperty(tagPropertyId);
068 }
069
070
076 public void deleteAssetTagProperty(
077 com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 _assetTagPropertyLocalService.deleteAssetTagProperty(assetTagProperty);
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 _assetTagPropertyLocalService.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 _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
114 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 _assetTagPropertyLocalService.dynamicQuery(dynamicQuery, start,
138 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 _assetTagPropertyLocalService.dynamicQueryCount(dynamicQuery);
152 }
153
154
162 public com.liferay.portlet.asset.model.AssetTagProperty getAssetTagProperty(
163 long tagPropertyId)
164 throws com.liferay.portal.kernel.exception.PortalException,
165 com.liferay.portal.kernel.exception.SystemException {
166 return _assetTagPropertyLocalService.getAssetTagProperty(tagPropertyId);
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 _assetTagPropertyLocalService.getPersistedModel(primaryKeyObj);
174 }
175
176
188 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getAssetTagProperties(
189 int start, int end)
190 throws com.liferay.portal.kernel.exception.SystemException {
191 return _assetTagPropertyLocalService.getAssetTagProperties(start, end);
192 }
193
194
200 public int getAssetTagPropertiesCount()
201 throws com.liferay.portal.kernel.exception.SystemException {
202 return _assetTagPropertyLocalService.getAssetTagPropertiesCount();
203 }
204
205
212 public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
213 com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty)
214 throws com.liferay.portal.kernel.exception.SystemException {
215 return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty);
216 }
217
218
226 public com.liferay.portlet.asset.model.AssetTagProperty updateAssetTagProperty(
227 com.liferay.portlet.asset.model.AssetTagProperty assetTagProperty,
228 boolean merge)
229 throws com.liferay.portal.kernel.exception.SystemException {
230 return _assetTagPropertyLocalService.updateAssetTagProperty(assetTagProperty,
231 merge);
232 }
233
234
239 public java.lang.String getBeanIdentifier() {
240 return _assetTagPropertyLocalService.getBeanIdentifier();
241 }
242
243
248 public void setBeanIdentifier(java.lang.String beanIdentifier) {
249 _assetTagPropertyLocalService.setBeanIdentifier(beanIdentifier);
250 }
251
252 public com.liferay.portlet.asset.model.AssetTagProperty addTagProperty(
253 long userId, long tagId, java.lang.String key, java.lang.String value)
254 throws com.liferay.portal.kernel.exception.PortalException,
255 com.liferay.portal.kernel.exception.SystemException {
256 return _assetTagPropertyLocalService.addTagProperty(userId, tagId, key,
257 value);
258 }
259
260 public void deleteTagProperties(long tagId)
261 throws com.liferay.portal.kernel.exception.SystemException {
262 _assetTagPropertyLocalService.deleteTagProperties(tagId);
263 }
264
265 public void deleteTagProperty(
266 com.liferay.portlet.asset.model.AssetTagProperty tagProperty)
267 throws com.liferay.portal.kernel.exception.SystemException {
268 _assetTagPropertyLocalService.deleteTagProperty(tagProperty);
269 }
270
271 public void deleteTagProperty(long tagPropertyId)
272 throws com.liferay.portal.kernel.exception.PortalException,
273 com.liferay.portal.kernel.exception.SystemException {
274 _assetTagPropertyLocalService.deleteTagProperty(tagPropertyId);
275 }
276
277 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties()
278 throws com.liferay.portal.kernel.exception.SystemException {
279 return _assetTagPropertyLocalService.getTagProperties();
280 }
281
282 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagProperties(
283 long tagId) throws com.liferay.portal.kernel.exception.SystemException {
284 return _assetTagPropertyLocalService.getTagProperties(tagId);
285 }
286
287 public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
288 long tagPropertyId)
289 throws com.liferay.portal.kernel.exception.PortalException,
290 com.liferay.portal.kernel.exception.SystemException {
291 return _assetTagPropertyLocalService.getTagProperty(tagPropertyId);
292 }
293
294 public com.liferay.portlet.asset.model.AssetTagProperty getTagProperty(
295 long tagId, java.lang.String key)
296 throws com.liferay.portal.kernel.exception.PortalException,
297 com.liferay.portal.kernel.exception.SystemException {
298 return _assetTagPropertyLocalService.getTagProperty(tagId, key);
299 }
300
301 public java.lang.String[] getTagPropertyKeys(long groupId)
302 throws com.liferay.portal.kernel.exception.SystemException {
303 return _assetTagPropertyLocalService.getTagPropertyKeys(groupId);
304 }
305
306 public java.util.List<com.liferay.portlet.asset.model.AssetTagProperty> getTagPropertyValues(
307 long groupId, java.lang.String key)
308 throws com.liferay.portal.kernel.exception.SystemException {
309 return _assetTagPropertyLocalService.getTagPropertyValues(groupId, key);
310 }
311
312 public com.liferay.portlet.asset.model.AssetTagProperty updateTagProperty(
313 long tagPropertyId, 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 _assetTagPropertyLocalService.updateTagProperty(tagPropertyId,
317 key, value);
318 }
319
320 public AssetTagPropertyLocalService getWrappedAssetTagPropertyLocalService() {
321 return _assetTagPropertyLocalService;
322 }
323
324 public void setWrappedAssetTagPropertyLocalService(
325 AssetTagPropertyLocalService assetTagPropertyLocalService) {
326 _assetTagPropertyLocalService = assetTagPropertyLocalService;
327 }
328
329 private AssetTagPropertyLocalService _assetTagPropertyLocalService;
330 }