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