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