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