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