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