1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
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.ResourceLocalService;
30  import com.liferay.portal.service.ResourceService;
31  import com.liferay.portal.service.UserLocalService;
32  import com.liferay.portal.service.UserService;
33  import com.liferay.portal.service.base.PrincipalBean;
34  import com.liferay.portal.service.persistence.ResourceFinder;
35  import com.liferay.portal.service.persistence.ResourcePersistence;
36  import com.liferay.portal.service.persistence.UserFinder;
37  import com.liferay.portal.service.persistence.UserPersistence;
38  
39  import com.liferay.portlet.tags.service.TagsAssetLocalService;
40  import com.liferay.portlet.tags.service.TagsAssetService;
41  import com.liferay.portlet.tags.service.TagsEntryLocalService;
42  import com.liferay.portlet.tags.service.TagsEntryService;
43  import com.liferay.portlet.tags.service.TagsPropertyLocalService;
44  import com.liferay.portlet.tags.service.TagsPropertyService;
45  import com.liferay.portlet.tags.service.TagsSourceLocalService;
46  import com.liferay.portlet.tags.service.TagsSourceService;
47  import com.liferay.portlet.tags.service.TagsVocabularyLocalService;
48  import com.liferay.portlet.tags.service.TagsVocabularyService;
49  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
50  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
51  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
52  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
53  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
54  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
55  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
56  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
57  import com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence;
58  
59  /**
60   * <a href="TagsEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
61   *
62   * @author Brian Wing Shun Chan
63   *
64   */
65  public abstract class TagsEntryServiceBaseImpl extends PrincipalBean
66      implements TagsEntryService {
67      public TagsAssetLocalService getTagsAssetLocalService() {
68          return tagsAssetLocalService;
69      }
70  
71      public void setTagsAssetLocalService(
72          TagsAssetLocalService tagsAssetLocalService) {
73          this.tagsAssetLocalService = tagsAssetLocalService;
74      }
75  
76      public TagsAssetService getTagsAssetService() {
77          return tagsAssetService;
78      }
79  
80      public void setTagsAssetService(TagsAssetService tagsAssetService) {
81          this.tagsAssetService = tagsAssetService;
82      }
83  
84      public TagsAssetPersistence getTagsAssetPersistence() {
85          return tagsAssetPersistence;
86      }
87  
88      public void setTagsAssetPersistence(
89          TagsAssetPersistence tagsAssetPersistence) {
90          this.tagsAssetPersistence = tagsAssetPersistence;
91      }
92  
93      public TagsAssetFinder getTagsAssetFinder() {
94          return tagsAssetFinder;
95      }
96  
97      public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
98          this.tagsAssetFinder = tagsAssetFinder;
99      }
100 
101     public TagsEntryLocalService getTagsEntryLocalService() {
102         return tagsEntryLocalService;
103     }
104 
105     public void setTagsEntryLocalService(
106         TagsEntryLocalService tagsEntryLocalService) {
107         this.tagsEntryLocalService = tagsEntryLocalService;
108     }
109 
110     public TagsEntryService getTagsEntryService() {
111         return tagsEntryService;
112     }
113 
114     public void setTagsEntryService(TagsEntryService tagsEntryService) {
115         this.tagsEntryService = tagsEntryService;
116     }
117 
118     public TagsEntryPersistence getTagsEntryPersistence() {
119         return tagsEntryPersistence;
120     }
121 
122     public void setTagsEntryPersistence(
123         TagsEntryPersistence tagsEntryPersistence) {
124         this.tagsEntryPersistence = tagsEntryPersistence;
125     }
126 
127     public TagsEntryFinder getTagsEntryFinder() {
128         return tagsEntryFinder;
129     }
130 
131     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
132         this.tagsEntryFinder = tagsEntryFinder;
133     }
134 
135     public TagsPropertyLocalService getTagsPropertyLocalService() {
136         return tagsPropertyLocalService;
137     }
138 
139     public void setTagsPropertyLocalService(
140         TagsPropertyLocalService tagsPropertyLocalService) {
141         this.tagsPropertyLocalService = tagsPropertyLocalService;
142     }
143 
144     public TagsPropertyService getTagsPropertyService() {
145         return tagsPropertyService;
146     }
147 
148     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
149         this.tagsPropertyService = tagsPropertyService;
150     }
151 
152     public TagsPropertyPersistence getTagsPropertyPersistence() {
153         return tagsPropertyPersistence;
154     }
155 
156     public void setTagsPropertyPersistence(
157         TagsPropertyPersistence tagsPropertyPersistence) {
158         this.tagsPropertyPersistence = tagsPropertyPersistence;
159     }
160 
161     public TagsPropertyFinder getTagsPropertyFinder() {
162         return tagsPropertyFinder;
163     }
164 
165     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
166         this.tagsPropertyFinder = tagsPropertyFinder;
167     }
168 
169     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
170         return tagsPropertyKeyFinder;
171     }
172 
173     public void setTagsPropertyKeyFinder(
174         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
175         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
176     }
177 
178     public TagsSourceLocalService getTagsSourceLocalService() {
179         return tagsSourceLocalService;
180     }
181 
182     public void setTagsSourceLocalService(
183         TagsSourceLocalService tagsSourceLocalService) {
184         this.tagsSourceLocalService = tagsSourceLocalService;
185     }
186 
187     public TagsSourceService getTagsSourceService() {
188         return tagsSourceService;
189     }
190 
191     public void setTagsSourceService(TagsSourceService tagsSourceService) {
192         this.tagsSourceService = tagsSourceService;
193     }
194 
195     public TagsSourcePersistence getTagsSourcePersistence() {
196         return tagsSourcePersistence;
197     }
198 
199     public void setTagsSourcePersistence(
200         TagsSourcePersistence tagsSourcePersistence) {
201         this.tagsSourcePersistence = tagsSourcePersistence;
202     }
203 
204     public TagsVocabularyLocalService getTagsVocabularyLocalService() {
205         return tagsVocabularyLocalService;
206     }
207 
208     public void setTagsVocabularyLocalService(
209         TagsVocabularyLocalService tagsVocabularyLocalService) {
210         this.tagsVocabularyLocalService = tagsVocabularyLocalService;
211     }
212 
213     public TagsVocabularyService getTagsVocabularyService() {
214         return tagsVocabularyService;
215     }
216 
217     public void setTagsVocabularyService(
218         TagsVocabularyService tagsVocabularyService) {
219         this.tagsVocabularyService = tagsVocabularyService;
220     }
221 
222     public TagsVocabularyPersistence getTagsVocabularyPersistence() {
223         return tagsVocabularyPersistence;
224     }
225 
226     public void setTagsVocabularyPersistence(
227         TagsVocabularyPersistence tagsVocabularyPersistence) {
228         this.tagsVocabularyPersistence = tagsVocabularyPersistence;
229     }
230 
231     public CounterLocalService getCounterLocalService() {
232         return counterLocalService;
233     }
234 
235     public void setCounterLocalService(CounterLocalService counterLocalService) {
236         this.counterLocalService = counterLocalService;
237     }
238 
239     public CounterService getCounterService() {
240         return counterService;
241     }
242 
243     public void setCounterService(CounterService counterService) {
244         this.counterService = counterService;
245     }
246 
247     public ResourceLocalService getResourceLocalService() {
248         return resourceLocalService;
249     }
250 
251     public void setResourceLocalService(
252         ResourceLocalService resourceLocalService) {
253         this.resourceLocalService = resourceLocalService;
254     }
255 
256     public ResourceService getResourceService() {
257         return resourceService;
258     }
259 
260     public void setResourceService(ResourceService resourceService) {
261         this.resourceService = resourceService;
262     }
263 
264     public ResourcePersistence getResourcePersistence() {
265         return resourcePersistence;
266     }
267 
268     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
269         this.resourcePersistence = resourcePersistence;
270     }
271 
272     public ResourceFinder getResourceFinder() {
273         return resourceFinder;
274     }
275 
276     public void setResourceFinder(ResourceFinder resourceFinder) {
277         this.resourceFinder = resourceFinder;
278     }
279 
280     public UserLocalService getUserLocalService() {
281         return userLocalService;
282     }
283 
284     public void setUserLocalService(UserLocalService userLocalService) {
285         this.userLocalService = userLocalService;
286     }
287 
288     public UserService getUserService() {
289         return userService;
290     }
291 
292     public void setUserService(UserService userService) {
293         this.userService = userService;
294     }
295 
296     public UserPersistence getUserPersistence() {
297         return userPersistence;
298     }
299 
300     public void setUserPersistence(UserPersistence userPersistence) {
301         this.userPersistence = userPersistence;
302     }
303 
304     public UserFinder getUserFinder() {
305         return userFinder;
306     }
307 
308     public void setUserFinder(UserFinder userFinder) {
309         this.userFinder = userFinder;
310     }
311 
312     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
313     protected TagsAssetLocalService tagsAssetLocalService;
314     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
315     protected TagsAssetService tagsAssetService;
316     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
317     protected TagsAssetPersistence tagsAssetPersistence;
318     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
319     protected TagsAssetFinder tagsAssetFinder;
320     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
321     protected TagsEntryLocalService tagsEntryLocalService;
322     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
323     protected TagsEntryService tagsEntryService;
324     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
325     protected TagsEntryPersistence tagsEntryPersistence;
326     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
327     protected TagsEntryFinder tagsEntryFinder;
328     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
329     protected TagsPropertyLocalService tagsPropertyLocalService;
330     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
331     protected TagsPropertyService tagsPropertyService;
332     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
333     protected TagsPropertyPersistence tagsPropertyPersistence;
334     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
335     protected TagsPropertyFinder tagsPropertyFinder;
336     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
337     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
338     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
339     protected TagsSourceLocalService tagsSourceLocalService;
340     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
341     protected TagsSourceService tagsSourceService;
342     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
343     protected TagsSourcePersistence tagsSourcePersistence;
344     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyLocalService.impl")
345     protected TagsVocabularyLocalService tagsVocabularyLocalService;
346     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyService.impl")
347     protected TagsVocabularyService tagsVocabularyService;
348     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence.impl")
349     protected TagsVocabularyPersistence tagsVocabularyPersistence;
350     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
351     protected CounterLocalService counterLocalService;
352     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
353     protected CounterService counterService;
354     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
355     protected ResourceLocalService resourceLocalService;
356     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
357     protected ResourceService resourceService;
358     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
359     protected ResourcePersistence resourcePersistence;
360     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
361     protected ResourceFinder resourceFinder;
362     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
363     protected UserLocalService userLocalService;
364     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
365     protected UserService userService;
366     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
367     protected UserPersistence userPersistence;
368     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
369     protected UserFinder userFinder;
370 }