1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.messageboards.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.documentlibrary.service.DLLocalService;
29  import com.liferay.documentlibrary.service.DLService;
30  
31  import com.liferay.mail.service.MailService;
32  
33  import com.liferay.portal.SystemException;
34  import com.liferay.portal.kernel.annotation.BeanReference;
35  import com.liferay.portal.service.CompanyLocalService;
36  import com.liferay.portal.service.CompanyService;
37  import com.liferay.portal.service.GroupLocalService;
38  import com.liferay.portal.service.GroupService;
39  import com.liferay.portal.service.PortletPreferencesLocalService;
40  import com.liferay.portal.service.PortletPreferencesService;
41  import com.liferay.portal.service.ResourceLocalService;
42  import com.liferay.portal.service.ResourceService;
43  import com.liferay.portal.service.SubscriptionLocalService;
44  import com.liferay.portal.service.UserLocalService;
45  import com.liferay.portal.service.UserService;
46  import com.liferay.portal.service.base.PrincipalBean;
47  import com.liferay.portal.service.persistence.CompanyPersistence;
48  import com.liferay.portal.service.persistence.GroupFinder;
49  import com.liferay.portal.service.persistence.GroupPersistence;
50  import com.liferay.portal.service.persistence.PortletPreferencesFinder;
51  import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
52  import com.liferay.portal.service.persistence.ResourceFinder;
53  import com.liferay.portal.service.persistence.ResourcePersistence;
54  import com.liferay.portal.service.persistence.SubscriptionPersistence;
55  import com.liferay.portal.service.persistence.UserFinder;
56  import com.liferay.portal.service.persistence.UserPersistence;
57  import com.liferay.portal.util.PortalUtil;
58  
59  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
60  import com.liferay.portlet.blogs.service.BlogsEntryService;
61  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
62  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
63  import com.liferay.portlet.messageboards.service.MBBanLocalService;
64  import com.liferay.portlet.messageboards.service.MBBanService;
65  import com.liferay.portlet.messageboards.service.MBCategoryLocalService;
66  import com.liferay.portlet.messageboards.service.MBCategoryService;
67  import com.liferay.portlet.messageboards.service.MBDiscussionLocalService;
68  import com.liferay.portlet.messageboards.service.MBMessageFlagLocalService;
69  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
70  import com.liferay.portlet.messageboards.service.MBMessageService;
71  import com.liferay.portlet.messageboards.service.MBStatsUserLocalService;
72  import com.liferay.portlet.messageboards.service.MBThreadLocalService;
73  import com.liferay.portlet.messageboards.service.MBThreadService;
74  import com.liferay.portlet.messageboards.service.persistence.MBBanPersistence;
75  import com.liferay.portlet.messageboards.service.persistence.MBCategoryFinder;
76  import com.liferay.portlet.messageboards.service.persistence.MBCategoryPersistence;
77  import com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence;
78  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
79  import com.liferay.portlet.messageboards.service.persistence.MBMessageFlagPersistence;
80  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
81  import com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence;
82  import com.liferay.portlet.messageboards.service.persistence.MBThreadFinder;
83  import com.liferay.portlet.messageboards.service.persistence.MBThreadPersistence;
84  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
85  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
86  import com.liferay.portlet.social.service.SocialActivityLocalService;
87  import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
88  import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
89  import com.liferay.portlet.tags.service.TagsAssetLocalService;
90  import com.liferay.portlet.tags.service.TagsAssetService;
91  import com.liferay.portlet.tags.service.TagsEntryLocalService;
92  import com.liferay.portlet.tags.service.TagsEntryService;
93  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
94  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
95  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
96  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
97  
98  /**
99   * <a href="MBMessageServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
100  *
101  * @author Brian Wing Shun Chan
102  *
103  */
104 public abstract class MBMessageServiceBaseImpl extends PrincipalBean
105     implements MBMessageService {
106     public MBBanLocalService getMBBanLocalService() {
107         return mbBanLocalService;
108     }
109 
110     public void setMBBanLocalService(MBBanLocalService mbBanLocalService) {
111         this.mbBanLocalService = mbBanLocalService;
112     }
113 
114     public MBBanService getMBBanService() {
115         return mbBanService;
116     }
117 
118     public void setMBBanService(MBBanService mbBanService) {
119         this.mbBanService = mbBanService;
120     }
121 
122     public MBBanPersistence getMBBanPersistence() {
123         return mbBanPersistence;
124     }
125 
126     public void setMBBanPersistence(MBBanPersistence mbBanPersistence) {
127         this.mbBanPersistence = mbBanPersistence;
128     }
129 
130     public MBCategoryLocalService getMBCategoryLocalService() {
131         return mbCategoryLocalService;
132     }
133 
134     public void setMBCategoryLocalService(
135         MBCategoryLocalService mbCategoryLocalService) {
136         this.mbCategoryLocalService = mbCategoryLocalService;
137     }
138 
139     public MBCategoryService getMBCategoryService() {
140         return mbCategoryService;
141     }
142 
143     public void setMBCategoryService(MBCategoryService mbCategoryService) {
144         this.mbCategoryService = mbCategoryService;
145     }
146 
147     public MBCategoryPersistence getMBCategoryPersistence() {
148         return mbCategoryPersistence;
149     }
150 
151     public void setMBCategoryPersistence(
152         MBCategoryPersistence mbCategoryPersistence) {
153         this.mbCategoryPersistence = mbCategoryPersistence;
154     }
155 
156     public MBCategoryFinder getMBCategoryFinder() {
157         return mbCategoryFinder;
158     }
159 
160     public void setMBCategoryFinder(MBCategoryFinder mbCategoryFinder) {
161         this.mbCategoryFinder = mbCategoryFinder;
162     }
163 
164     public MBDiscussionLocalService getMBDiscussionLocalService() {
165         return mbDiscussionLocalService;
166     }
167 
168     public void setMBDiscussionLocalService(
169         MBDiscussionLocalService mbDiscussionLocalService) {
170         this.mbDiscussionLocalService = mbDiscussionLocalService;
171     }
172 
173     public MBDiscussionPersistence getMBDiscussionPersistence() {
174         return mbDiscussionPersistence;
175     }
176 
177     public void setMBDiscussionPersistence(
178         MBDiscussionPersistence mbDiscussionPersistence) {
179         this.mbDiscussionPersistence = mbDiscussionPersistence;
180     }
181 
182     public MBMessageLocalService getMBMessageLocalService() {
183         return mbMessageLocalService;
184     }
185 
186     public void setMBMessageLocalService(
187         MBMessageLocalService mbMessageLocalService) {
188         this.mbMessageLocalService = mbMessageLocalService;
189     }
190 
191     public MBMessageService getMBMessageService() {
192         return mbMessageService;
193     }
194 
195     public void setMBMessageService(MBMessageService mbMessageService) {
196         this.mbMessageService = mbMessageService;
197     }
198 
199     public MBMessagePersistence getMBMessagePersistence() {
200         return mbMessagePersistence;
201     }
202 
203     public void setMBMessagePersistence(
204         MBMessagePersistence mbMessagePersistence) {
205         this.mbMessagePersistence = mbMessagePersistence;
206     }
207 
208     public MBMessageFinder getMBMessageFinder() {
209         return mbMessageFinder;
210     }
211 
212     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
213         this.mbMessageFinder = mbMessageFinder;
214     }
215 
216     public MBMessageFlagLocalService getMBMessageFlagLocalService() {
217         return mbMessageFlagLocalService;
218     }
219 
220     public void setMBMessageFlagLocalService(
221         MBMessageFlagLocalService mbMessageFlagLocalService) {
222         this.mbMessageFlagLocalService = mbMessageFlagLocalService;
223     }
224 
225     public MBMessageFlagPersistence getMBMessageFlagPersistence() {
226         return mbMessageFlagPersistence;
227     }
228 
229     public void setMBMessageFlagPersistence(
230         MBMessageFlagPersistence mbMessageFlagPersistence) {
231         this.mbMessageFlagPersistence = mbMessageFlagPersistence;
232     }
233 
234     public MBStatsUserLocalService getMBStatsUserLocalService() {
235         return mbStatsUserLocalService;
236     }
237 
238     public void setMBStatsUserLocalService(
239         MBStatsUserLocalService mbStatsUserLocalService) {
240         this.mbStatsUserLocalService = mbStatsUserLocalService;
241     }
242 
243     public MBStatsUserPersistence getMBStatsUserPersistence() {
244         return mbStatsUserPersistence;
245     }
246 
247     public void setMBStatsUserPersistence(
248         MBStatsUserPersistence mbStatsUserPersistence) {
249         this.mbStatsUserPersistence = mbStatsUserPersistence;
250     }
251 
252     public MBThreadLocalService getMBThreadLocalService() {
253         return mbThreadLocalService;
254     }
255 
256     public void setMBThreadLocalService(
257         MBThreadLocalService mbThreadLocalService) {
258         this.mbThreadLocalService = mbThreadLocalService;
259     }
260 
261     public MBThreadService getMBThreadService() {
262         return mbThreadService;
263     }
264 
265     public void setMBThreadService(MBThreadService mbThreadService) {
266         this.mbThreadService = mbThreadService;
267     }
268 
269     public MBThreadPersistence getMBThreadPersistence() {
270         return mbThreadPersistence;
271     }
272 
273     public void setMBThreadPersistence(MBThreadPersistence mbThreadPersistence) {
274         this.mbThreadPersistence = mbThreadPersistence;
275     }
276 
277     public MBThreadFinder getMBThreadFinder() {
278         return mbThreadFinder;
279     }
280 
281     public void setMBThreadFinder(MBThreadFinder mbThreadFinder) {
282         this.mbThreadFinder = mbThreadFinder;
283     }
284 
285     public CounterLocalService getCounterLocalService() {
286         return counterLocalService;
287     }
288 
289     public void setCounterLocalService(CounterLocalService counterLocalService) {
290         this.counterLocalService = counterLocalService;
291     }
292 
293     public CounterService getCounterService() {
294         return counterService;
295     }
296 
297     public void setCounterService(CounterService counterService) {
298         this.counterService = counterService;
299     }
300 
301     public DLLocalService getDLLocalService() {
302         return dlLocalService;
303     }
304 
305     public void setDLLocalService(DLLocalService dlLocalService) {
306         this.dlLocalService = dlLocalService;
307     }
308 
309     public DLService getDLService() {
310         return dlService;
311     }
312 
313     public void setDLService(DLService dlService) {
314         this.dlService = dlService;
315     }
316 
317     public MailService getMailService() {
318         return mailService;
319     }
320 
321     public void setMailService(MailService mailService) {
322         this.mailService = mailService;
323     }
324 
325     public CompanyLocalService getCompanyLocalService() {
326         return companyLocalService;
327     }
328 
329     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
330         this.companyLocalService = companyLocalService;
331     }
332 
333     public CompanyService getCompanyService() {
334         return companyService;
335     }
336 
337     public void setCompanyService(CompanyService companyService) {
338         this.companyService = companyService;
339     }
340 
341     public CompanyPersistence getCompanyPersistence() {
342         return companyPersistence;
343     }
344 
345     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
346         this.companyPersistence = companyPersistence;
347     }
348 
349     public GroupLocalService getGroupLocalService() {
350         return groupLocalService;
351     }
352 
353     public void setGroupLocalService(GroupLocalService groupLocalService) {
354         this.groupLocalService = groupLocalService;
355     }
356 
357     public GroupService getGroupService() {
358         return groupService;
359     }
360 
361     public void setGroupService(GroupService groupService) {
362         this.groupService = groupService;
363     }
364 
365     public GroupPersistence getGroupPersistence() {
366         return groupPersistence;
367     }
368 
369     public void setGroupPersistence(GroupPersistence groupPersistence) {
370         this.groupPersistence = groupPersistence;
371     }
372 
373     public GroupFinder getGroupFinder() {
374         return groupFinder;
375     }
376 
377     public void setGroupFinder(GroupFinder groupFinder) {
378         this.groupFinder = groupFinder;
379     }
380 
381     public PortletPreferencesLocalService getPortletPreferencesLocalService() {
382         return portletPreferencesLocalService;
383     }
384 
385     public void setPortletPreferencesLocalService(
386         PortletPreferencesLocalService portletPreferencesLocalService) {
387         this.portletPreferencesLocalService = portletPreferencesLocalService;
388     }
389 
390     public PortletPreferencesService getPortletPreferencesService() {
391         return portletPreferencesService;
392     }
393 
394     public void setPortletPreferencesService(
395         PortletPreferencesService portletPreferencesService) {
396         this.portletPreferencesService = portletPreferencesService;
397     }
398 
399     public PortletPreferencesPersistence getPortletPreferencesPersistence() {
400         return portletPreferencesPersistence;
401     }
402 
403     public void setPortletPreferencesPersistence(
404         PortletPreferencesPersistence portletPreferencesPersistence) {
405         this.portletPreferencesPersistence = portletPreferencesPersistence;
406     }
407 
408     public PortletPreferencesFinder getPortletPreferencesFinder() {
409         return portletPreferencesFinder;
410     }
411 
412     public void setPortletPreferencesFinder(
413         PortletPreferencesFinder portletPreferencesFinder) {
414         this.portletPreferencesFinder = portletPreferencesFinder;
415     }
416 
417     public ResourceLocalService getResourceLocalService() {
418         return resourceLocalService;
419     }
420 
421     public void setResourceLocalService(
422         ResourceLocalService resourceLocalService) {
423         this.resourceLocalService = resourceLocalService;
424     }
425 
426     public ResourceService getResourceService() {
427         return resourceService;
428     }
429 
430     public void setResourceService(ResourceService resourceService) {
431         this.resourceService = resourceService;
432     }
433 
434     public ResourcePersistence getResourcePersistence() {
435         return resourcePersistence;
436     }
437 
438     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
439         this.resourcePersistence = resourcePersistence;
440     }
441 
442     public ResourceFinder getResourceFinder() {
443         return resourceFinder;
444     }
445 
446     public void setResourceFinder(ResourceFinder resourceFinder) {
447         this.resourceFinder = resourceFinder;
448     }
449 
450     public SubscriptionLocalService getSubscriptionLocalService() {
451         return subscriptionLocalService;
452     }
453 
454     public void setSubscriptionLocalService(
455         SubscriptionLocalService subscriptionLocalService) {
456         this.subscriptionLocalService = subscriptionLocalService;
457     }
458 
459     public SubscriptionPersistence getSubscriptionPersistence() {
460         return subscriptionPersistence;
461     }
462 
463     public void setSubscriptionPersistence(
464         SubscriptionPersistence subscriptionPersistence) {
465         this.subscriptionPersistence = subscriptionPersistence;
466     }
467 
468     public UserLocalService getUserLocalService() {
469         return userLocalService;
470     }
471 
472     public void setUserLocalService(UserLocalService userLocalService) {
473         this.userLocalService = userLocalService;
474     }
475 
476     public UserService getUserService() {
477         return userService;
478     }
479 
480     public void setUserService(UserService userService) {
481         this.userService = userService;
482     }
483 
484     public UserPersistence getUserPersistence() {
485         return userPersistence;
486     }
487 
488     public void setUserPersistence(UserPersistence userPersistence) {
489         this.userPersistence = userPersistence;
490     }
491 
492     public UserFinder getUserFinder() {
493         return userFinder;
494     }
495 
496     public void setUserFinder(UserFinder userFinder) {
497         this.userFinder = userFinder;
498     }
499 
500     public BlogsEntryLocalService getBlogsEntryLocalService() {
501         return blogsEntryLocalService;
502     }
503 
504     public void setBlogsEntryLocalService(
505         BlogsEntryLocalService blogsEntryLocalService) {
506         this.blogsEntryLocalService = blogsEntryLocalService;
507     }
508 
509     public BlogsEntryService getBlogsEntryService() {
510         return blogsEntryService;
511     }
512 
513     public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
514         this.blogsEntryService = blogsEntryService;
515     }
516 
517     public BlogsEntryPersistence getBlogsEntryPersistence() {
518         return blogsEntryPersistence;
519     }
520 
521     public void setBlogsEntryPersistence(
522         BlogsEntryPersistence blogsEntryPersistence) {
523         this.blogsEntryPersistence = blogsEntryPersistence;
524     }
525 
526     public BlogsEntryFinder getBlogsEntryFinder() {
527         return blogsEntryFinder;
528     }
529 
530     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
531         this.blogsEntryFinder = blogsEntryFinder;
532     }
533 
534     public RatingsStatsLocalService getRatingsStatsLocalService() {
535         return ratingsStatsLocalService;
536     }
537 
538     public void setRatingsStatsLocalService(
539         RatingsStatsLocalService ratingsStatsLocalService) {
540         this.ratingsStatsLocalService = ratingsStatsLocalService;
541     }
542 
543     public RatingsStatsPersistence getRatingsStatsPersistence() {
544         return ratingsStatsPersistence;
545     }
546 
547     public void setRatingsStatsPersistence(
548         RatingsStatsPersistence ratingsStatsPersistence) {
549         this.ratingsStatsPersistence = ratingsStatsPersistence;
550     }
551 
552     public SocialActivityLocalService getSocialActivityLocalService() {
553         return socialActivityLocalService;
554     }
555 
556     public void setSocialActivityLocalService(
557         SocialActivityLocalService socialActivityLocalService) {
558         this.socialActivityLocalService = socialActivityLocalService;
559     }
560 
561     public SocialActivityPersistence getSocialActivityPersistence() {
562         return socialActivityPersistence;
563     }
564 
565     public void setSocialActivityPersistence(
566         SocialActivityPersistence socialActivityPersistence) {
567         this.socialActivityPersistence = socialActivityPersistence;
568     }
569 
570     public SocialActivityFinder getSocialActivityFinder() {
571         return socialActivityFinder;
572     }
573 
574     public void setSocialActivityFinder(
575         SocialActivityFinder socialActivityFinder) {
576         this.socialActivityFinder = socialActivityFinder;
577     }
578 
579     public TagsAssetLocalService getTagsAssetLocalService() {
580         return tagsAssetLocalService;
581     }
582 
583     public void setTagsAssetLocalService(
584         TagsAssetLocalService tagsAssetLocalService) {
585         this.tagsAssetLocalService = tagsAssetLocalService;
586     }
587 
588     public TagsAssetService getTagsAssetService() {
589         return tagsAssetService;
590     }
591 
592     public void setTagsAssetService(TagsAssetService tagsAssetService) {
593         this.tagsAssetService = tagsAssetService;
594     }
595 
596     public TagsAssetPersistence getTagsAssetPersistence() {
597         return tagsAssetPersistence;
598     }
599 
600     public void setTagsAssetPersistence(
601         TagsAssetPersistence tagsAssetPersistence) {
602         this.tagsAssetPersistence = tagsAssetPersistence;
603     }
604 
605     public TagsAssetFinder getTagsAssetFinder() {
606         return tagsAssetFinder;
607     }
608 
609     public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
610         this.tagsAssetFinder = tagsAssetFinder;
611     }
612 
613     public TagsEntryLocalService getTagsEntryLocalService() {
614         return tagsEntryLocalService;
615     }
616 
617     public void setTagsEntryLocalService(
618         TagsEntryLocalService tagsEntryLocalService) {
619         this.tagsEntryLocalService = tagsEntryLocalService;
620     }
621 
622     public TagsEntryService getTagsEntryService() {
623         return tagsEntryService;
624     }
625 
626     public void setTagsEntryService(TagsEntryService tagsEntryService) {
627         this.tagsEntryService = tagsEntryService;
628     }
629 
630     public TagsEntryPersistence getTagsEntryPersistence() {
631         return tagsEntryPersistence;
632     }
633 
634     public void setTagsEntryPersistence(
635         TagsEntryPersistence tagsEntryPersistence) {
636         this.tagsEntryPersistence = tagsEntryPersistence;
637     }
638 
639     public TagsEntryFinder getTagsEntryFinder() {
640         return tagsEntryFinder;
641     }
642 
643     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
644         this.tagsEntryFinder = tagsEntryFinder;
645     }
646 
647     protected void runSQL(String sql) throws SystemException {
648         try {
649             PortalUtil.runSQL(sql);
650         }
651         catch (Exception e) {
652             throw new SystemException(e);
653         }
654     }
655 
656     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBBanLocalService.impl")
657     protected MBBanLocalService mbBanLocalService;
658     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBBanService.impl")
659     protected MBBanService mbBanService;
660     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBBanPersistence.impl")
661     protected MBBanPersistence mbBanPersistence;
662     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBCategoryLocalService.impl")
663     protected MBCategoryLocalService mbCategoryLocalService;
664     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBCategoryService.impl")
665     protected MBCategoryService mbCategoryService;
666     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBCategoryPersistence.impl")
667     protected MBCategoryPersistence mbCategoryPersistence;
668     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBCategoryFinder.impl")
669     protected MBCategoryFinder mbCategoryFinder;
670     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBDiscussionLocalService.impl")
671     protected MBDiscussionLocalService mbDiscussionLocalService;
672     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence.impl")
673     protected MBDiscussionPersistence mbDiscussionPersistence;
674     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService.impl")
675     protected MBMessageLocalService mbMessageLocalService;
676     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageService.impl")
677     protected MBMessageService mbMessageService;
678     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence.impl")
679     protected MBMessagePersistence mbMessagePersistence;
680     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder.impl")
681     protected MBMessageFinder mbMessageFinder;
682     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageFlagLocalService.impl")
683     protected MBMessageFlagLocalService mbMessageFlagLocalService;
684     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFlagPersistence.impl")
685     protected MBMessageFlagPersistence mbMessageFlagPersistence;
686     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBStatsUserLocalService.impl")
687     protected MBStatsUserLocalService mbStatsUserLocalService;
688     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence.impl")
689     protected MBStatsUserPersistence mbStatsUserPersistence;
690     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBThreadLocalService.impl")
691     protected MBThreadLocalService mbThreadLocalService;
692     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBThreadService.impl")
693     protected MBThreadService mbThreadService;
694     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBThreadPersistence.impl")
695     protected MBThreadPersistence mbThreadPersistence;
696     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBThreadFinder.impl")
697     protected MBThreadFinder mbThreadFinder;
698     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
699     protected CounterLocalService counterLocalService;
700     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
701     protected CounterService counterService;
702     @BeanReference(name = "com.liferay.documentlibrary.service.DLLocalService.impl")
703     protected DLLocalService dlLocalService;
704     @BeanReference(name = "com.liferay.documentlibrary.service.DLService.impl")
705     protected DLService dlService;
706     @BeanReference(name = "com.liferay.mail.service.MailService.impl")
707     protected MailService mailService;
708     @BeanReference(name = "com.liferay.portal.service.CompanyLocalService.impl")
709     protected CompanyLocalService companyLocalService;
710     @BeanReference(name = "com.liferay.portal.service.CompanyService.impl")
711     protected CompanyService companyService;
712     @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence.impl")
713     protected CompanyPersistence companyPersistence;
714     @BeanReference(name = "com.liferay.portal.service.GroupLocalService.impl")
715     protected GroupLocalService groupLocalService;
716     @BeanReference(name = "com.liferay.portal.service.GroupService.impl")
717     protected GroupService groupService;
718     @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence.impl")
719     protected GroupPersistence groupPersistence;
720     @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder.impl")
721     protected GroupFinder groupFinder;
722     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesLocalService.impl")
723     protected PortletPreferencesLocalService portletPreferencesLocalService;
724     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesService.impl")
725     protected PortletPreferencesService portletPreferencesService;
726     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesPersistence.impl")
727     protected PortletPreferencesPersistence portletPreferencesPersistence;
728     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesFinder.impl")
729     protected PortletPreferencesFinder portletPreferencesFinder;
730     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
731     protected ResourceLocalService resourceLocalService;
732     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
733     protected ResourceService resourceService;
734     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
735     protected ResourcePersistence resourcePersistence;
736     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
737     protected ResourceFinder resourceFinder;
738     @BeanReference(name = "com.liferay.portal.service.SubscriptionLocalService.impl")
739     protected SubscriptionLocalService subscriptionLocalService;
740     @BeanReference(name = "com.liferay.portal.service.persistence.SubscriptionPersistence.impl")
741     protected SubscriptionPersistence subscriptionPersistence;
742     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
743     protected UserLocalService userLocalService;
744     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
745     protected UserService userService;
746     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
747     protected UserPersistence userPersistence;
748     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
749     protected UserFinder userFinder;
750     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService.impl")
751     protected BlogsEntryLocalService blogsEntryLocalService;
752     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService.impl")
753     protected BlogsEntryService blogsEntryService;
754     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence.impl")
755     protected BlogsEntryPersistence blogsEntryPersistence;
756     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder.impl")
757     protected BlogsEntryFinder blogsEntryFinder;
758     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService.impl")
759     protected RatingsStatsLocalService ratingsStatsLocalService;
760     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence.impl")
761     protected RatingsStatsPersistence ratingsStatsPersistence;
762     @BeanReference(name = "com.liferay.portlet.social.service.SocialActivityLocalService.impl")
763     protected SocialActivityLocalService socialActivityLocalService;
764     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityPersistence.impl")
765     protected SocialActivityPersistence socialActivityPersistence;
766     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityFinder.impl")
767     protected SocialActivityFinder socialActivityFinder;
768     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
769     protected TagsAssetLocalService tagsAssetLocalService;
770     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
771     protected TagsAssetService tagsAssetService;
772     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
773     protected TagsAssetPersistence tagsAssetPersistence;
774     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
775     protected TagsAssetFinder tagsAssetFinder;
776     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
777     protected TagsEntryLocalService tagsEntryLocalService;
778     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
779     protected TagsEntryService tagsEntryService;
780     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
781     protected TagsEntryPersistence tagsEntryPersistence;
782     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
783     protected TagsEntryFinder tagsEntryFinder;
784 }