1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.blogs.service.base;
16  
17  import com.liferay.counter.service.CounterLocalService;
18  import com.liferay.counter.service.CounterService;
19  
20  import com.liferay.portal.kernel.annotation.BeanReference;
21  import com.liferay.portal.kernel.dao.db.DB;
22  import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
23  import com.liferay.portal.kernel.exception.SystemException;
24  import com.liferay.portal.service.CompanyLocalService;
25  import com.liferay.portal.service.CompanyService;
26  import com.liferay.portal.service.GroupLocalService;
27  import com.liferay.portal.service.GroupService;
28  import com.liferay.portal.service.OrganizationLocalService;
29  import com.liferay.portal.service.OrganizationService;
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.GroupFinder;
39  import com.liferay.portal.service.persistence.GroupPersistence;
40  import com.liferay.portal.service.persistence.OrganizationFinder;
41  import com.liferay.portal.service.persistence.OrganizationPersistence;
42  import com.liferay.portal.service.persistence.PortletPreferencesFinder;
43  import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
44  import com.liferay.portal.service.persistence.ResourceFinder;
45  import com.liferay.portal.service.persistence.ResourcePersistence;
46  import com.liferay.portal.service.persistence.UserFinder;
47  import com.liferay.portal.service.persistence.UserPersistence;
48  
49  import com.liferay.portlet.asset.service.AssetEntryLocalService;
50  import com.liferay.portlet.asset.service.AssetEntryService;
51  import com.liferay.portlet.asset.service.AssetTagLocalService;
52  import com.liferay.portlet.asset.service.AssetTagService;
53  import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
54  import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
55  import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
56  import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
57  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
58  import com.liferay.portlet.blogs.service.BlogsEntryService;
59  import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
60  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
61  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
62  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
63  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
64  import com.liferay.portlet.expando.service.ExpandoValueLocalService;
65  import com.liferay.portlet.expando.service.ExpandoValueService;
66  import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
67  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
68  import com.liferay.portlet.messageboards.service.MBMessageService;
69  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
70  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
71  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
72  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
73  import com.liferay.portlet.social.service.SocialActivityLocalService;
74  import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
75  import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
76  
77  /**
78   * <a href="BlogsEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
79   *
80   * @author Brian Wing Shun Chan
81   */
82  public abstract class BlogsEntryServiceBaseImpl extends PrincipalBean
83      implements BlogsEntryService {
84      public BlogsEntryLocalService getBlogsEntryLocalService() {
85          return blogsEntryLocalService;
86      }
87  
88      public void setBlogsEntryLocalService(
89          BlogsEntryLocalService blogsEntryLocalService) {
90          this.blogsEntryLocalService = blogsEntryLocalService;
91      }
92  
93      public BlogsEntryService getBlogsEntryService() {
94          return blogsEntryService;
95      }
96  
97      public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
98          this.blogsEntryService = blogsEntryService;
99      }
100 
101     public BlogsEntryPersistence getBlogsEntryPersistence() {
102         return blogsEntryPersistence;
103     }
104 
105     public void setBlogsEntryPersistence(
106         BlogsEntryPersistence blogsEntryPersistence) {
107         this.blogsEntryPersistence = blogsEntryPersistence;
108     }
109 
110     public BlogsEntryFinder getBlogsEntryFinder() {
111         return blogsEntryFinder;
112     }
113 
114     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
115         this.blogsEntryFinder = blogsEntryFinder;
116     }
117 
118     public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
119         return blogsStatsUserLocalService;
120     }
121 
122     public void setBlogsStatsUserLocalService(
123         BlogsStatsUserLocalService blogsStatsUserLocalService) {
124         this.blogsStatsUserLocalService = blogsStatsUserLocalService;
125     }
126 
127     public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
128         return blogsStatsUserPersistence;
129     }
130 
131     public void setBlogsStatsUserPersistence(
132         BlogsStatsUserPersistence blogsStatsUserPersistence) {
133         this.blogsStatsUserPersistence = blogsStatsUserPersistence;
134     }
135 
136     public BlogsStatsUserFinder getBlogsStatsUserFinder() {
137         return blogsStatsUserFinder;
138     }
139 
140     public void setBlogsStatsUserFinder(
141         BlogsStatsUserFinder blogsStatsUserFinder) {
142         this.blogsStatsUserFinder = blogsStatsUserFinder;
143     }
144 
145     public CounterLocalService getCounterLocalService() {
146         return counterLocalService;
147     }
148 
149     public void setCounterLocalService(CounterLocalService counterLocalService) {
150         this.counterLocalService = counterLocalService;
151     }
152 
153     public CounterService getCounterService() {
154         return counterService;
155     }
156 
157     public void setCounterService(CounterService counterService) {
158         this.counterService = counterService;
159     }
160 
161     public CompanyLocalService getCompanyLocalService() {
162         return companyLocalService;
163     }
164 
165     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
166         this.companyLocalService = companyLocalService;
167     }
168 
169     public CompanyService getCompanyService() {
170         return companyService;
171     }
172 
173     public void setCompanyService(CompanyService companyService) {
174         this.companyService = companyService;
175     }
176 
177     public CompanyPersistence getCompanyPersistence() {
178         return companyPersistence;
179     }
180 
181     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
182         this.companyPersistence = companyPersistence;
183     }
184 
185     public GroupLocalService getGroupLocalService() {
186         return groupLocalService;
187     }
188 
189     public void setGroupLocalService(GroupLocalService groupLocalService) {
190         this.groupLocalService = groupLocalService;
191     }
192 
193     public GroupService getGroupService() {
194         return groupService;
195     }
196 
197     public void setGroupService(GroupService groupService) {
198         this.groupService = groupService;
199     }
200 
201     public GroupPersistence getGroupPersistence() {
202         return groupPersistence;
203     }
204 
205     public void setGroupPersistence(GroupPersistence groupPersistence) {
206         this.groupPersistence = groupPersistence;
207     }
208 
209     public GroupFinder getGroupFinder() {
210         return groupFinder;
211     }
212 
213     public void setGroupFinder(GroupFinder groupFinder) {
214         this.groupFinder = groupFinder;
215     }
216 
217     public OrganizationLocalService getOrganizationLocalService() {
218         return organizationLocalService;
219     }
220 
221     public void setOrganizationLocalService(
222         OrganizationLocalService organizationLocalService) {
223         this.organizationLocalService = organizationLocalService;
224     }
225 
226     public OrganizationService getOrganizationService() {
227         return organizationService;
228     }
229 
230     public void setOrganizationService(OrganizationService organizationService) {
231         this.organizationService = organizationService;
232     }
233 
234     public OrganizationPersistence getOrganizationPersistence() {
235         return organizationPersistence;
236     }
237 
238     public void setOrganizationPersistence(
239         OrganizationPersistence organizationPersistence) {
240         this.organizationPersistence = organizationPersistence;
241     }
242 
243     public OrganizationFinder getOrganizationFinder() {
244         return organizationFinder;
245     }
246 
247     public void setOrganizationFinder(OrganizationFinder organizationFinder) {
248         this.organizationFinder = organizationFinder;
249     }
250 
251     public PortletPreferencesLocalService getPortletPreferencesLocalService() {
252         return portletPreferencesLocalService;
253     }
254 
255     public void setPortletPreferencesLocalService(
256         PortletPreferencesLocalService portletPreferencesLocalService) {
257         this.portletPreferencesLocalService = portletPreferencesLocalService;
258     }
259 
260     public PortletPreferencesService getPortletPreferencesService() {
261         return portletPreferencesService;
262     }
263 
264     public void setPortletPreferencesService(
265         PortletPreferencesService portletPreferencesService) {
266         this.portletPreferencesService = portletPreferencesService;
267     }
268 
269     public PortletPreferencesPersistence getPortletPreferencesPersistence() {
270         return portletPreferencesPersistence;
271     }
272 
273     public void setPortletPreferencesPersistence(
274         PortletPreferencesPersistence portletPreferencesPersistence) {
275         this.portletPreferencesPersistence = portletPreferencesPersistence;
276     }
277 
278     public PortletPreferencesFinder getPortletPreferencesFinder() {
279         return portletPreferencesFinder;
280     }
281 
282     public void setPortletPreferencesFinder(
283         PortletPreferencesFinder portletPreferencesFinder) {
284         this.portletPreferencesFinder = portletPreferencesFinder;
285     }
286 
287     public ResourceLocalService getResourceLocalService() {
288         return resourceLocalService;
289     }
290 
291     public void setResourceLocalService(
292         ResourceLocalService resourceLocalService) {
293         this.resourceLocalService = resourceLocalService;
294     }
295 
296     public ResourceService getResourceService() {
297         return resourceService;
298     }
299 
300     public void setResourceService(ResourceService resourceService) {
301         this.resourceService = resourceService;
302     }
303 
304     public ResourcePersistence getResourcePersistence() {
305         return resourcePersistence;
306     }
307 
308     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
309         this.resourcePersistence = resourcePersistence;
310     }
311 
312     public ResourceFinder getResourceFinder() {
313         return resourceFinder;
314     }
315 
316     public void setResourceFinder(ResourceFinder resourceFinder) {
317         this.resourceFinder = resourceFinder;
318     }
319 
320     public UserLocalService getUserLocalService() {
321         return userLocalService;
322     }
323 
324     public void setUserLocalService(UserLocalService userLocalService) {
325         this.userLocalService = userLocalService;
326     }
327 
328     public UserService getUserService() {
329         return userService;
330     }
331 
332     public void setUserService(UserService userService) {
333         this.userService = userService;
334     }
335 
336     public UserPersistence getUserPersistence() {
337         return userPersistence;
338     }
339 
340     public void setUserPersistence(UserPersistence userPersistence) {
341         this.userPersistence = userPersistence;
342     }
343 
344     public UserFinder getUserFinder() {
345         return userFinder;
346     }
347 
348     public void setUserFinder(UserFinder userFinder) {
349         this.userFinder = userFinder;
350     }
351 
352     public AssetEntryLocalService getAssetEntryLocalService() {
353         return assetEntryLocalService;
354     }
355 
356     public void setAssetEntryLocalService(
357         AssetEntryLocalService assetEntryLocalService) {
358         this.assetEntryLocalService = assetEntryLocalService;
359     }
360 
361     public AssetEntryService getAssetEntryService() {
362         return assetEntryService;
363     }
364 
365     public void setAssetEntryService(AssetEntryService assetEntryService) {
366         this.assetEntryService = assetEntryService;
367     }
368 
369     public AssetEntryPersistence getAssetEntryPersistence() {
370         return assetEntryPersistence;
371     }
372 
373     public void setAssetEntryPersistence(
374         AssetEntryPersistence assetEntryPersistence) {
375         this.assetEntryPersistence = assetEntryPersistence;
376     }
377 
378     public AssetEntryFinder getAssetEntryFinder() {
379         return assetEntryFinder;
380     }
381 
382     public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
383         this.assetEntryFinder = assetEntryFinder;
384     }
385 
386     public AssetTagLocalService getAssetTagLocalService() {
387         return assetTagLocalService;
388     }
389 
390     public void setAssetTagLocalService(
391         AssetTagLocalService assetTagLocalService) {
392         this.assetTagLocalService = assetTagLocalService;
393     }
394 
395     public AssetTagService getAssetTagService() {
396         return assetTagService;
397     }
398 
399     public void setAssetTagService(AssetTagService assetTagService) {
400         this.assetTagService = assetTagService;
401     }
402 
403     public AssetTagPersistence getAssetTagPersistence() {
404         return assetTagPersistence;
405     }
406 
407     public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
408         this.assetTagPersistence = assetTagPersistence;
409     }
410 
411     public AssetTagFinder getAssetTagFinder() {
412         return assetTagFinder;
413     }
414 
415     public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
416         this.assetTagFinder = assetTagFinder;
417     }
418 
419     public ExpandoValueLocalService getExpandoValueLocalService() {
420         return expandoValueLocalService;
421     }
422 
423     public void setExpandoValueLocalService(
424         ExpandoValueLocalService expandoValueLocalService) {
425         this.expandoValueLocalService = expandoValueLocalService;
426     }
427 
428     public ExpandoValueService getExpandoValueService() {
429         return expandoValueService;
430     }
431 
432     public void setExpandoValueService(ExpandoValueService expandoValueService) {
433         this.expandoValueService = expandoValueService;
434     }
435 
436     public ExpandoValuePersistence getExpandoValuePersistence() {
437         return expandoValuePersistence;
438     }
439 
440     public void setExpandoValuePersistence(
441         ExpandoValuePersistence expandoValuePersistence) {
442         this.expandoValuePersistence = expandoValuePersistence;
443     }
444 
445     public MBMessageLocalService getMBMessageLocalService() {
446         return mbMessageLocalService;
447     }
448 
449     public void setMBMessageLocalService(
450         MBMessageLocalService mbMessageLocalService) {
451         this.mbMessageLocalService = mbMessageLocalService;
452     }
453 
454     public MBMessageService getMBMessageService() {
455         return mbMessageService;
456     }
457 
458     public void setMBMessageService(MBMessageService mbMessageService) {
459         this.mbMessageService = mbMessageService;
460     }
461 
462     public MBMessagePersistence getMBMessagePersistence() {
463         return mbMessagePersistence;
464     }
465 
466     public void setMBMessagePersistence(
467         MBMessagePersistence mbMessagePersistence) {
468         this.mbMessagePersistence = mbMessagePersistence;
469     }
470 
471     public MBMessageFinder getMBMessageFinder() {
472         return mbMessageFinder;
473     }
474 
475     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
476         this.mbMessageFinder = mbMessageFinder;
477     }
478 
479     public RatingsStatsLocalService getRatingsStatsLocalService() {
480         return ratingsStatsLocalService;
481     }
482 
483     public void setRatingsStatsLocalService(
484         RatingsStatsLocalService ratingsStatsLocalService) {
485         this.ratingsStatsLocalService = ratingsStatsLocalService;
486     }
487 
488     public RatingsStatsPersistence getRatingsStatsPersistence() {
489         return ratingsStatsPersistence;
490     }
491 
492     public void setRatingsStatsPersistence(
493         RatingsStatsPersistence ratingsStatsPersistence) {
494         this.ratingsStatsPersistence = ratingsStatsPersistence;
495     }
496 
497     public SocialActivityLocalService getSocialActivityLocalService() {
498         return socialActivityLocalService;
499     }
500 
501     public void setSocialActivityLocalService(
502         SocialActivityLocalService socialActivityLocalService) {
503         this.socialActivityLocalService = socialActivityLocalService;
504     }
505 
506     public SocialActivityPersistence getSocialActivityPersistence() {
507         return socialActivityPersistence;
508     }
509 
510     public void setSocialActivityPersistence(
511         SocialActivityPersistence socialActivityPersistence) {
512         this.socialActivityPersistence = socialActivityPersistence;
513     }
514 
515     public SocialActivityFinder getSocialActivityFinder() {
516         return socialActivityFinder;
517     }
518 
519     public void setSocialActivityFinder(
520         SocialActivityFinder socialActivityFinder) {
521         this.socialActivityFinder = socialActivityFinder;
522     }
523 
524     protected void runSQL(String sql) throws SystemException {
525         try {
526             DB db = DBFactoryUtil.getDB();
527 
528             db.runSQL(sql);
529         }
530         catch (Exception e) {
531             throw new SystemException(e);
532         }
533     }
534 
535     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService")
536     protected BlogsEntryLocalService blogsEntryLocalService;
537     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService")
538     protected BlogsEntryService blogsEntryService;
539     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence")
540     protected BlogsEntryPersistence blogsEntryPersistence;
541     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder")
542     protected BlogsEntryFinder blogsEntryFinder;
543     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsStatsUserLocalService")
544     protected BlogsStatsUserLocalService blogsStatsUserLocalService;
545     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence")
546     protected BlogsStatsUserPersistence blogsStatsUserPersistence;
547     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder")
548     protected BlogsStatsUserFinder blogsStatsUserFinder;
549     @BeanReference(name = "com.liferay.counter.service.CounterLocalService")
550     protected CounterLocalService counterLocalService;
551     @BeanReference(name = "com.liferay.counter.service.CounterService")
552     protected CounterService counterService;
553     @BeanReference(name = "com.liferay.portal.service.CompanyLocalService")
554     protected CompanyLocalService companyLocalService;
555     @BeanReference(name = "com.liferay.portal.service.CompanyService")
556     protected CompanyService companyService;
557     @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence")
558     protected CompanyPersistence companyPersistence;
559     @BeanReference(name = "com.liferay.portal.service.GroupLocalService")
560     protected GroupLocalService groupLocalService;
561     @BeanReference(name = "com.liferay.portal.service.GroupService")
562     protected GroupService groupService;
563     @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence")
564     protected GroupPersistence groupPersistence;
565     @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder")
566     protected GroupFinder groupFinder;
567     @BeanReference(name = "com.liferay.portal.service.OrganizationLocalService")
568     protected OrganizationLocalService organizationLocalService;
569     @BeanReference(name = "com.liferay.portal.service.OrganizationService")
570     protected OrganizationService organizationService;
571     @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationPersistence")
572     protected OrganizationPersistence organizationPersistence;
573     @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationFinder")
574     protected OrganizationFinder organizationFinder;
575     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesLocalService")
576     protected PortletPreferencesLocalService portletPreferencesLocalService;
577     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesService")
578     protected PortletPreferencesService portletPreferencesService;
579     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesPersistence")
580     protected PortletPreferencesPersistence portletPreferencesPersistence;
581     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesFinder")
582     protected PortletPreferencesFinder portletPreferencesFinder;
583     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService")
584     protected ResourceLocalService resourceLocalService;
585     @BeanReference(name = "com.liferay.portal.service.ResourceService")
586     protected ResourceService resourceService;
587     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence")
588     protected ResourcePersistence resourcePersistence;
589     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder")
590     protected ResourceFinder resourceFinder;
591     @BeanReference(name = "com.liferay.portal.service.UserLocalService")
592     protected UserLocalService userLocalService;
593     @BeanReference(name = "com.liferay.portal.service.UserService")
594     protected UserService userService;
595     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence")
596     protected UserPersistence userPersistence;
597     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder")
598     protected UserFinder userFinder;
599     @BeanReference(name = "com.liferay.portlet.asset.service.AssetEntryLocalService")
600     protected AssetEntryLocalService assetEntryLocalService;
601     @BeanReference(name = "com.liferay.portlet.asset.service.AssetEntryService")
602     protected AssetEntryService assetEntryService;
603     @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetEntryPersistence")
604     protected AssetEntryPersistence assetEntryPersistence;
605     @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetEntryFinder")
606     protected AssetEntryFinder assetEntryFinder;
607     @BeanReference(name = "com.liferay.portlet.asset.service.AssetTagLocalService")
608     protected AssetTagLocalService assetTagLocalService;
609     @BeanReference(name = "com.liferay.portlet.asset.service.AssetTagService")
610     protected AssetTagService assetTagService;
611     @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetTagPersistence")
612     protected AssetTagPersistence assetTagPersistence;
613     @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetTagFinder")
614     protected AssetTagFinder assetTagFinder;
615     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueLocalService")
616     protected ExpandoValueLocalService expandoValueLocalService;
617     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueService")
618     protected ExpandoValueService expandoValueService;
619     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence")
620     protected ExpandoValuePersistence expandoValuePersistence;
621     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService")
622     protected MBMessageLocalService mbMessageLocalService;
623     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageService")
624     protected MBMessageService mbMessageService;
625     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence")
626     protected MBMessagePersistence mbMessagePersistence;
627     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder")
628     protected MBMessageFinder mbMessageFinder;
629     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService")
630     protected RatingsStatsLocalService ratingsStatsLocalService;
631     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence")
632     protected RatingsStatsPersistence ratingsStatsPersistence;
633     @BeanReference(name = "com.liferay.portlet.social.service.SocialActivityLocalService")
634     protected SocialActivityLocalService socialActivityLocalService;
635     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityPersistence")
636     protected SocialActivityPersistence socialActivityPersistence;
637     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityFinder")
638     protected SocialActivityFinder socialActivityFinder;
639 }