1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17   * SOFTWARE.
18   */
19  
20  package com.liferay.portlet.tags.service.base;
21  
22  import com.liferay.counter.service.CounterLocalService;
23  import com.liferay.counter.service.CounterService;
24  
25  import com.liferay.portal.SystemException;
26  import com.liferay.portal.kernel.annotation.BeanReference;
27  import com.liferay.portal.service.UserLocalService;
28  import com.liferay.portal.service.UserService;
29  import com.liferay.portal.service.base.PrincipalBean;
30  import com.liferay.portal.service.persistence.UserFinder;
31  import com.liferay.portal.service.persistence.UserPersistence;
32  import com.liferay.portal.util.PortalUtil;
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.TagsVocabularyLocalService;
43  import com.liferay.portlet.tags.service.TagsVocabularyService;
44  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
45  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
46  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
47  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
48  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
49  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
50  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
51  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
52  import com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence;
53  
54  /**
55   * <a href="TagsPropertyServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
56   *
57   * @author Brian Wing Shun Chan
58   *
59   */
60  public abstract class TagsPropertyServiceBaseImpl extends PrincipalBean
61      implements TagsPropertyService {
62      public TagsAssetLocalService getTagsAssetLocalService() {
63          return tagsAssetLocalService;
64      }
65  
66      public void setTagsAssetLocalService(
67          TagsAssetLocalService tagsAssetLocalService) {
68          this.tagsAssetLocalService = tagsAssetLocalService;
69      }
70  
71      public TagsAssetService getTagsAssetService() {
72          return tagsAssetService;
73      }
74  
75      public void setTagsAssetService(TagsAssetService tagsAssetService) {
76          this.tagsAssetService = tagsAssetService;
77      }
78  
79      public TagsAssetPersistence getTagsAssetPersistence() {
80          return tagsAssetPersistence;
81      }
82  
83      public void setTagsAssetPersistence(
84          TagsAssetPersistence tagsAssetPersistence) {
85          this.tagsAssetPersistence = tagsAssetPersistence;
86      }
87  
88      public TagsAssetFinder getTagsAssetFinder() {
89          return tagsAssetFinder;
90      }
91  
92      public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
93          this.tagsAssetFinder = tagsAssetFinder;
94      }
95  
96      public TagsEntryLocalService getTagsEntryLocalService() {
97          return tagsEntryLocalService;
98      }
99  
100     public void setTagsEntryLocalService(
101         TagsEntryLocalService tagsEntryLocalService) {
102         this.tagsEntryLocalService = tagsEntryLocalService;
103     }
104 
105     public TagsEntryService getTagsEntryService() {
106         return tagsEntryService;
107     }
108 
109     public void setTagsEntryService(TagsEntryService tagsEntryService) {
110         this.tagsEntryService = tagsEntryService;
111     }
112 
113     public TagsEntryPersistence getTagsEntryPersistence() {
114         return tagsEntryPersistence;
115     }
116 
117     public void setTagsEntryPersistence(
118         TagsEntryPersistence tagsEntryPersistence) {
119         this.tagsEntryPersistence = tagsEntryPersistence;
120     }
121 
122     public TagsEntryFinder getTagsEntryFinder() {
123         return tagsEntryFinder;
124     }
125 
126     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
127         this.tagsEntryFinder = tagsEntryFinder;
128     }
129 
130     public TagsPropertyLocalService getTagsPropertyLocalService() {
131         return tagsPropertyLocalService;
132     }
133 
134     public void setTagsPropertyLocalService(
135         TagsPropertyLocalService tagsPropertyLocalService) {
136         this.tagsPropertyLocalService = tagsPropertyLocalService;
137     }
138 
139     public TagsPropertyService getTagsPropertyService() {
140         return tagsPropertyService;
141     }
142 
143     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
144         this.tagsPropertyService = tagsPropertyService;
145     }
146 
147     public TagsPropertyPersistence getTagsPropertyPersistence() {
148         return tagsPropertyPersistence;
149     }
150 
151     public void setTagsPropertyPersistence(
152         TagsPropertyPersistence tagsPropertyPersistence) {
153         this.tagsPropertyPersistence = tagsPropertyPersistence;
154     }
155 
156     public TagsPropertyFinder getTagsPropertyFinder() {
157         return tagsPropertyFinder;
158     }
159 
160     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
161         this.tagsPropertyFinder = tagsPropertyFinder;
162     }
163 
164     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
165         return tagsPropertyKeyFinder;
166     }
167 
168     public void setTagsPropertyKeyFinder(
169         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
170         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
171     }
172 
173     public TagsSourceLocalService getTagsSourceLocalService() {
174         return tagsSourceLocalService;
175     }
176 
177     public void setTagsSourceLocalService(
178         TagsSourceLocalService tagsSourceLocalService) {
179         this.tagsSourceLocalService = tagsSourceLocalService;
180     }
181 
182     public TagsSourceService getTagsSourceService() {
183         return tagsSourceService;
184     }
185 
186     public void setTagsSourceService(TagsSourceService tagsSourceService) {
187         this.tagsSourceService = tagsSourceService;
188     }
189 
190     public TagsSourcePersistence getTagsSourcePersistence() {
191         return tagsSourcePersistence;
192     }
193 
194     public void setTagsSourcePersistence(
195         TagsSourcePersistence tagsSourcePersistence) {
196         this.tagsSourcePersistence = tagsSourcePersistence;
197     }
198 
199     public TagsVocabularyLocalService getTagsVocabularyLocalService() {
200         return tagsVocabularyLocalService;
201     }
202 
203     public void setTagsVocabularyLocalService(
204         TagsVocabularyLocalService tagsVocabularyLocalService) {
205         this.tagsVocabularyLocalService = tagsVocabularyLocalService;
206     }
207 
208     public TagsVocabularyService getTagsVocabularyService() {
209         return tagsVocabularyService;
210     }
211 
212     public void setTagsVocabularyService(
213         TagsVocabularyService tagsVocabularyService) {
214         this.tagsVocabularyService = tagsVocabularyService;
215     }
216 
217     public TagsVocabularyPersistence getTagsVocabularyPersistence() {
218         return tagsVocabularyPersistence;
219     }
220 
221     public void setTagsVocabularyPersistence(
222         TagsVocabularyPersistence tagsVocabularyPersistence) {
223         this.tagsVocabularyPersistence = tagsVocabularyPersistence;
224     }
225 
226     public CounterLocalService getCounterLocalService() {
227         return counterLocalService;
228     }
229 
230     public void setCounterLocalService(CounterLocalService counterLocalService) {
231         this.counterLocalService = counterLocalService;
232     }
233 
234     public CounterService getCounterService() {
235         return counterService;
236     }
237 
238     public void setCounterService(CounterService counterService) {
239         this.counterService = counterService;
240     }
241 
242     public UserLocalService getUserLocalService() {
243         return userLocalService;
244     }
245 
246     public void setUserLocalService(UserLocalService userLocalService) {
247         this.userLocalService = userLocalService;
248     }
249 
250     public UserService getUserService() {
251         return userService;
252     }
253 
254     public void setUserService(UserService userService) {
255         this.userService = userService;
256     }
257 
258     public UserPersistence getUserPersistence() {
259         return userPersistence;
260     }
261 
262     public void setUserPersistence(UserPersistence userPersistence) {
263         this.userPersistence = userPersistence;
264     }
265 
266     public UserFinder getUserFinder() {
267         return userFinder;
268     }
269 
270     public void setUserFinder(UserFinder userFinder) {
271         this.userFinder = userFinder;
272     }
273 
274     protected void runSQL(String sql) throws SystemException {
275         try {
276             PortalUtil.runSQL(sql);
277         }
278         catch (Exception e) {
279             throw new SystemException(e);
280         }
281     }
282 
283     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
284     protected TagsAssetLocalService tagsAssetLocalService;
285     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
286     protected TagsAssetService tagsAssetService;
287     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
288     protected TagsAssetPersistence tagsAssetPersistence;
289     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
290     protected TagsAssetFinder tagsAssetFinder;
291     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
292     protected TagsEntryLocalService tagsEntryLocalService;
293     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
294     protected TagsEntryService tagsEntryService;
295     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
296     protected TagsEntryPersistence tagsEntryPersistence;
297     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
298     protected TagsEntryFinder tagsEntryFinder;
299     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
300     protected TagsPropertyLocalService tagsPropertyLocalService;
301     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
302     protected TagsPropertyService tagsPropertyService;
303     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
304     protected TagsPropertyPersistence tagsPropertyPersistence;
305     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
306     protected TagsPropertyFinder tagsPropertyFinder;
307     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
308     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
309     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
310     protected TagsSourceLocalService tagsSourceLocalService;
311     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
312     protected TagsSourceService tagsSourceService;
313     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
314     protected TagsSourcePersistence tagsSourcePersistence;
315     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyLocalService.impl")
316     protected TagsVocabularyLocalService tagsVocabularyLocalService;
317     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyService.impl")
318     protected TagsVocabularyService tagsVocabularyService;
319     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence.impl")
320     protected TagsVocabularyPersistence tagsVocabularyPersistence;
321     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
322     protected CounterLocalService counterLocalService;
323     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
324     protected CounterService counterService;
325     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
326     protected UserLocalService userLocalService;
327     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
328     protected UserService userService;
329     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
330     protected UserPersistence userPersistence;
331     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
332     protected UserFinder userFinder;
333 }