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