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