1
22
23 package com.liferay.portlet.tags.service;
24
25
26
42 public class TagsPropertyLocalServiceWrapper implements TagsPropertyLocalService {
43 public TagsPropertyLocalServiceWrapper(
44 TagsPropertyLocalService tagsPropertyLocalService) {
45 _tagsPropertyLocalService = tagsPropertyLocalService;
46 }
47
48 public com.liferay.portlet.tags.model.TagsProperty addTagsProperty(
49 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
50 throws com.liferay.portal.SystemException {
51 return _tagsPropertyLocalService.addTagsProperty(tagsProperty);
52 }
53
54 public com.liferay.portlet.tags.model.TagsProperty createTagsProperty(
55 long propertyId) {
56 return _tagsPropertyLocalService.createTagsProperty(propertyId);
57 }
58
59 public void deleteTagsProperty(long propertyId)
60 throws com.liferay.portal.PortalException,
61 com.liferay.portal.SystemException {
62 _tagsPropertyLocalService.deleteTagsProperty(propertyId);
63 }
64
65 public void deleteTagsProperty(
66 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
67 throws com.liferay.portal.SystemException {
68 _tagsPropertyLocalService.deleteTagsProperty(tagsProperty);
69 }
70
71 public java.util.List<Object> dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
73 throws com.liferay.portal.SystemException {
74 return _tagsPropertyLocalService.dynamicQuery(dynamicQuery);
75 }
76
77 public java.util.List<Object> dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end) throws com.liferay.portal.SystemException {
80 return _tagsPropertyLocalService.dynamicQuery(dynamicQuery, start, end);
81 }
82
83 public com.liferay.portlet.tags.model.TagsProperty getTagsProperty(
84 long propertyId)
85 throws com.liferay.portal.PortalException,
86 com.liferay.portal.SystemException {
87 return _tagsPropertyLocalService.getTagsProperty(propertyId);
88 }
89
90 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getTagsProperties(
91 int start, int end) throws com.liferay.portal.SystemException {
92 return _tagsPropertyLocalService.getTagsProperties(start, end);
93 }
94
95 public int getTagsPropertiesCount()
96 throws com.liferay.portal.SystemException {
97 return _tagsPropertyLocalService.getTagsPropertiesCount();
98 }
99
100 public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
101 com.liferay.portlet.tags.model.TagsProperty tagsProperty)
102 throws com.liferay.portal.SystemException {
103 return _tagsPropertyLocalService.updateTagsProperty(tagsProperty);
104 }
105
106 public com.liferay.portlet.tags.model.TagsProperty updateTagsProperty(
107 com.liferay.portlet.tags.model.TagsProperty tagsProperty, boolean merge)
108 throws com.liferay.portal.SystemException {
109 return _tagsPropertyLocalService.updateTagsProperty(tagsProperty, merge);
110 }
111
112 public com.liferay.portlet.tags.model.TagsProperty addProperty(
113 long userId, long entryId, java.lang.String key, java.lang.String value)
114 throws com.liferay.portal.PortalException,
115 com.liferay.portal.SystemException {
116 return _tagsPropertyLocalService.addProperty(userId, entryId, key, value);
117 }
118
119 public void deleteProperties(long entryId)
120 throws com.liferay.portal.SystemException {
121 _tagsPropertyLocalService.deleteProperties(entryId);
122 }
123
124 public void deleteProperty(long propertyId)
125 throws com.liferay.portal.PortalException,
126 com.liferay.portal.SystemException {
127 _tagsPropertyLocalService.deleteProperty(propertyId);
128 }
129
130 public void deleteProperty(
131 com.liferay.portlet.tags.model.TagsProperty property)
132 throws com.liferay.portal.SystemException {
133 _tagsPropertyLocalService.deleteProperty(property);
134 }
135
136 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties()
137 throws com.liferay.portal.SystemException {
138 return _tagsPropertyLocalService.getProperties();
139 }
140
141 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getProperties(
142 long entryId) throws com.liferay.portal.SystemException {
143 return _tagsPropertyLocalService.getProperties(entryId);
144 }
145
146 public com.liferay.portlet.tags.model.TagsProperty getProperty(
147 long propertyId)
148 throws com.liferay.portal.PortalException,
149 com.liferay.portal.SystemException {
150 return _tagsPropertyLocalService.getProperty(propertyId);
151 }
152
153 public com.liferay.portlet.tags.model.TagsProperty getProperty(
154 long entryId, java.lang.String key)
155 throws com.liferay.portal.PortalException,
156 com.liferay.portal.SystemException {
157 return _tagsPropertyLocalService.getProperty(entryId, key);
158 }
159
160 public java.lang.String[] getPropertyKeys(long groupId)
161 throws com.liferay.portal.SystemException {
162 return _tagsPropertyLocalService.getPropertyKeys(groupId);
163 }
164
165 public java.util.List<com.liferay.portlet.tags.model.TagsProperty> getPropertyValues(
166 long groupId, java.lang.String key)
167 throws com.liferay.portal.SystemException {
168 return _tagsPropertyLocalService.getPropertyValues(groupId, key);
169 }
170
171 public com.liferay.portlet.tags.model.TagsProperty updateProperty(
172 long propertyId, java.lang.String key, java.lang.String value)
173 throws com.liferay.portal.PortalException,
174 com.liferay.portal.SystemException {
175 return _tagsPropertyLocalService.updateProperty(propertyId, key, value);
176 }
177
178 public TagsPropertyLocalService getWrappedTagsPropertyLocalService() {
179 return _tagsPropertyLocalService;
180 }
181
182 private TagsPropertyLocalService _tagsPropertyLocalService;
183 }