1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.blogs.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.PortalException;
29  import com.liferay.portal.SystemException;
30  import com.liferay.portal.kernel.annotation.BeanReference;
31  import com.liferay.portal.kernel.dao.db.DB;
32  import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
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.OrganizationLocalService;
39  import com.liferay.portal.service.OrganizationService;
40  import com.liferay.portal.service.ResourceLocalService;
41  import com.liferay.portal.service.ResourceService;
42  import com.liferay.portal.service.UserLocalService;
43  import com.liferay.portal.service.UserService;
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.OrganizationFinder;
48  import com.liferay.portal.service.persistence.OrganizationPersistence;
49  import com.liferay.portal.service.persistence.ResourceFinder;
50  import com.liferay.portal.service.persistence.ResourcePersistence;
51  import com.liferay.portal.service.persistence.UserFinder;
52  import com.liferay.portal.service.persistence.UserPersistence;
53  
54  import com.liferay.portlet.blogs.model.BlogsEntry;
55  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
56  import com.liferay.portlet.blogs.service.BlogsEntryService;
57  import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
58  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
59  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
60  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
61  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
62  import com.liferay.portlet.expando.service.ExpandoValueLocalService;
63  import com.liferay.portlet.expando.service.ExpandoValueService;
64  import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
65  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
66  import com.liferay.portlet.messageboards.service.MBMessageService;
67  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
68  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
69  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
70  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
71  import com.liferay.portlet.social.service.SocialActivityLocalService;
72  import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
73  import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
74  import com.liferay.portlet.tags.service.TagsAssetLocalService;
75  import com.liferay.portlet.tags.service.TagsAssetService;
76  import com.liferay.portlet.tags.service.TagsEntryLocalService;
77  import com.liferay.portlet.tags.service.TagsEntryService;
78  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
79  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
80  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
81  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
82  
83  import java.util.List;
84  
85  /**
86   * <a href="BlogsEntryLocalServiceBaseImpl.java.html"><b><i>View Source</i></b>
87   * </a>
88   *
89   * @author Brian Wing Shun Chan
90   */
91  public abstract class BlogsEntryLocalServiceBaseImpl
92      implements BlogsEntryLocalService {
93      public BlogsEntry addBlogsEntry(BlogsEntry blogsEntry)
94          throws SystemException {
95          blogsEntry.setNew(true);
96  
97          return blogsEntryPersistence.update(blogsEntry, false);
98      }
99  
100     public BlogsEntry createBlogsEntry(long entryId) {
101         return blogsEntryPersistence.create(entryId);
102     }
103 
104     public void deleteBlogsEntry(long entryId)
105         throws PortalException, SystemException {
106         blogsEntryPersistence.remove(entryId);
107     }
108 
109     public void deleteBlogsEntry(BlogsEntry blogsEntry)
110         throws SystemException {
111         blogsEntryPersistence.remove(blogsEntry);
112     }
113 
114     public List<Object> dynamicQuery(DynamicQuery dynamicQuery)
115         throws SystemException {
116         return blogsEntryPersistence.findWithDynamicQuery(dynamicQuery);
117     }
118 
119     public List<Object> dynamicQuery(DynamicQuery dynamicQuery, int start,
120         int end) throws SystemException {
121         return blogsEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
122             end);
123     }
124 
125     public BlogsEntry getBlogsEntry(long entryId)
126         throws PortalException, SystemException {
127         return blogsEntryPersistence.findByPrimaryKey(entryId);
128     }
129 
130     public List<BlogsEntry> getBlogsEntries(int start, int end)
131         throws SystemException {
132         return blogsEntryPersistence.findAll(start, end);
133     }
134 
135     public int getBlogsEntriesCount() throws SystemException {
136         return blogsEntryPersistence.countAll();
137     }
138 
139     public BlogsEntry updateBlogsEntry(BlogsEntry blogsEntry)
140         throws SystemException {
141         blogsEntry.setNew(false);
142 
143         return blogsEntryPersistence.update(blogsEntry, true);
144     }
145 
146     public BlogsEntry updateBlogsEntry(BlogsEntry blogsEntry, boolean merge)
147         throws SystemException {
148         blogsEntry.setNew(false);
149 
150         return blogsEntryPersistence.update(blogsEntry, merge);
151     }
152 
153     public BlogsEntryLocalService getBlogsEntryLocalService() {
154         return blogsEntryLocalService;
155     }
156 
157     public void setBlogsEntryLocalService(
158         BlogsEntryLocalService blogsEntryLocalService) {
159         this.blogsEntryLocalService = blogsEntryLocalService;
160     }
161 
162     public BlogsEntryService getBlogsEntryService() {
163         return blogsEntryService;
164     }
165 
166     public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
167         this.blogsEntryService = blogsEntryService;
168     }
169 
170     public BlogsEntryPersistence getBlogsEntryPersistence() {
171         return blogsEntryPersistence;
172     }
173 
174     public void setBlogsEntryPersistence(
175         BlogsEntryPersistence blogsEntryPersistence) {
176         this.blogsEntryPersistence = blogsEntryPersistence;
177     }
178 
179     public BlogsEntryFinder getBlogsEntryFinder() {
180         return blogsEntryFinder;
181     }
182 
183     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
184         this.blogsEntryFinder = blogsEntryFinder;
185     }
186 
187     public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
188         return blogsStatsUserLocalService;
189     }
190 
191     public void setBlogsStatsUserLocalService(
192         BlogsStatsUserLocalService blogsStatsUserLocalService) {
193         this.blogsStatsUserLocalService = blogsStatsUserLocalService;
194     }
195 
196     public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
197         return blogsStatsUserPersistence;
198     }
199 
200     public void setBlogsStatsUserPersistence(
201         BlogsStatsUserPersistence blogsStatsUserPersistence) {
202         this.blogsStatsUserPersistence = blogsStatsUserPersistence;
203     }
204 
205     public BlogsStatsUserFinder getBlogsStatsUserFinder() {
206         return blogsStatsUserFinder;
207     }
208 
209     public void setBlogsStatsUserFinder(
210         BlogsStatsUserFinder blogsStatsUserFinder) {
211         this.blogsStatsUserFinder = blogsStatsUserFinder;
212     }
213 
214     public CounterLocalService getCounterLocalService() {
215         return counterLocalService;
216     }
217 
218     public void setCounterLocalService(CounterLocalService counterLocalService) {
219         this.counterLocalService = counterLocalService;
220     }
221 
222     public CounterService getCounterService() {
223         return counterService;
224     }
225 
226     public void setCounterService(CounterService counterService) {
227         this.counterService = counterService;
228     }
229 
230     public CompanyLocalService getCompanyLocalService() {
231         return companyLocalService;
232     }
233 
234     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
235         this.companyLocalService = companyLocalService;
236     }
237 
238     public CompanyService getCompanyService() {
239         return companyService;
240     }
241 
242     public void setCompanyService(CompanyService companyService) {
243         this.companyService = companyService;
244     }
245 
246     public CompanyPersistence getCompanyPersistence() {
247         return companyPersistence;
248     }
249 
250     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
251         this.companyPersistence = companyPersistence;
252     }
253 
254     public GroupLocalService getGroupLocalService() {
255         return groupLocalService;
256     }
257 
258     public void setGroupLocalService(GroupLocalService groupLocalService) {
259         this.groupLocalService = groupLocalService;
260     }
261 
262     public GroupService getGroupService() {
263         return groupService;
264     }
265 
266     public void setGroupService(GroupService groupService) {
267         this.groupService = groupService;
268     }
269 
270     public GroupPersistence getGroupPersistence() {
271         return groupPersistence;
272     }
273 
274     public void setGroupPersistence(GroupPersistence groupPersistence) {
275         this.groupPersistence = groupPersistence;
276     }
277 
278     public GroupFinder getGroupFinder() {
279         return groupFinder;
280     }
281 
282     public void setGroupFinder(GroupFinder groupFinder) {
283         this.groupFinder = groupFinder;
284     }
285 
286     public OrganizationLocalService getOrganizationLocalService() {
287         return organizationLocalService;
288     }
289 
290     public void setOrganizationLocalService(
291         OrganizationLocalService organizationLocalService) {
292         this.organizationLocalService = organizationLocalService;
293     }
294 
295     public OrganizationService getOrganizationService() {
296         return organizationService;
297     }
298 
299     public void setOrganizationService(OrganizationService organizationService) {
300         this.organizationService = organizationService;
301     }
302 
303     public OrganizationPersistence getOrganizationPersistence() {
304         return organizationPersistence;
305     }
306 
307     public void setOrganizationPersistence(
308         OrganizationPersistence organizationPersistence) {
309         this.organizationPersistence = organizationPersistence;
310     }
311 
312     public OrganizationFinder getOrganizationFinder() {
313         return organizationFinder;
314     }
315 
316     public void setOrganizationFinder(OrganizationFinder organizationFinder) {
317         this.organizationFinder = organizationFinder;
318     }
319 
320     public ResourceLocalService getResourceLocalService() {
321         return resourceLocalService;
322     }
323 
324     public void setResourceLocalService(
325         ResourceLocalService resourceLocalService) {
326         this.resourceLocalService = resourceLocalService;
327     }
328 
329     public ResourceService getResourceService() {
330         return resourceService;
331     }
332 
333     public void setResourceService(ResourceService resourceService) {
334         this.resourceService = resourceService;
335     }
336 
337     public ResourcePersistence getResourcePersistence() {
338         return resourcePersistence;
339     }
340 
341     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
342         this.resourcePersistence = resourcePersistence;
343     }
344 
345     public ResourceFinder getResourceFinder() {
346         return resourceFinder;
347     }
348 
349     public void setResourceFinder(ResourceFinder resourceFinder) {
350         this.resourceFinder = resourceFinder;
351     }
352 
353     public UserLocalService getUserLocalService() {
354         return userLocalService;
355     }
356 
357     public void setUserLocalService(UserLocalService userLocalService) {
358         this.userLocalService = userLocalService;
359     }
360 
361     public UserService getUserService() {
362         return userService;
363     }
364 
365     public void setUserService(UserService userService) {
366         this.userService = userService;
367     }
368 
369     public UserPersistence getUserPersistence() {
370         return userPersistence;
371     }
372 
373     public void setUserPersistence(UserPersistence userPersistence) {
374         this.userPersistence = userPersistence;
375     }
376 
377     public UserFinder getUserFinder() {
378         return userFinder;
379     }
380 
381     public void setUserFinder(UserFinder userFinder) {
382         this.userFinder = userFinder;
383     }
384 
385     public ExpandoValueLocalService getExpandoValueLocalService() {
386         return expandoValueLocalService;
387     }
388 
389     public void setExpandoValueLocalService(
390         ExpandoValueLocalService expandoValueLocalService) {
391         this.expandoValueLocalService = expandoValueLocalService;
392     }
393 
394     public ExpandoValueService getExpandoValueService() {
395         return expandoValueService;
396     }
397 
398     public void setExpandoValueService(ExpandoValueService expandoValueService) {
399         this.expandoValueService = expandoValueService;
400     }
401 
402     public ExpandoValuePersistence getExpandoValuePersistence() {
403         return expandoValuePersistence;
404     }
405 
406     public void setExpandoValuePersistence(
407         ExpandoValuePersistence expandoValuePersistence) {
408         this.expandoValuePersistence = expandoValuePersistence;
409     }
410 
411     public MBMessageLocalService getMBMessageLocalService() {
412         return mbMessageLocalService;
413     }
414 
415     public void setMBMessageLocalService(
416         MBMessageLocalService mbMessageLocalService) {
417         this.mbMessageLocalService = mbMessageLocalService;
418     }
419 
420     public MBMessageService getMBMessageService() {
421         return mbMessageService;
422     }
423 
424     public void setMBMessageService(MBMessageService mbMessageService) {
425         this.mbMessageService = mbMessageService;
426     }
427 
428     public MBMessagePersistence getMBMessagePersistence() {
429         return mbMessagePersistence;
430     }
431 
432     public void setMBMessagePersistence(
433         MBMessagePersistence mbMessagePersistence) {
434         this.mbMessagePersistence = mbMessagePersistence;
435     }
436 
437     public MBMessageFinder getMBMessageFinder() {
438         return mbMessageFinder;
439     }
440 
441     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
442         this.mbMessageFinder = mbMessageFinder;
443     }
444 
445     public RatingsStatsLocalService getRatingsStatsLocalService() {
446         return ratingsStatsLocalService;
447     }
448 
449     public void setRatingsStatsLocalService(
450         RatingsStatsLocalService ratingsStatsLocalService) {
451         this.ratingsStatsLocalService = ratingsStatsLocalService;
452     }
453 
454     public RatingsStatsPersistence getRatingsStatsPersistence() {
455         return ratingsStatsPersistence;
456     }
457 
458     public void setRatingsStatsPersistence(
459         RatingsStatsPersistence ratingsStatsPersistence) {
460         this.ratingsStatsPersistence = ratingsStatsPersistence;
461     }
462 
463     public SocialActivityLocalService getSocialActivityLocalService() {
464         return socialActivityLocalService;
465     }
466 
467     public void setSocialActivityLocalService(
468         SocialActivityLocalService socialActivityLocalService) {
469         this.socialActivityLocalService = socialActivityLocalService;
470     }
471 
472     public SocialActivityPersistence getSocialActivityPersistence() {
473         return socialActivityPersistence;
474     }
475 
476     public void setSocialActivityPersistence(
477         SocialActivityPersistence socialActivityPersistence) {
478         this.socialActivityPersistence = socialActivityPersistence;
479     }
480 
481     public SocialActivityFinder getSocialActivityFinder() {
482         return socialActivityFinder;
483     }
484 
485     public void setSocialActivityFinder(
486         SocialActivityFinder socialActivityFinder) {
487         this.socialActivityFinder = socialActivityFinder;
488     }
489 
490     public TagsAssetLocalService getTagsAssetLocalService() {
491         return tagsAssetLocalService;
492     }
493 
494     public void setTagsAssetLocalService(
495         TagsAssetLocalService tagsAssetLocalService) {
496         this.tagsAssetLocalService = tagsAssetLocalService;
497     }
498 
499     public TagsAssetService getTagsAssetService() {
500         return tagsAssetService;
501     }
502 
503     public void setTagsAssetService(TagsAssetService tagsAssetService) {
504         this.tagsAssetService = tagsAssetService;
505     }
506 
507     public TagsAssetPersistence getTagsAssetPersistence() {
508         return tagsAssetPersistence;
509     }
510 
511     public void setTagsAssetPersistence(
512         TagsAssetPersistence tagsAssetPersistence) {
513         this.tagsAssetPersistence = tagsAssetPersistence;
514     }
515 
516     public TagsAssetFinder getTagsAssetFinder() {
517         return tagsAssetFinder;
518     }
519 
520     public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
521         this.tagsAssetFinder = tagsAssetFinder;
522     }
523 
524     public TagsEntryLocalService getTagsEntryLocalService() {
525         return tagsEntryLocalService;
526     }
527 
528     public void setTagsEntryLocalService(
529         TagsEntryLocalService tagsEntryLocalService) {
530         this.tagsEntryLocalService = tagsEntryLocalService;
531     }
532 
533     public TagsEntryService getTagsEntryService() {
534         return tagsEntryService;
535     }
536 
537     public void setTagsEntryService(TagsEntryService tagsEntryService) {
538         this.tagsEntryService = tagsEntryService;
539     }
540 
541     public TagsEntryPersistence getTagsEntryPersistence() {
542         return tagsEntryPersistence;
543     }
544 
545     public void setTagsEntryPersistence(
546         TagsEntryPersistence tagsEntryPersistence) {
547         this.tagsEntryPersistence = tagsEntryPersistence;
548     }
549 
550     public TagsEntryFinder getTagsEntryFinder() {
551         return tagsEntryFinder;
552     }
553 
554     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
555         this.tagsEntryFinder = tagsEntryFinder;
556     }
557 
558     protected void runSQL(String sql) throws SystemException {
559         try {
560             DB db = DBFactoryUtil.getDB();
561 
562             db.runSQL(sql);
563         }
564         catch (Exception e) {
565             throw new SystemException(e);
566         }
567     }
568 
569     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService.impl")
570     protected BlogsEntryLocalService blogsEntryLocalService;
571     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService.impl")
572     protected BlogsEntryService blogsEntryService;
573     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence.impl")
574     protected BlogsEntryPersistence blogsEntryPersistence;
575     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder.impl")
576     protected BlogsEntryFinder blogsEntryFinder;
577     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.impl")
578     protected BlogsStatsUserLocalService blogsStatsUserLocalService;
579     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence.impl")
580     protected BlogsStatsUserPersistence blogsStatsUserPersistence;
581     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder.impl")
582     protected BlogsStatsUserFinder blogsStatsUserFinder;
583     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
584     protected CounterLocalService counterLocalService;
585     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
586     protected CounterService counterService;
587     @BeanReference(name = "com.liferay.portal.service.CompanyLocalService.impl")
588     protected CompanyLocalService companyLocalService;
589     @BeanReference(name = "com.liferay.portal.service.CompanyService.impl")
590     protected CompanyService companyService;
591     @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence.impl")
592     protected CompanyPersistence companyPersistence;
593     @BeanReference(name = "com.liferay.portal.service.GroupLocalService.impl")
594     protected GroupLocalService groupLocalService;
595     @BeanReference(name = "com.liferay.portal.service.GroupService.impl")
596     protected GroupService groupService;
597     @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence.impl")
598     protected GroupPersistence groupPersistence;
599     @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder.impl")
600     protected GroupFinder groupFinder;
601     @BeanReference(name = "com.liferay.portal.service.OrganizationLocalService.impl")
602     protected OrganizationLocalService organizationLocalService;
603     @BeanReference(name = "com.liferay.portal.service.OrganizationService.impl")
604     protected OrganizationService organizationService;
605     @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationPersistence.impl")
606     protected OrganizationPersistence organizationPersistence;
607     @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationFinder.impl")
608     protected OrganizationFinder organizationFinder;
609     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
610     protected ResourceLocalService resourceLocalService;
611     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
612     protected ResourceService resourceService;
613     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
614     protected ResourcePersistence resourcePersistence;
615     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
616     protected ResourceFinder resourceFinder;
617     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
618     protected UserLocalService userLocalService;
619     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
620     protected UserService userService;
621     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
622     protected UserPersistence userPersistence;
623     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
624     protected UserFinder userFinder;
625     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueLocalService.impl")
626     protected ExpandoValueLocalService expandoValueLocalService;
627     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueService.impl")
628     protected ExpandoValueService expandoValueService;
629     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence.impl")
630     protected ExpandoValuePersistence expandoValuePersistence;
631     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService.impl")
632     protected MBMessageLocalService mbMessageLocalService;
633     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageService.impl")
634     protected MBMessageService mbMessageService;
635     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence.impl")
636     protected MBMessagePersistence mbMessagePersistence;
637     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder.impl")
638     protected MBMessageFinder mbMessageFinder;
639     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService.impl")
640     protected RatingsStatsLocalService ratingsStatsLocalService;
641     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence.impl")
642     protected RatingsStatsPersistence ratingsStatsPersistence;
643     @BeanReference(name = "com.liferay.portlet.social.service.SocialActivityLocalService.impl")
644     protected SocialActivityLocalService socialActivityLocalService;
645     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityPersistence.impl")
646     protected SocialActivityPersistence socialActivityPersistence;
647     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityFinder.impl")
648     protected SocialActivityFinder socialActivityFinder;
649     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
650     protected TagsAssetLocalService tagsAssetLocalService;
651     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
652     protected TagsAssetService tagsAssetService;
653     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
654     protected TagsAssetPersistence tagsAssetPersistence;
655     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
656     protected TagsAssetFinder tagsAssetFinder;
657     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
658     protected TagsEntryLocalService tagsEntryLocalService;
659     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
660     protected TagsEntryService tagsEntryService;
661     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
662     protected TagsEntryPersistence tagsEntryPersistence;
663     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
664     protected TagsEntryFinder tagsEntryFinder;
665 }