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