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