1
22
23 package com.liferay.portlet.tags.service.base;
24
25 import com.liferay.counter.service.CounterLocalService;
26 import com.liferay.counter.service.CounterService;
27
28 import com.liferay.portal.kernel.annotation.BeanReference;
29 import com.liferay.portal.service.UserLocalService;
30 import com.liferay.portal.service.UserService;
31 import com.liferay.portal.service.base.PrincipalBean;
32 import com.liferay.portal.service.persistence.UserFinder;
33 import com.liferay.portal.service.persistence.UserPersistence;
34
35 import com.liferay.portlet.tags.service.TagsAssetLocalService;
36 import com.liferay.portlet.tags.service.TagsAssetService;
37 import com.liferay.portlet.tags.service.TagsEntryLocalService;
38 import com.liferay.portlet.tags.service.TagsEntryService;
39 import com.liferay.portlet.tags.service.TagsPropertyLocalService;
40 import com.liferay.portlet.tags.service.TagsPropertyService;
41 import com.liferay.portlet.tags.service.TagsSourceLocalService;
42 import com.liferay.portlet.tags.service.TagsSourceService;
43 import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
44 import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
45 import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
46 import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
47 import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
48 import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
49 import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
50 import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
51
52
58 public abstract class TagsPropertyServiceBaseImpl extends PrincipalBean
59 implements TagsPropertyService {
60 public TagsAssetLocalService getTagsAssetLocalService() {
61 return tagsAssetLocalService;
62 }
63
64 public void setTagsAssetLocalService(
65 TagsAssetLocalService tagsAssetLocalService) {
66 this.tagsAssetLocalService = tagsAssetLocalService;
67 }
68
69 public TagsAssetService getTagsAssetService() {
70 return tagsAssetService;
71 }
72
73 public void setTagsAssetService(TagsAssetService tagsAssetService) {
74 this.tagsAssetService = tagsAssetService;
75 }
76
77 public TagsAssetPersistence getTagsAssetPersistence() {
78 return tagsAssetPersistence;
79 }
80
81 public void setTagsAssetPersistence(
82 TagsAssetPersistence tagsAssetPersistence) {
83 this.tagsAssetPersistence = tagsAssetPersistence;
84 }
85
86 public TagsAssetFinder getTagsAssetFinder() {
87 return tagsAssetFinder;
88 }
89
90 public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
91 this.tagsAssetFinder = tagsAssetFinder;
92 }
93
94 public TagsEntryLocalService getTagsEntryLocalService() {
95 return tagsEntryLocalService;
96 }
97
98 public void setTagsEntryLocalService(
99 TagsEntryLocalService tagsEntryLocalService) {
100 this.tagsEntryLocalService = tagsEntryLocalService;
101 }
102
103 public TagsEntryService getTagsEntryService() {
104 return tagsEntryService;
105 }
106
107 public void setTagsEntryService(TagsEntryService tagsEntryService) {
108 this.tagsEntryService = tagsEntryService;
109 }
110
111 public TagsEntryPersistence getTagsEntryPersistence() {
112 return tagsEntryPersistence;
113 }
114
115 public void setTagsEntryPersistence(
116 TagsEntryPersistence tagsEntryPersistence) {
117 this.tagsEntryPersistence = tagsEntryPersistence;
118 }
119
120 public TagsEntryFinder getTagsEntryFinder() {
121 return tagsEntryFinder;
122 }
123
124 public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
125 this.tagsEntryFinder = tagsEntryFinder;
126 }
127
128 public TagsPropertyLocalService getTagsPropertyLocalService() {
129 return tagsPropertyLocalService;
130 }
131
132 public void setTagsPropertyLocalService(
133 TagsPropertyLocalService tagsPropertyLocalService) {
134 this.tagsPropertyLocalService = tagsPropertyLocalService;
135 }
136
137 public TagsPropertyService getTagsPropertyService() {
138 return tagsPropertyService;
139 }
140
141 public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
142 this.tagsPropertyService = tagsPropertyService;
143 }
144
145 public TagsPropertyPersistence getTagsPropertyPersistence() {
146 return tagsPropertyPersistence;
147 }
148
149 public void setTagsPropertyPersistence(
150 TagsPropertyPersistence tagsPropertyPersistence) {
151 this.tagsPropertyPersistence = tagsPropertyPersistence;
152 }
153
154 public TagsPropertyFinder getTagsPropertyFinder() {
155 return tagsPropertyFinder;
156 }
157
158 public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
159 this.tagsPropertyFinder = tagsPropertyFinder;
160 }
161
162 public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
163 return tagsPropertyKeyFinder;
164 }
165
166 public void setTagsPropertyKeyFinder(
167 TagsPropertyKeyFinder tagsPropertyKeyFinder) {
168 this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
169 }
170
171 public TagsSourceLocalService getTagsSourceLocalService() {
172 return tagsSourceLocalService;
173 }
174
175 public void setTagsSourceLocalService(
176 TagsSourceLocalService tagsSourceLocalService) {
177 this.tagsSourceLocalService = tagsSourceLocalService;
178 }
179
180 public TagsSourceService getTagsSourceService() {
181 return tagsSourceService;
182 }
183
184 public void setTagsSourceService(TagsSourceService tagsSourceService) {
185 this.tagsSourceService = tagsSourceService;
186 }
187
188 public TagsSourcePersistence getTagsSourcePersistence() {
189 return tagsSourcePersistence;
190 }
191
192 public void setTagsSourcePersistence(
193 TagsSourcePersistence tagsSourcePersistence) {
194 this.tagsSourcePersistence = tagsSourcePersistence;
195 }
196
197 public CounterLocalService getCounterLocalService() {
198 return counterLocalService;
199 }
200
201 public void setCounterLocalService(CounterLocalService counterLocalService) {
202 this.counterLocalService = counterLocalService;
203 }
204
205 public CounterService getCounterService() {
206 return counterService;
207 }
208
209 public void setCounterService(CounterService counterService) {
210 this.counterService = counterService;
211 }
212
213 public UserLocalService getUserLocalService() {
214 return userLocalService;
215 }
216
217 public void setUserLocalService(UserLocalService userLocalService) {
218 this.userLocalService = userLocalService;
219 }
220
221 public UserService getUserService() {
222 return userService;
223 }
224
225 public void setUserService(UserService userService) {
226 this.userService = userService;
227 }
228
229 public UserPersistence getUserPersistence() {
230 return userPersistence;
231 }
232
233 public void setUserPersistence(UserPersistence userPersistence) {
234 this.userPersistence = userPersistence;
235 }
236
237 public UserFinder getUserFinder() {
238 return userFinder;
239 }
240
241 public void setUserFinder(UserFinder userFinder) {
242 this.userFinder = userFinder;
243 }
244
245 @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
246 protected TagsAssetLocalService tagsAssetLocalService;
247 @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
248 protected TagsAssetService tagsAssetService;
249 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
250 protected TagsAssetPersistence tagsAssetPersistence;
251 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
252 protected TagsAssetFinder tagsAssetFinder;
253 @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
254 protected TagsEntryLocalService tagsEntryLocalService;
255 @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
256 protected TagsEntryService tagsEntryService;
257 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
258 protected TagsEntryPersistence tagsEntryPersistence;
259 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
260 protected TagsEntryFinder tagsEntryFinder;
261 @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
262 protected TagsPropertyLocalService tagsPropertyLocalService;
263 @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
264 protected TagsPropertyService tagsPropertyService;
265 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
266 protected TagsPropertyPersistence tagsPropertyPersistence;
267 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
268 protected TagsPropertyFinder tagsPropertyFinder;
269 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
270 protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
271 @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
272 protected TagsSourceLocalService tagsSourceLocalService;
273 @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
274 protected TagsSourceService tagsSourceService;
275 @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
276 protected TagsSourcePersistence tagsSourcePersistence;
277 @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
278 protected CounterLocalService counterLocalService;
279 @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
280 protected CounterService counterService;
281 @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
282 protected UserLocalService userLocalService;
283 @BeanReference(name = "com.liferay.portal.service.UserService.impl")
284 protected UserService userService;
285 @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
286 protected UserPersistence userPersistence;
287 @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
288 protected UserFinder userFinder;
289 }