001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.blogs.service.base;
016    
017    import com.liferay.counter.service.CounterLocalService;
018    
019    import com.liferay.portal.kernel.annotation.BeanReference;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
022    import com.liferay.portal.kernel.exception.SystemException;
023    import com.liferay.portal.service.CompanyLocalService;
024    import com.liferay.portal.service.CompanyService;
025    import com.liferay.portal.service.GroupLocalService;
026    import com.liferay.portal.service.GroupService;
027    import com.liferay.portal.service.OrganizationLocalService;
028    import com.liferay.portal.service.OrganizationService;
029    import com.liferay.portal.service.PortletPreferencesLocalService;
030    import com.liferay.portal.service.PortletPreferencesService;
031    import com.liferay.portal.service.ResourceLocalService;
032    import com.liferay.portal.service.ResourceService;
033    import com.liferay.portal.service.UserLocalService;
034    import com.liferay.portal.service.UserService;
035    import com.liferay.portal.service.WorkflowInstanceLinkLocalService;
036    import com.liferay.portal.service.base.PrincipalBean;
037    import com.liferay.portal.service.persistence.CompanyPersistence;
038    import com.liferay.portal.service.persistence.GroupFinder;
039    import com.liferay.portal.service.persistence.GroupPersistence;
040    import com.liferay.portal.service.persistence.OrganizationFinder;
041    import com.liferay.portal.service.persistence.OrganizationPersistence;
042    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
043    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
044    import com.liferay.portal.service.persistence.ResourceFinder;
045    import com.liferay.portal.service.persistence.ResourcePersistence;
046    import com.liferay.portal.service.persistence.UserFinder;
047    import com.liferay.portal.service.persistence.UserPersistence;
048    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
049    
050    import com.liferay.portlet.asset.service.AssetEntryLocalService;
051    import com.liferay.portlet.asset.service.AssetEntryService;
052    import com.liferay.portlet.asset.service.AssetTagLocalService;
053    import com.liferay.portlet.asset.service.AssetTagService;
054    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
055    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
056    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
057    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
058    import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
059    import com.liferay.portlet.blogs.service.BlogsEntryService;
060    import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
061    import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
062    import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
063    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
064    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
065    import com.liferay.portlet.expando.service.ExpandoValueLocalService;
066    import com.liferay.portlet.expando.service.ExpandoValueService;
067    import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
068    import com.liferay.portlet.messageboards.service.MBMessageLocalService;
069    import com.liferay.portlet.messageboards.service.MBMessageService;
070    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
071    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
072    import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
073    import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
074    import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
075    import com.liferay.portlet.social.service.SocialActivityLocalService;
076    import com.liferay.portlet.social.service.SocialEquityLogLocalService;
077    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
078    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
079    import com.liferay.portlet.social.service.persistence.SocialEquityLogPersistence;
080    
081    import javax.sql.DataSource;
082    
083    /**
084     * @author Brian Wing Shun Chan
085     */
086    public abstract class BlogsEntryServiceBaseImpl extends PrincipalBean
087            implements BlogsEntryService {
088            public BlogsEntryLocalService getBlogsEntryLocalService() {
089                    return blogsEntryLocalService;
090            }
091    
092            public void setBlogsEntryLocalService(
093                    BlogsEntryLocalService blogsEntryLocalService) {
094                    this.blogsEntryLocalService = blogsEntryLocalService;
095            }
096    
097            public BlogsEntryService getBlogsEntryService() {
098                    return blogsEntryService;
099            }
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            public SocialEquityLogLocalService getSocialEquityLogLocalService() {
547                    return socialEquityLogLocalService;
548            }
549    
550            public void setSocialEquityLogLocalService(
551                    SocialEquityLogLocalService socialEquityLogLocalService) {
552                    this.socialEquityLogLocalService = socialEquityLogLocalService;
553            }
554    
555            public SocialEquityLogPersistence getSocialEquityLogPersistence() {
556                    return socialEquityLogPersistence;
557            }
558    
559            public void setSocialEquityLogPersistence(
560                    SocialEquityLogPersistence socialEquityLogPersistence) {
561                    this.socialEquityLogPersistence = socialEquityLogPersistence;
562            }
563    
564            protected void runSQL(String sql) throws SystemException {
565                    try {
566                            DataSource dataSource = blogsEntryPersistence.getDataSource();
567    
568                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
569                                            sql, new int[0]);
570    
571                            sqlUpdate.update();
572                    }
573                    catch (Exception e) {
574                            throw new SystemException(e);
575                    }
576            }
577    
578            @BeanReference(type = BlogsEntryLocalService.class)
579            protected BlogsEntryLocalService blogsEntryLocalService;
580            @BeanReference(type = BlogsEntryService.class)
581            protected BlogsEntryService blogsEntryService;
582            @BeanReference(type = BlogsEntryPersistence.class)
583            protected BlogsEntryPersistence blogsEntryPersistence;
584            @BeanReference(type = BlogsEntryFinder.class)
585            protected BlogsEntryFinder blogsEntryFinder;
586            @BeanReference(type = BlogsStatsUserLocalService.class)
587            protected BlogsStatsUserLocalService blogsStatsUserLocalService;
588            @BeanReference(type = BlogsStatsUserPersistence.class)
589            protected BlogsStatsUserPersistence blogsStatsUserPersistence;
590            @BeanReference(type = BlogsStatsUserFinder.class)
591            protected BlogsStatsUserFinder blogsStatsUserFinder;
592            @BeanReference(type = CounterLocalService.class)
593            protected CounterLocalService counterLocalService;
594            @BeanReference(type = CompanyLocalService.class)
595            protected CompanyLocalService companyLocalService;
596            @BeanReference(type = CompanyService.class)
597            protected CompanyService companyService;
598            @BeanReference(type = CompanyPersistence.class)
599            protected CompanyPersistence companyPersistence;
600            @BeanReference(type = GroupLocalService.class)
601            protected GroupLocalService groupLocalService;
602            @BeanReference(type = GroupService.class)
603            protected GroupService groupService;
604            @BeanReference(type = GroupPersistence.class)
605            protected GroupPersistence groupPersistence;
606            @BeanReference(type = GroupFinder.class)
607            protected GroupFinder groupFinder;
608            @BeanReference(type = OrganizationLocalService.class)
609            protected OrganizationLocalService organizationLocalService;
610            @BeanReference(type = OrganizationService.class)
611            protected OrganizationService organizationService;
612            @BeanReference(type = OrganizationPersistence.class)
613            protected OrganizationPersistence organizationPersistence;
614            @BeanReference(type = OrganizationFinder.class)
615            protected OrganizationFinder organizationFinder;
616            @BeanReference(type = PortletPreferencesLocalService.class)
617            protected PortletPreferencesLocalService portletPreferencesLocalService;
618            @BeanReference(type = PortletPreferencesService.class)
619            protected PortletPreferencesService portletPreferencesService;
620            @BeanReference(type = PortletPreferencesPersistence.class)
621            protected PortletPreferencesPersistence portletPreferencesPersistence;
622            @BeanReference(type = PortletPreferencesFinder.class)
623            protected PortletPreferencesFinder portletPreferencesFinder;
624            @BeanReference(type = ResourceLocalService.class)
625            protected ResourceLocalService resourceLocalService;
626            @BeanReference(type = ResourceService.class)
627            protected ResourceService resourceService;
628            @BeanReference(type = ResourcePersistence.class)
629            protected ResourcePersistence resourcePersistence;
630            @BeanReference(type = ResourceFinder.class)
631            protected ResourceFinder resourceFinder;
632            @BeanReference(type = UserLocalService.class)
633            protected UserLocalService userLocalService;
634            @BeanReference(type = UserService.class)
635            protected UserService userService;
636            @BeanReference(type = UserPersistence.class)
637            protected UserPersistence userPersistence;
638            @BeanReference(type = UserFinder.class)
639            protected UserFinder userFinder;
640            @BeanReference(type = WorkflowInstanceLinkLocalService.class)
641            protected WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
642            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
643            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
644            @BeanReference(type = AssetEntryLocalService.class)
645            protected AssetEntryLocalService assetEntryLocalService;
646            @BeanReference(type = AssetEntryService.class)
647            protected AssetEntryService assetEntryService;
648            @BeanReference(type = AssetEntryPersistence.class)
649            protected AssetEntryPersistence assetEntryPersistence;
650            @BeanReference(type = AssetEntryFinder.class)
651            protected AssetEntryFinder assetEntryFinder;
652            @BeanReference(type = AssetTagLocalService.class)
653            protected AssetTagLocalService assetTagLocalService;
654            @BeanReference(type = AssetTagService.class)
655            protected AssetTagService assetTagService;
656            @BeanReference(type = AssetTagPersistence.class)
657            protected AssetTagPersistence assetTagPersistence;
658            @BeanReference(type = AssetTagFinder.class)
659            protected AssetTagFinder assetTagFinder;
660            @BeanReference(type = ExpandoValueLocalService.class)
661            protected ExpandoValueLocalService expandoValueLocalService;
662            @BeanReference(type = ExpandoValueService.class)
663            protected ExpandoValueService expandoValueService;
664            @BeanReference(type = ExpandoValuePersistence.class)
665            protected ExpandoValuePersistence expandoValuePersistence;
666            @BeanReference(type = MBMessageLocalService.class)
667            protected MBMessageLocalService mbMessageLocalService;
668            @BeanReference(type = MBMessageService.class)
669            protected MBMessageService mbMessageService;
670            @BeanReference(type = MBMessagePersistence.class)
671            protected MBMessagePersistence mbMessagePersistence;
672            @BeanReference(type = MBMessageFinder.class)
673            protected MBMessageFinder mbMessageFinder;
674            @BeanReference(type = RatingsStatsLocalService.class)
675            protected RatingsStatsLocalService ratingsStatsLocalService;
676            @BeanReference(type = RatingsStatsPersistence.class)
677            protected RatingsStatsPersistence ratingsStatsPersistence;
678            @BeanReference(type = RatingsStatsFinder.class)
679            protected RatingsStatsFinder ratingsStatsFinder;
680            @BeanReference(type = SocialActivityLocalService.class)
681            protected SocialActivityLocalService socialActivityLocalService;
682            @BeanReference(type = SocialActivityPersistence.class)
683            protected SocialActivityPersistence socialActivityPersistence;
684            @BeanReference(type = SocialActivityFinder.class)
685            protected SocialActivityFinder socialActivityFinder;
686            @BeanReference(type = SocialEquityLogLocalService.class)
687            protected SocialEquityLogLocalService socialEquityLogLocalService;
688            @BeanReference(type = SocialEquityLogPersistence.class)
689            protected SocialEquityLogPersistence socialEquityLogPersistence;
690    }