1
22
23 package com.liferay.portlet.tags.service;
24
25
26
42 public class TagsPropertyServiceWrapper implements TagsPropertyService {
43 public TagsPropertyServiceWrapper(TagsPropertyService tagsPropertyService) {
44 _tagsPropertyService = tagsPropertyService;
45 }
46
47 public com.liferay.portlet.tags.model.TagsProperty addProperty(
48 long entryId, java.lang.String key, java.lang.String value)
49 throws com.liferay.portal.PortalException,
50 com.liferay.portal.SystemException {
51 return _tagsPropertyService.addProperty(entryId, key, value);
52 }
53
54 public void deleteProperty(long propertyId)
55 throws com.liferay.portal.PortalException,
56 com.liferay.portal.SystemException {
57 _tagsPropertyService.deleteProperty(propertyId);
58 }
59
60 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties(
61 long entryId) throws com.liferay.portal.SystemException {
62 return _tagsPropertyService.getProperties(entryId);
63 }
64
65 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getPropertyValues(
66 long companyId, java.lang.String key)
67 throws com.liferay.portal.SystemException {
68 return _tagsPropertyService.getPropertyValues(companyId, key);
69 }
70
71 public com.liferay.portlet.tags.model.TagsProperty updateProperty(
72 long propertyId, java.lang.String key, java.lang.String value)
73 throws com.liferay.portal.PortalException,
74 com.liferay.portal.SystemException {
75 return _tagsPropertyService.updateProperty(propertyId, key, value);
76 }
77
78 public TagsPropertyService getWrappedTagsPropertyService() {
79 return _tagsPropertyService;
80 }
81
82 private TagsPropertyService _tagsPropertyService;
83 }