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.calendar.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.mail.service.MailService;
29  
30  import com.liferay.portal.kernel.annotation.BeanReference;
31  import com.liferay.portal.service.CompanyLocalService;
32  import com.liferay.portal.service.CompanyService;
33  import com.liferay.portal.service.PortletPreferencesLocalService;
34  import com.liferay.portal.service.PortletPreferencesService;
35  import com.liferay.portal.service.ResourceLocalService;
36  import com.liferay.portal.service.ResourceService;
37  import com.liferay.portal.service.UserLocalService;
38  import com.liferay.portal.service.UserService;
39  import com.liferay.portal.service.base.PrincipalBean;
40  import com.liferay.portal.service.persistence.CompanyPersistence;
41  import com.liferay.portal.service.persistence.PortletPreferencesFinder;
42  import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
43  import com.liferay.portal.service.persistence.ResourceFinder;
44  import com.liferay.portal.service.persistence.ResourcePersistence;
45  import com.liferay.portal.service.persistence.UserFinder;
46  import com.liferay.portal.service.persistence.UserPersistence;
47  
48  import com.liferay.portlet.calendar.service.CalEventLocalService;
49  import com.liferay.portlet.calendar.service.CalEventService;
50  import com.liferay.portlet.calendar.service.persistence.CalEventFinder;
51  import com.liferay.portlet.calendar.service.persistence.CalEventPersistence;
52  import com.liferay.portlet.social.service.SocialActivityLocalService;
53  import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
54  import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
55  
56  /**
57   * <a href="CalEventServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
58   *
59   * @author Brian Wing Shun Chan
60   *
61   */
62  public abstract class CalEventServiceBaseImpl extends PrincipalBean
63      implements CalEventService {
64      public CalEventLocalService getCalEventLocalService() {
65          return calEventLocalService;
66      }
67  
68      public void setCalEventLocalService(
69          CalEventLocalService calEventLocalService) {
70          this.calEventLocalService = calEventLocalService;
71      }
72  
73      public CalEventService getCalEventService() {
74          return calEventService;
75      }
76  
77      public void setCalEventService(CalEventService calEventService) {
78          this.calEventService = calEventService;
79      }
80  
81      public CalEventPersistence getCalEventPersistence() {
82          return calEventPersistence;
83      }
84  
85      public void setCalEventPersistence(CalEventPersistence calEventPersistence) {
86          this.calEventPersistence = calEventPersistence;
87      }
88  
89      public CalEventFinder getCalEventFinder() {
90          return calEventFinder;
91      }
92  
93      public void setCalEventFinder(CalEventFinder calEventFinder) {
94          this.calEventFinder = calEventFinder;
95      }
96  
97      public CounterLocalService getCounterLocalService() {
98          return counterLocalService;
99      }
100 
101     public void setCounterLocalService(CounterLocalService counterLocalService) {
102         this.counterLocalService = counterLocalService;
103     }
104 
105     public CounterService getCounterService() {
106         return counterService;
107     }
108 
109     public void setCounterService(CounterService counterService) {
110         this.counterService = counterService;
111     }
112 
113     public MailService getMailService() {
114         return mailService;
115     }
116 
117     public void setMailService(MailService mailService) {
118         this.mailService = mailService;
119     }
120 
121     public CompanyLocalService getCompanyLocalService() {
122         return companyLocalService;
123     }
124 
125     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
126         this.companyLocalService = companyLocalService;
127     }
128 
129     public CompanyService getCompanyService() {
130         return companyService;
131     }
132 
133     public void setCompanyService(CompanyService companyService) {
134         this.companyService = companyService;
135     }
136 
137     public CompanyPersistence getCompanyPersistence() {
138         return companyPersistence;
139     }
140 
141     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
142         this.companyPersistence = companyPersistence;
143     }
144 
145     public PortletPreferencesLocalService getPortletPreferencesLocalService() {
146         return portletPreferencesLocalService;
147     }
148 
149     public void setPortletPreferencesLocalService(
150         PortletPreferencesLocalService portletPreferencesLocalService) {
151         this.portletPreferencesLocalService = portletPreferencesLocalService;
152     }
153 
154     public PortletPreferencesService getPortletPreferencesService() {
155         return portletPreferencesService;
156     }
157 
158     public void setPortletPreferencesService(
159         PortletPreferencesService portletPreferencesService) {
160         this.portletPreferencesService = portletPreferencesService;
161     }
162 
163     public PortletPreferencesPersistence getPortletPreferencesPersistence() {
164         return portletPreferencesPersistence;
165     }
166 
167     public void setPortletPreferencesPersistence(
168         PortletPreferencesPersistence portletPreferencesPersistence) {
169         this.portletPreferencesPersistence = portletPreferencesPersistence;
170     }
171 
172     public PortletPreferencesFinder getPortletPreferencesFinder() {
173         return portletPreferencesFinder;
174     }
175 
176     public void setPortletPreferencesFinder(
177         PortletPreferencesFinder portletPreferencesFinder) {
178         this.portletPreferencesFinder = portletPreferencesFinder;
179     }
180 
181     public ResourceLocalService getResourceLocalService() {
182         return resourceLocalService;
183     }
184 
185     public void setResourceLocalService(
186         ResourceLocalService resourceLocalService) {
187         this.resourceLocalService = resourceLocalService;
188     }
189 
190     public ResourceService getResourceService() {
191         return resourceService;
192     }
193 
194     public void setResourceService(ResourceService resourceService) {
195         this.resourceService = resourceService;
196     }
197 
198     public ResourcePersistence getResourcePersistence() {
199         return resourcePersistence;
200     }
201 
202     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
203         this.resourcePersistence = resourcePersistence;
204     }
205 
206     public ResourceFinder getResourceFinder() {
207         return resourceFinder;
208     }
209 
210     public void setResourceFinder(ResourceFinder resourceFinder) {
211         this.resourceFinder = resourceFinder;
212     }
213 
214     public SocialActivityLocalService getSocialActivityLocalService() {
215         return socialActivityLocalService;
216     }
217 
218     public void setSocialActivityLocalService(
219         SocialActivityLocalService socialActivityLocalService) {
220         this.socialActivityLocalService = socialActivityLocalService;
221     }
222 
223     public SocialActivityPersistence getSocialActivityPersistence() {
224         return socialActivityPersistence;
225     }
226 
227     public void setSocialActivityPersistence(
228         SocialActivityPersistence socialActivityPersistence) {
229         this.socialActivityPersistence = socialActivityPersistence;
230     }
231 
232     public SocialActivityFinder getSocialActivityFinder() {
233         return socialActivityFinder;
234     }
235 
236     public void setSocialActivityFinder(
237         SocialActivityFinder socialActivityFinder) {
238         this.socialActivityFinder = socialActivityFinder;
239     }
240 
241     public UserLocalService getUserLocalService() {
242         return userLocalService;
243     }
244 
245     public void setUserLocalService(UserLocalService userLocalService) {
246         this.userLocalService = userLocalService;
247     }
248 
249     public UserService getUserService() {
250         return userService;
251     }
252 
253     public void setUserService(UserService userService) {
254         this.userService = userService;
255     }
256 
257     public UserPersistence getUserPersistence() {
258         return userPersistence;
259     }
260 
261     public void setUserPersistence(UserPersistence userPersistence) {
262         this.userPersistence = userPersistence;
263     }
264 
265     public UserFinder getUserFinder() {
266         return userFinder;
267     }
268 
269     public void setUserFinder(UserFinder userFinder) {
270         this.userFinder = userFinder;
271     }
272 
273     @BeanReference(name = "com.liferay.portlet.calendar.service.CalEventLocalService.impl")
274     protected CalEventLocalService calEventLocalService;
275     @BeanReference(name = "com.liferay.portlet.calendar.service.CalEventService.impl")
276     protected CalEventService calEventService;
277     @BeanReference(name = "com.liferay.portlet.calendar.service.persistence.CalEventPersistence.impl")
278     protected CalEventPersistence calEventPersistence;
279     @BeanReference(name = "com.liferay.portlet.calendar.service.persistence.CalEventFinder.impl")
280     protected CalEventFinder calEventFinder;
281     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
282     protected CounterLocalService counterLocalService;
283     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
284     protected CounterService counterService;
285     @BeanReference(name = "com.liferay.mail.service.MailService.impl")
286     protected MailService mailService;
287     @BeanReference(name = "com.liferay.portal.service.CompanyLocalService.impl")
288     protected CompanyLocalService companyLocalService;
289     @BeanReference(name = "com.liferay.portal.service.CompanyService.impl")
290     protected CompanyService companyService;
291     @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence.impl")
292     protected CompanyPersistence companyPersistence;
293     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesLocalService.impl")
294     protected PortletPreferencesLocalService portletPreferencesLocalService;
295     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesService.impl")
296     protected PortletPreferencesService portletPreferencesService;
297     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesPersistence.impl")
298     protected PortletPreferencesPersistence portletPreferencesPersistence;
299     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesFinder.impl")
300     protected PortletPreferencesFinder portletPreferencesFinder;
301     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
302     protected ResourceLocalService resourceLocalService;
303     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
304     protected ResourceService resourceService;
305     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
306     protected ResourcePersistence resourcePersistence;
307     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
308     protected ResourceFinder resourceFinder;
309     @BeanReference(name = "com.liferay.portlet.social.service.SocialActivityLocalService.impl")
310     protected SocialActivityLocalService socialActivityLocalService;
311     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityPersistence.impl")
312     protected SocialActivityPersistence socialActivityPersistence;
313     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityFinder.impl")
314     protected SocialActivityFinder socialActivityFinder;
315     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
316     protected UserLocalService userLocalService;
317     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
318     protected UserService userService;
319     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
320     protected UserPersistence userPersistence;
321     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
322     protected UserFinder userFinder;
323 }