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