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