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.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  
54  /**
55   * <a href="TagsEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
56   *
57   * @author Brian Wing Shun Chan
58   *
59   */
60  public abstract class TagsEntryServiceBaseImpl extends PrincipalBean
61      implements TagsEntryService {
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 CounterLocalService getCounterLocalService() {
200         return counterLocalService;
201     }
202 
203     public void setCounterLocalService(CounterLocalService counterLocalService) {
204         this.counterLocalService = counterLocalService;
205     }
206 
207     public CounterService getCounterService() {
208         return counterService;
209     }
210 
211     public void setCounterService(CounterService counterService) {
212         this.counterService = counterService;
213     }
214 
215     public UserLocalService getUserLocalService() {
216         return userLocalService;
217     }
218 
219     public void setUserLocalService(UserLocalService userLocalService) {
220         this.userLocalService = userLocalService;
221     }
222 
223     public UserService getUserService() {
224         return userService;
225     }
226 
227     public void setUserService(UserService userService) {
228         this.userService = userService;
229     }
230 
231     public UserPersistence getUserPersistence() {
232         return userPersistence;
233     }
234 
235     public void setUserPersistence(UserPersistence userPersistence) {
236         this.userPersistence = userPersistence;
237     }
238 
239     public UserFinder getUserFinder() {
240         return userFinder;
241     }
242 
243     public void setUserFinder(UserFinder userFinder) {
244         this.userFinder = userFinder;
245     }
246 
247     protected void runSQL(String sql) throws SystemException {
248         try {
249             PortalUtil.runSQL(sql);
250         }
251         catch (Exception e) {
252             throw new SystemException(e);
253         }
254     }
255 
256     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
257     protected TagsAssetLocalService tagsAssetLocalService;
258     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
259     protected TagsAssetService tagsAssetService;
260     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
261     protected TagsAssetPersistence tagsAssetPersistence;
262     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
263     protected TagsAssetFinder tagsAssetFinder;
264     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
265     protected TagsEntryLocalService tagsEntryLocalService;
266     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
267     protected TagsEntryService tagsEntryService;
268     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
269     protected TagsEntryPersistence tagsEntryPersistence;
270     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
271     protected TagsEntryFinder tagsEntryFinder;
272     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
273     protected TagsPropertyLocalService tagsPropertyLocalService;
274     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
275     protected TagsPropertyService tagsPropertyService;
276     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
277     protected TagsPropertyPersistence tagsPropertyPersistence;
278     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
279     protected TagsPropertyFinder tagsPropertyFinder;
280     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
281     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
282     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
283     protected TagsSourceLocalService tagsSourceLocalService;
284     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
285     protected TagsSourceService tagsSourceService;
286     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
287     protected TagsSourcePersistence tagsSourcePersistence;
288     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
289     protected CounterLocalService counterLocalService;
290     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
291     protected CounterService counterService;
292     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
293     protected UserLocalService userLocalService;
294     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
295     protected UserService userService;
296     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
297     protected UserPersistence userPersistence;
298     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
299     protected UserFinder userFinder;
300 }