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