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.portal.kernel.annotation.BeanReference;
26  import com.liferay.portal.service.base.PrincipalBean;
27  
28  import com.liferay.portlet.tags.service.TagsAssetLocalService;
29  import com.liferay.portlet.tags.service.TagsAssetService;
30  import com.liferay.portlet.tags.service.TagsEntryLocalService;
31  import com.liferay.portlet.tags.service.TagsEntryService;
32  import com.liferay.portlet.tags.service.TagsPropertyLocalService;
33  import com.liferay.portlet.tags.service.TagsPropertyService;
34  import com.liferay.portlet.tags.service.TagsSourceLocalService;
35  import com.liferay.portlet.tags.service.TagsSourceService;
36  import com.liferay.portlet.tags.service.TagsVocabularyLocalService;
37  import com.liferay.portlet.tags.service.TagsVocabularyService;
38  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
39  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
40  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
41  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
42  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
43  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
44  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
45  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
46  import com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence;
47  
48  /**
49   * <a href="TagsSourceServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
50   *
51   * @author Brian Wing Shun Chan
52   *
53   */
54  public abstract class TagsSourceServiceBaseImpl extends PrincipalBean
55      implements TagsSourceService {
56      public TagsAssetLocalService getTagsAssetLocalService() {
57          return tagsAssetLocalService;
58      }
59  
60      public void setTagsAssetLocalService(
61          TagsAssetLocalService tagsAssetLocalService) {
62          this.tagsAssetLocalService = tagsAssetLocalService;
63      }
64  
65      public TagsAssetService getTagsAssetService() {
66          return tagsAssetService;
67      }
68  
69      public void setTagsAssetService(TagsAssetService tagsAssetService) {
70          this.tagsAssetService = tagsAssetService;
71      }
72  
73      public TagsAssetPersistence getTagsAssetPersistence() {
74          return tagsAssetPersistence;
75      }
76  
77      public void setTagsAssetPersistence(
78          TagsAssetPersistence tagsAssetPersistence) {
79          this.tagsAssetPersistence = tagsAssetPersistence;
80      }
81  
82      public TagsAssetFinder getTagsAssetFinder() {
83          return tagsAssetFinder;
84      }
85  
86      public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
87          this.tagsAssetFinder = tagsAssetFinder;
88      }
89  
90      public TagsEntryLocalService getTagsEntryLocalService() {
91          return tagsEntryLocalService;
92      }
93  
94      public void setTagsEntryLocalService(
95          TagsEntryLocalService tagsEntryLocalService) {
96          this.tagsEntryLocalService = tagsEntryLocalService;
97      }
98  
99      public TagsEntryService getTagsEntryService() {
100         return tagsEntryService;
101     }
102 
103     public void setTagsEntryService(TagsEntryService tagsEntryService) {
104         this.tagsEntryService = tagsEntryService;
105     }
106 
107     public TagsEntryPersistence getTagsEntryPersistence() {
108         return tagsEntryPersistence;
109     }
110 
111     public void setTagsEntryPersistence(
112         TagsEntryPersistence tagsEntryPersistence) {
113         this.tagsEntryPersistence = tagsEntryPersistence;
114     }
115 
116     public TagsEntryFinder getTagsEntryFinder() {
117         return tagsEntryFinder;
118     }
119 
120     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
121         this.tagsEntryFinder = tagsEntryFinder;
122     }
123 
124     public TagsPropertyLocalService getTagsPropertyLocalService() {
125         return tagsPropertyLocalService;
126     }
127 
128     public void setTagsPropertyLocalService(
129         TagsPropertyLocalService tagsPropertyLocalService) {
130         this.tagsPropertyLocalService = tagsPropertyLocalService;
131     }
132 
133     public TagsPropertyService getTagsPropertyService() {
134         return tagsPropertyService;
135     }
136 
137     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
138         this.tagsPropertyService = tagsPropertyService;
139     }
140 
141     public TagsPropertyPersistence getTagsPropertyPersistence() {
142         return tagsPropertyPersistence;
143     }
144 
145     public void setTagsPropertyPersistence(
146         TagsPropertyPersistence tagsPropertyPersistence) {
147         this.tagsPropertyPersistence = tagsPropertyPersistence;
148     }
149 
150     public TagsPropertyFinder getTagsPropertyFinder() {
151         return tagsPropertyFinder;
152     }
153 
154     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
155         this.tagsPropertyFinder = tagsPropertyFinder;
156     }
157 
158     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
159         return tagsPropertyKeyFinder;
160     }
161 
162     public void setTagsPropertyKeyFinder(
163         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
164         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
165     }
166 
167     public TagsSourceLocalService getTagsSourceLocalService() {
168         return tagsSourceLocalService;
169     }
170 
171     public void setTagsSourceLocalService(
172         TagsSourceLocalService tagsSourceLocalService) {
173         this.tagsSourceLocalService = tagsSourceLocalService;
174     }
175 
176     public TagsSourceService getTagsSourceService() {
177         return tagsSourceService;
178     }
179 
180     public void setTagsSourceService(TagsSourceService tagsSourceService) {
181         this.tagsSourceService = tagsSourceService;
182     }
183 
184     public TagsSourcePersistence getTagsSourcePersistence() {
185         return tagsSourcePersistence;
186     }
187 
188     public void setTagsSourcePersistence(
189         TagsSourcePersistence tagsSourcePersistence) {
190         this.tagsSourcePersistence = tagsSourcePersistence;
191     }
192 
193     public TagsVocabularyLocalService getTagsVocabularyLocalService() {
194         return tagsVocabularyLocalService;
195     }
196 
197     public void setTagsVocabularyLocalService(
198         TagsVocabularyLocalService tagsVocabularyLocalService) {
199         this.tagsVocabularyLocalService = tagsVocabularyLocalService;
200     }
201 
202     public TagsVocabularyService getTagsVocabularyService() {
203         return tagsVocabularyService;
204     }
205 
206     public void setTagsVocabularyService(
207         TagsVocabularyService tagsVocabularyService) {
208         this.tagsVocabularyService = tagsVocabularyService;
209     }
210 
211     public TagsVocabularyPersistence getTagsVocabularyPersistence() {
212         return tagsVocabularyPersistence;
213     }
214 
215     public void setTagsVocabularyPersistence(
216         TagsVocabularyPersistence tagsVocabularyPersistence) {
217         this.tagsVocabularyPersistence = tagsVocabularyPersistence;
218     }
219 
220     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
221     protected TagsAssetLocalService tagsAssetLocalService;
222     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
223     protected TagsAssetService tagsAssetService;
224     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
225     protected TagsAssetPersistence tagsAssetPersistence;
226     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
227     protected TagsAssetFinder tagsAssetFinder;
228     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
229     protected TagsEntryLocalService tagsEntryLocalService;
230     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
231     protected TagsEntryService tagsEntryService;
232     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
233     protected TagsEntryPersistence tagsEntryPersistence;
234     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
235     protected TagsEntryFinder tagsEntryFinder;
236     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
237     protected TagsPropertyLocalService tagsPropertyLocalService;
238     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
239     protected TagsPropertyService tagsPropertyService;
240     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
241     protected TagsPropertyPersistence tagsPropertyPersistence;
242     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
243     protected TagsPropertyFinder tagsPropertyFinder;
244     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
245     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
246     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
247     protected TagsSourceLocalService tagsSourceLocalService;
248     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
249     protected TagsSourceService tagsSourceService;
250     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
251     protected TagsSourcePersistence tagsSourcePersistence;
252     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyLocalService.impl")
253     protected TagsVocabularyLocalService tagsVocabularyLocalService;
254     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyService.impl")
255     protected TagsVocabularyService tagsVocabularyService;
256     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence.impl")
257     protected TagsVocabularyPersistence tagsVocabularyPersistence;
258 }