1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   * 
13   */
14  
15  package com.liferay.portlet.journal.service.base;
16  
17  import com.liferay.counter.service.CounterLocalService;
18  import com.liferay.counter.service.CounterService;
19  
20  import com.liferay.mail.service.MailService;
21  
22  import com.liferay.portal.SystemException;
23  import com.liferay.portal.kernel.annotation.BeanReference;
24  import com.liferay.portal.kernel.dao.db.DB;
25  import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
26  import com.liferay.portal.service.CompanyLocalService;
27  import com.liferay.portal.service.CompanyService;
28  import com.liferay.portal.service.ImageLocalService;
29  import com.liferay.portal.service.PortletPreferencesLocalService;
30  import com.liferay.portal.service.PortletPreferencesService;
31  import com.liferay.portal.service.ResourceLocalService;
32  import com.liferay.portal.service.ResourceService;
33  import com.liferay.portal.service.UserLocalService;
34  import com.liferay.portal.service.UserService;
35  import com.liferay.portal.service.base.PrincipalBean;
36  import com.liferay.portal.service.persistence.CompanyPersistence;
37  import com.liferay.portal.service.persistence.ImagePersistence;
38  import com.liferay.portal.service.persistence.PortletPreferencesFinder;
39  import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
40  import com.liferay.portal.service.persistence.ResourceFinder;
41  import com.liferay.portal.service.persistence.ResourcePersistence;
42  import com.liferay.portal.service.persistence.UserFinder;
43  import com.liferay.portal.service.persistence.UserPersistence;
44  
45  import com.liferay.portlet.expando.service.ExpandoValueLocalService;
46  import com.liferay.portlet.expando.service.ExpandoValueService;
47  import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
48  import com.liferay.portlet.journal.service.JournalArticleImageLocalService;
49  import com.liferay.portlet.journal.service.JournalArticleLocalService;
50  import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
51  import com.liferay.portlet.journal.service.JournalArticleService;
52  import com.liferay.portlet.journal.service.JournalContentSearchLocalService;
53  import com.liferay.portlet.journal.service.JournalFeedLocalService;
54  import com.liferay.portlet.journal.service.JournalFeedService;
55  import com.liferay.portlet.journal.service.JournalStructureLocalService;
56  import com.liferay.portlet.journal.service.JournalStructureService;
57  import com.liferay.portlet.journal.service.JournalTemplateLocalService;
58  import com.liferay.portlet.journal.service.JournalTemplateService;
59  import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
60  import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
61  import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
62  import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
63  import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
64  import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
65  import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
66  import com.liferay.portlet.journal.service.persistence.JournalStructureFinder;
67  import com.liferay.portlet.journal.service.persistence.JournalStructurePersistence;
68  import com.liferay.portlet.journal.service.persistence.JournalTemplateFinder;
69  import com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence;
70  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
71  import com.liferay.portlet.messageboards.service.MBMessageService;
72  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
73  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
74  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
75  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
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="JournalArticleServiceBaseImpl.java.html"><b><i>View Source</i></b>
87   * </a>
88   *
89   * @author Brian Wing Shun Chan
90   */
91  public abstract class JournalArticleServiceBaseImpl extends PrincipalBean
92      implements JournalArticleService {
93      public JournalArticleLocalService getJournalArticleLocalService() {
94          return journalArticleLocalService;
95      }
96  
97      public void setJournalArticleLocalService(
98          JournalArticleLocalService journalArticleLocalService) {
99          this.journalArticleLocalService = journalArticleLocalService;
100     }
101 
102     public JournalArticleService getJournalArticleService() {
103         return journalArticleService;
104     }
105 
106     public void setJournalArticleService(
107         JournalArticleService journalArticleService) {
108         this.journalArticleService = journalArticleService;
109     }
110 
111     public JournalArticlePersistence getJournalArticlePersistence() {
112         return journalArticlePersistence;
113     }
114 
115     public void setJournalArticlePersistence(
116         JournalArticlePersistence journalArticlePersistence) {
117         this.journalArticlePersistence = journalArticlePersistence;
118     }
119 
120     public JournalArticleFinder getJournalArticleFinder() {
121         return journalArticleFinder;
122     }
123 
124     public void setJournalArticleFinder(
125         JournalArticleFinder journalArticleFinder) {
126         this.journalArticleFinder = journalArticleFinder;
127     }
128 
129     public JournalArticleImageLocalService getJournalArticleImageLocalService() {
130         return journalArticleImageLocalService;
131     }
132 
133     public void setJournalArticleImageLocalService(
134         JournalArticleImageLocalService journalArticleImageLocalService) {
135         this.journalArticleImageLocalService = journalArticleImageLocalService;
136     }
137 
138     public JournalArticleImagePersistence getJournalArticleImagePersistence() {
139         return journalArticleImagePersistence;
140     }
141 
142     public void setJournalArticleImagePersistence(
143         JournalArticleImagePersistence journalArticleImagePersistence) {
144         this.journalArticleImagePersistence = journalArticleImagePersistence;
145     }
146 
147     public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
148         return journalArticleResourceLocalService;
149     }
150 
151     public void setJournalArticleResourceLocalService(
152         JournalArticleResourceLocalService journalArticleResourceLocalService) {
153         this.journalArticleResourceLocalService = journalArticleResourceLocalService;
154     }
155 
156     public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
157         return journalArticleResourcePersistence;
158     }
159 
160     public void setJournalArticleResourcePersistence(
161         JournalArticleResourcePersistence journalArticleResourcePersistence) {
162         this.journalArticleResourcePersistence = journalArticleResourcePersistence;
163     }
164 
165     public JournalContentSearchLocalService getJournalContentSearchLocalService() {
166         return journalContentSearchLocalService;
167     }
168 
169     public void setJournalContentSearchLocalService(
170         JournalContentSearchLocalService journalContentSearchLocalService) {
171         this.journalContentSearchLocalService = journalContentSearchLocalService;
172     }
173 
174     public JournalContentSearchPersistence getJournalContentSearchPersistence() {
175         return journalContentSearchPersistence;
176     }
177 
178     public void setJournalContentSearchPersistence(
179         JournalContentSearchPersistence journalContentSearchPersistence) {
180         this.journalContentSearchPersistence = journalContentSearchPersistence;
181     }
182 
183     public JournalFeedLocalService getJournalFeedLocalService() {
184         return journalFeedLocalService;
185     }
186 
187     public void setJournalFeedLocalService(
188         JournalFeedLocalService journalFeedLocalService) {
189         this.journalFeedLocalService = journalFeedLocalService;
190     }
191 
192     public JournalFeedService getJournalFeedService() {
193         return journalFeedService;
194     }
195 
196     public void setJournalFeedService(JournalFeedService journalFeedService) {
197         this.journalFeedService = journalFeedService;
198     }
199 
200     public JournalFeedPersistence getJournalFeedPersistence() {
201         return journalFeedPersistence;
202     }
203 
204     public void setJournalFeedPersistence(
205         JournalFeedPersistence journalFeedPersistence) {
206         this.journalFeedPersistence = journalFeedPersistence;
207     }
208 
209     public JournalFeedFinder getJournalFeedFinder() {
210         return journalFeedFinder;
211     }
212 
213     public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
214         this.journalFeedFinder = journalFeedFinder;
215     }
216 
217     public JournalStructureLocalService getJournalStructureLocalService() {
218         return journalStructureLocalService;
219     }
220 
221     public void setJournalStructureLocalService(
222         JournalStructureLocalService journalStructureLocalService) {
223         this.journalStructureLocalService = journalStructureLocalService;
224     }
225 
226     public JournalStructureService getJournalStructureService() {
227         return journalStructureService;
228     }
229 
230     public void setJournalStructureService(
231         JournalStructureService journalStructureService) {
232         this.journalStructureService = journalStructureService;
233     }
234 
235     public JournalStructurePersistence getJournalStructurePersistence() {
236         return journalStructurePersistence;
237     }
238 
239     public void setJournalStructurePersistence(
240         JournalStructurePersistence journalStructurePersistence) {
241         this.journalStructurePersistence = journalStructurePersistence;
242     }
243 
244     public JournalStructureFinder getJournalStructureFinder() {
245         return journalStructureFinder;
246     }
247 
248     public void setJournalStructureFinder(
249         JournalStructureFinder journalStructureFinder) {
250         this.journalStructureFinder = journalStructureFinder;
251     }
252 
253     public JournalTemplateLocalService getJournalTemplateLocalService() {
254         return journalTemplateLocalService;
255     }
256 
257     public void setJournalTemplateLocalService(
258         JournalTemplateLocalService journalTemplateLocalService) {
259         this.journalTemplateLocalService = journalTemplateLocalService;
260     }
261 
262     public JournalTemplateService getJournalTemplateService() {
263         return journalTemplateService;
264     }
265 
266     public void setJournalTemplateService(
267         JournalTemplateService journalTemplateService) {
268         this.journalTemplateService = journalTemplateService;
269     }
270 
271     public JournalTemplatePersistence getJournalTemplatePersistence() {
272         return journalTemplatePersistence;
273     }
274 
275     public void setJournalTemplatePersistence(
276         JournalTemplatePersistence journalTemplatePersistence) {
277         this.journalTemplatePersistence = journalTemplatePersistence;
278     }
279 
280     public JournalTemplateFinder getJournalTemplateFinder() {
281         return journalTemplateFinder;
282     }
283 
284     public void setJournalTemplateFinder(
285         JournalTemplateFinder journalTemplateFinder) {
286         this.journalTemplateFinder = journalTemplateFinder;
287     }
288 
289     public CounterLocalService getCounterLocalService() {
290         return counterLocalService;
291     }
292 
293     public void setCounterLocalService(CounterLocalService counterLocalService) {
294         this.counterLocalService = counterLocalService;
295     }
296 
297     public CounterService getCounterService() {
298         return counterService;
299     }
300 
301     public void setCounterService(CounterService counterService) {
302         this.counterService = counterService;
303     }
304 
305     public MailService getMailService() {
306         return mailService;
307     }
308 
309     public void setMailService(MailService mailService) {
310         this.mailService = mailService;
311     }
312 
313     public CompanyLocalService getCompanyLocalService() {
314         return companyLocalService;
315     }
316 
317     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
318         this.companyLocalService = companyLocalService;
319     }
320 
321     public CompanyService getCompanyService() {
322         return companyService;
323     }
324 
325     public void setCompanyService(CompanyService companyService) {
326         this.companyService = companyService;
327     }
328 
329     public CompanyPersistence getCompanyPersistence() {
330         return companyPersistence;
331     }
332 
333     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
334         this.companyPersistence = companyPersistence;
335     }
336 
337     public ImageLocalService getImageLocalService() {
338         return imageLocalService;
339     }
340 
341     public void setImageLocalService(ImageLocalService imageLocalService) {
342         this.imageLocalService = imageLocalService;
343     }
344 
345     public ImagePersistence getImagePersistence() {
346         return imagePersistence;
347     }
348 
349     public void setImagePersistence(ImagePersistence imagePersistence) {
350         this.imagePersistence = imagePersistence;
351     }
352 
353     public PortletPreferencesLocalService getPortletPreferencesLocalService() {
354         return portletPreferencesLocalService;
355     }
356 
357     public void setPortletPreferencesLocalService(
358         PortletPreferencesLocalService portletPreferencesLocalService) {
359         this.portletPreferencesLocalService = portletPreferencesLocalService;
360     }
361 
362     public PortletPreferencesService getPortletPreferencesService() {
363         return portletPreferencesService;
364     }
365 
366     public void setPortletPreferencesService(
367         PortletPreferencesService portletPreferencesService) {
368         this.portletPreferencesService = portletPreferencesService;
369     }
370 
371     public PortletPreferencesPersistence getPortletPreferencesPersistence() {
372         return portletPreferencesPersistence;
373     }
374 
375     public void setPortletPreferencesPersistence(
376         PortletPreferencesPersistence portletPreferencesPersistence) {
377         this.portletPreferencesPersistence = portletPreferencesPersistence;
378     }
379 
380     public PortletPreferencesFinder getPortletPreferencesFinder() {
381         return portletPreferencesFinder;
382     }
383 
384     public void setPortletPreferencesFinder(
385         PortletPreferencesFinder portletPreferencesFinder) {
386         this.portletPreferencesFinder = portletPreferencesFinder;
387     }
388 
389     public ResourceLocalService getResourceLocalService() {
390         return resourceLocalService;
391     }
392 
393     public void setResourceLocalService(
394         ResourceLocalService resourceLocalService) {
395         this.resourceLocalService = resourceLocalService;
396     }
397 
398     public ResourceService getResourceService() {
399         return resourceService;
400     }
401 
402     public void setResourceService(ResourceService resourceService) {
403         this.resourceService = resourceService;
404     }
405 
406     public ResourcePersistence getResourcePersistence() {
407         return resourcePersistence;
408     }
409 
410     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
411         this.resourcePersistence = resourcePersistence;
412     }
413 
414     public ResourceFinder getResourceFinder() {
415         return resourceFinder;
416     }
417 
418     public void setResourceFinder(ResourceFinder resourceFinder) {
419         this.resourceFinder = resourceFinder;
420     }
421 
422     public UserLocalService getUserLocalService() {
423         return userLocalService;
424     }
425 
426     public void setUserLocalService(UserLocalService userLocalService) {
427         this.userLocalService = userLocalService;
428     }
429 
430     public UserService getUserService() {
431         return userService;
432     }
433 
434     public void setUserService(UserService userService) {
435         this.userService = userService;
436     }
437 
438     public UserPersistence getUserPersistence() {
439         return userPersistence;
440     }
441 
442     public void setUserPersistence(UserPersistence userPersistence) {
443         this.userPersistence = userPersistence;
444     }
445 
446     public UserFinder getUserFinder() {
447         return userFinder;
448     }
449 
450     public void setUserFinder(UserFinder userFinder) {
451         this.userFinder = userFinder;
452     }
453 
454     public ExpandoValueLocalService getExpandoValueLocalService() {
455         return expandoValueLocalService;
456     }
457 
458     public void setExpandoValueLocalService(
459         ExpandoValueLocalService expandoValueLocalService) {
460         this.expandoValueLocalService = expandoValueLocalService;
461     }
462 
463     public ExpandoValueService getExpandoValueService() {
464         return expandoValueService;
465     }
466 
467     public void setExpandoValueService(ExpandoValueService expandoValueService) {
468         this.expandoValueService = expandoValueService;
469     }
470 
471     public ExpandoValuePersistence getExpandoValuePersistence() {
472         return expandoValuePersistence;
473     }
474 
475     public void setExpandoValuePersistence(
476         ExpandoValuePersistence expandoValuePersistence) {
477         this.expandoValuePersistence = expandoValuePersistence;
478     }
479 
480     public MBMessageLocalService getMBMessageLocalService() {
481         return mbMessageLocalService;
482     }
483 
484     public void setMBMessageLocalService(
485         MBMessageLocalService mbMessageLocalService) {
486         this.mbMessageLocalService = mbMessageLocalService;
487     }
488 
489     public MBMessageService getMBMessageService() {
490         return mbMessageService;
491     }
492 
493     public void setMBMessageService(MBMessageService mbMessageService) {
494         this.mbMessageService = mbMessageService;
495     }
496 
497     public MBMessagePersistence getMBMessagePersistence() {
498         return mbMessagePersistence;
499     }
500 
501     public void setMBMessagePersistence(
502         MBMessagePersistence mbMessagePersistence) {
503         this.mbMessagePersistence = mbMessagePersistence;
504     }
505 
506     public MBMessageFinder getMBMessageFinder() {
507         return mbMessageFinder;
508     }
509 
510     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
511         this.mbMessageFinder = mbMessageFinder;
512     }
513 
514     public RatingsStatsLocalService getRatingsStatsLocalService() {
515         return ratingsStatsLocalService;
516     }
517 
518     public void setRatingsStatsLocalService(
519         RatingsStatsLocalService ratingsStatsLocalService) {
520         this.ratingsStatsLocalService = ratingsStatsLocalService;
521     }
522 
523     public RatingsStatsPersistence getRatingsStatsPersistence() {
524         return ratingsStatsPersistence;
525     }
526 
527     public void setRatingsStatsPersistence(
528         RatingsStatsPersistence ratingsStatsPersistence) {
529         this.ratingsStatsPersistence = ratingsStatsPersistence;
530     }
531 
532     public TagsAssetLocalService getTagsAssetLocalService() {
533         return tagsAssetLocalService;
534     }
535 
536     public void setTagsAssetLocalService(
537         TagsAssetLocalService tagsAssetLocalService) {
538         this.tagsAssetLocalService = tagsAssetLocalService;
539     }
540 
541     public TagsAssetService getTagsAssetService() {
542         return tagsAssetService;
543     }
544 
545     public void setTagsAssetService(TagsAssetService tagsAssetService) {
546         this.tagsAssetService = tagsAssetService;
547     }
548 
549     public TagsAssetPersistence getTagsAssetPersistence() {
550         return tagsAssetPersistence;
551     }
552 
553     public void setTagsAssetPersistence(
554         TagsAssetPersistence tagsAssetPersistence) {
555         this.tagsAssetPersistence = tagsAssetPersistence;
556     }
557 
558     public TagsAssetFinder getTagsAssetFinder() {
559         return tagsAssetFinder;
560     }
561 
562     public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
563         this.tagsAssetFinder = tagsAssetFinder;
564     }
565 
566     public TagsEntryLocalService getTagsEntryLocalService() {
567         return tagsEntryLocalService;
568     }
569 
570     public void setTagsEntryLocalService(
571         TagsEntryLocalService tagsEntryLocalService) {
572         this.tagsEntryLocalService = tagsEntryLocalService;
573     }
574 
575     public TagsEntryService getTagsEntryService() {
576         return tagsEntryService;
577     }
578 
579     public void setTagsEntryService(TagsEntryService tagsEntryService) {
580         this.tagsEntryService = tagsEntryService;
581     }
582 
583     public TagsEntryPersistence getTagsEntryPersistence() {
584         return tagsEntryPersistence;
585     }
586 
587     public void setTagsEntryPersistence(
588         TagsEntryPersistence tagsEntryPersistence) {
589         this.tagsEntryPersistence = tagsEntryPersistence;
590     }
591 
592     public TagsEntryFinder getTagsEntryFinder() {
593         return tagsEntryFinder;
594     }
595 
596     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
597         this.tagsEntryFinder = tagsEntryFinder;
598     }
599 
600     protected void runSQL(String sql) throws SystemException {
601         try {
602             DB db = DBFactoryUtil.getDB();
603 
604             db.runSQL(sql);
605         }
606         catch (Exception e) {
607             throw new SystemException(e);
608         }
609     }
610 
611     @BeanReference(type = JournalArticleLocalService.class)
612     protected JournalArticleLocalService journalArticleLocalService;
613     @BeanReference(type = JournalArticleService.class)
614     protected JournalArticleService journalArticleService;
615     @BeanReference(type = JournalArticlePersistence.class)
616     protected JournalArticlePersistence journalArticlePersistence;
617     @BeanReference(type = JournalArticleFinder.class)
618     protected JournalArticleFinder journalArticleFinder;
619     @BeanReference(type = JournalArticleImageLocalService.class)
620     protected JournalArticleImageLocalService journalArticleImageLocalService;
621     @BeanReference(type = JournalArticleImagePersistence.class)
622     protected JournalArticleImagePersistence journalArticleImagePersistence;
623     @BeanReference(type = JournalArticleResourceLocalService.class)
624     protected JournalArticleResourceLocalService journalArticleResourceLocalService;
625     @BeanReference(type = JournalArticleResourcePersistence.class)
626     protected JournalArticleResourcePersistence journalArticleResourcePersistence;
627     @BeanReference(type = JournalContentSearchLocalService.class)
628     protected JournalContentSearchLocalService journalContentSearchLocalService;
629     @BeanReference(type = JournalContentSearchPersistence.class)
630     protected JournalContentSearchPersistence journalContentSearchPersistence;
631     @BeanReference(type = JournalFeedLocalService.class)
632     protected JournalFeedLocalService journalFeedLocalService;
633     @BeanReference(type = JournalFeedService.class)
634     protected JournalFeedService journalFeedService;
635     @BeanReference(type = JournalFeedPersistence.class)
636     protected JournalFeedPersistence journalFeedPersistence;
637     @BeanReference(type = JournalFeedFinder.class)
638     protected JournalFeedFinder journalFeedFinder;
639     @BeanReference(type = JournalStructureLocalService.class)
640     protected JournalStructureLocalService journalStructureLocalService;
641     @BeanReference(type = JournalStructureService.class)
642     protected JournalStructureService journalStructureService;
643     @BeanReference(type = JournalStructurePersistence.class)
644     protected JournalStructurePersistence journalStructurePersistence;
645     @BeanReference(type = JournalStructureFinder.class)
646     protected JournalStructureFinder journalStructureFinder;
647     @BeanReference(type = JournalTemplateLocalService.class)
648     protected JournalTemplateLocalService journalTemplateLocalService;
649     @BeanReference(type = JournalTemplateService.class)
650     protected JournalTemplateService journalTemplateService;
651     @BeanReference(type = JournalTemplatePersistence.class)
652     protected JournalTemplatePersistence journalTemplatePersistence;
653     @BeanReference(type = JournalTemplateFinder.class)
654     protected JournalTemplateFinder journalTemplateFinder;
655     @BeanReference(type = CounterLocalService.class)
656     protected CounterLocalService counterLocalService;
657     @BeanReference(type = CounterService.class)
658     protected CounterService counterService;
659     @BeanReference(type = MailService.class)
660     protected MailService mailService;
661     @BeanReference(type = CompanyLocalService.class)
662     protected CompanyLocalService companyLocalService;
663     @BeanReference(type = CompanyService.class)
664     protected CompanyService companyService;
665     @BeanReference(type = CompanyPersistence.class)
666     protected CompanyPersistence companyPersistence;
667     @BeanReference(type = ImageLocalService.class)
668     protected ImageLocalService imageLocalService;
669     @BeanReference(type = ImagePersistence.class)
670     protected ImagePersistence imagePersistence;
671     @BeanReference(type = PortletPreferencesLocalService.class)
672     protected PortletPreferencesLocalService portletPreferencesLocalService;
673     @BeanReference(type = PortletPreferencesService.class)
674     protected PortletPreferencesService portletPreferencesService;
675     @BeanReference(type = PortletPreferencesPersistence.class)
676     protected PortletPreferencesPersistence portletPreferencesPersistence;
677     @BeanReference(type = PortletPreferencesFinder.class)
678     protected PortletPreferencesFinder portletPreferencesFinder;
679     @BeanReference(type = ResourceLocalService.class)
680     protected ResourceLocalService resourceLocalService;
681     @BeanReference(type = ResourceService.class)
682     protected ResourceService resourceService;
683     @BeanReference(type = ResourcePersistence.class)
684     protected ResourcePersistence resourcePersistence;
685     @BeanReference(type = ResourceFinder.class)
686     protected ResourceFinder resourceFinder;
687     @BeanReference(type = UserLocalService.class)
688     protected UserLocalService userLocalService;
689     @BeanReference(type = UserService.class)
690     protected UserService userService;
691     @BeanReference(type = UserPersistence.class)
692     protected UserPersistence userPersistence;
693     @BeanReference(type = UserFinder.class)
694     protected UserFinder userFinder;
695     @BeanReference(type = ExpandoValueLocalService.class)
696     protected ExpandoValueLocalService expandoValueLocalService;
697     @BeanReference(type = ExpandoValueService.class)
698     protected ExpandoValueService expandoValueService;
699     @BeanReference(type = ExpandoValuePersistence.class)
700     protected ExpandoValuePersistence expandoValuePersistence;
701     @BeanReference(type = MBMessageLocalService.class)
702     protected MBMessageLocalService mbMessageLocalService;
703     @BeanReference(type = MBMessageService.class)
704     protected MBMessageService mbMessageService;
705     @BeanReference(type = MBMessagePersistence.class)
706     protected MBMessagePersistence mbMessagePersistence;
707     @BeanReference(type = MBMessageFinder.class)
708     protected MBMessageFinder mbMessageFinder;
709     @BeanReference(type = RatingsStatsLocalService.class)
710     protected RatingsStatsLocalService ratingsStatsLocalService;
711     @BeanReference(type = RatingsStatsPersistence.class)
712     protected RatingsStatsPersistence ratingsStatsPersistence;
713     @BeanReference(type = TagsAssetLocalService.class)
714     protected TagsAssetLocalService tagsAssetLocalService;
715     @BeanReference(type = TagsAssetService.class)
716     protected TagsAssetService tagsAssetService;
717     @BeanReference(type = TagsAssetPersistence.class)
718     protected TagsAssetPersistence tagsAssetPersistence;
719     @BeanReference(type = TagsAssetFinder.class)
720     protected TagsAssetFinder tagsAssetFinder;
721     @BeanReference(type = TagsEntryLocalService.class)
722     protected TagsEntryLocalService tagsEntryLocalService;
723     @BeanReference(type = TagsEntryService.class)
724     protected TagsEntryService tagsEntryService;
725     @BeanReference(type = TagsEntryPersistence.class)
726     protected TagsEntryPersistence tagsEntryPersistence;
727     @BeanReference(type = TagsEntryFinder.class)
728     protected TagsEntryFinder tagsEntryFinder;
729 }