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