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