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