001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.journal.service.base;
016    
017    import com.liferay.portal.kernel.bean.BeanReference;
018    import com.liferay.portal.kernel.bean.IdentifiableBean;
019    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021    import com.liferay.portal.kernel.exception.SystemException;
022    import com.liferay.portal.kernel.util.InfrastructureUtil;
023    import com.liferay.portal.service.BaseLocalServiceImpl;
024    import com.liferay.portal.service.persistence.GroupFinder;
025    import com.liferay.portal.service.persistence.GroupPersistence;
026    import com.liferay.portal.service.persistence.UserFinder;
027    import com.liferay.portal.service.persistence.UserPersistence;
028    
029    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
030    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
031    import com.liferay.portlet.journal.service.JournalStructureLocalService;
032    import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
033    import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
034    import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
035    import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
036    import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
037    import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
038    import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
039    import com.liferay.portlet.journal.service.persistence.JournalFolderFinder;
040    import com.liferay.portlet.journal.service.persistence.JournalFolderPersistence;
041    
042    import javax.sql.DataSource;
043    
044    /**
045     * Provides the base implementation for the journal structure local service.
046     *
047     * <p>
048     * This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.portlet.journal.service.impl.JournalStructureLocalServiceImpl}.
049     * </p>
050     *
051     * @author Brian Wing Shun Chan
052     * @see com.liferay.portlet.journal.service.impl.JournalStructureLocalServiceImpl
053     * @see com.liferay.portlet.journal.service.JournalStructureLocalServiceUtil
054     * @deprecated As of 6.2.0, since Web Content Administration now uses the
055                Dynamic Data Mapping framework to handle structures
056     * @generated
057     */
058    public abstract class JournalStructureLocalServiceBaseImpl
059            extends BaseLocalServiceImpl implements JournalStructureLocalService,
060                    IdentifiableBean {
061            /*
062             * NOTE FOR DEVELOPERS:
063             *
064             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.journal.service.JournalStructureLocalServiceUtil} to access the journal structure local service.
065             */
066    
067            /**
068             * Returns the journal article local service.
069             *
070             * @return the journal article local service
071             */
072            public com.liferay.portlet.journal.service.JournalArticleLocalService getJournalArticleLocalService() {
073                    return journalArticleLocalService;
074            }
075    
076            /**
077             * Sets the journal article local service.
078             *
079             * @param journalArticleLocalService the journal article local service
080             */
081            public void setJournalArticleLocalService(
082                    com.liferay.portlet.journal.service.JournalArticleLocalService journalArticleLocalService) {
083                    this.journalArticleLocalService = journalArticleLocalService;
084            }
085    
086            /**
087             * Returns the journal article remote service.
088             *
089             * @return the journal article remote service
090             */
091            public com.liferay.portlet.journal.service.JournalArticleService getJournalArticleService() {
092                    return journalArticleService;
093            }
094    
095            /**
096             * Sets the journal article remote service.
097             *
098             * @param journalArticleService the journal article remote service
099             */
100            public void setJournalArticleService(
101                    com.liferay.portlet.journal.service.JournalArticleService journalArticleService) {
102                    this.journalArticleService = journalArticleService;
103            }
104    
105            /**
106             * Returns the journal article persistence.
107             *
108             * @return the journal article persistence
109             */
110            public JournalArticlePersistence getJournalArticlePersistence() {
111                    return journalArticlePersistence;
112            }
113    
114            /**
115             * Sets the journal article persistence.
116             *
117             * @param journalArticlePersistence the journal article persistence
118             */
119            public void setJournalArticlePersistence(
120                    JournalArticlePersistence journalArticlePersistence) {
121                    this.journalArticlePersistence = journalArticlePersistence;
122            }
123    
124            /**
125             * Returns the journal article finder.
126             *
127             * @return the journal article finder
128             */
129            public JournalArticleFinder getJournalArticleFinder() {
130                    return journalArticleFinder;
131            }
132    
133            /**
134             * Sets the journal article finder.
135             *
136             * @param journalArticleFinder the journal article finder
137             */
138            public void setJournalArticleFinder(
139                    JournalArticleFinder journalArticleFinder) {
140                    this.journalArticleFinder = journalArticleFinder;
141            }
142    
143            /**
144             * Returns the journal article image local service.
145             *
146             * @return the journal article image local service
147             */
148            public com.liferay.portlet.journal.service.JournalArticleImageLocalService getJournalArticleImageLocalService() {
149                    return journalArticleImageLocalService;
150            }
151    
152            /**
153             * Sets the journal article image local service.
154             *
155             * @param journalArticleImageLocalService the journal article image local service
156             */
157            public void setJournalArticleImageLocalService(
158                    com.liferay.portlet.journal.service.JournalArticleImageLocalService journalArticleImageLocalService) {
159                    this.journalArticleImageLocalService = journalArticleImageLocalService;
160            }
161    
162            /**
163             * Returns the journal article image persistence.
164             *
165             * @return the journal article image persistence
166             */
167            public JournalArticleImagePersistence getJournalArticleImagePersistence() {
168                    return journalArticleImagePersistence;
169            }
170    
171            /**
172             * Sets the journal article image persistence.
173             *
174             * @param journalArticleImagePersistence the journal article image persistence
175             */
176            public void setJournalArticleImagePersistence(
177                    JournalArticleImagePersistence journalArticleImagePersistence) {
178                    this.journalArticleImagePersistence = journalArticleImagePersistence;
179            }
180    
181            /**
182             * Returns the journal article resource local service.
183             *
184             * @return the journal article resource local service
185             */
186            public com.liferay.portlet.journal.service.JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
187                    return journalArticleResourceLocalService;
188            }
189    
190            /**
191             * Sets the journal article resource local service.
192             *
193             * @param journalArticleResourceLocalService the journal article resource local service
194             */
195            public void setJournalArticleResourceLocalService(
196                    com.liferay.portlet.journal.service.JournalArticleResourceLocalService journalArticleResourceLocalService) {
197                    this.journalArticleResourceLocalService = journalArticleResourceLocalService;
198            }
199    
200            /**
201             * Returns the journal article resource persistence.
202             *
203             * @return the journal article resource persistence
204             */
205            public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
206                    return journalArticleResourcePersistence;
207            }
208    
209            /**
210             * Sets the journal article resource persistence.
211             *
212             * @param journalArticleResourcePersistence the journal article resource persistence
213             */
214            public void setJournalArticleResourcePersistence(
215                    JournalArticleResourcePersistence journalArticleResourcePersistence) {
216                    this.journalArticleResourcePersistence = journalArticleResourcePersistence;
217            }
218    
219            /**
220             * Returns the journal content search local service.
221             *
222             * @return the journal content search local service
223             */
224            public com.liferay.portlet.journal.service.JournalContentSearchLocalService getJournalContentSearchLocalService() {
225                    return journalContentSearchLocalService;
226            }
227    
228            /**
229             * Sets the journal content search local service.
230             *
231             * @param journalContentSearchLocalService the journal content search local service
232             */
233            public void setJournalContentSearchLocalService(
234                    com.liferay.portlet.journal.service.JournalContentSearchLocalService journalContentSearchLocalService) {
235                    this.journalContentSearchLocalService = journalContentSearchLocalService;
236            }
237    
238            /**
239             * Returns the journal content search persistence.
240             *
241             * @return the journal content search persistence
242             */
243            public JournalContentSearchPersistence getJournalContentSearchPersistence() {
244                    return journalContentSearchPersistence;
245            }
246    
247            /**
248             * Sets the journal content search persistence.
249             *
250             * @param journalContentSearchPersistence the journal content search persistence
251             */
252            public void setJournalContentSearchPersistence(
253                    JournalContentSearchPersistence journalContentSearchPersistence) {
254                    this.journalContentSearchPersistence = journalContentSearchPersistence;
255            }
256    
257            /**
258             * Returns the journal feed local service.
259             *
260             * @return the journal feed local service
261             */
262            public com.liferay.portlet.journal.service.JournalFeedLocalService getJournalFeedLocalService() {
263                    return journalFeedLocalService;
264            }
265    
266            /**
267             * Sets the journal feed local service.
268             *
269             * @param journalFeedLocalService the journal feed local service
270             */
271            public void setJournalFeedLocalService(
272                    com.liferay.portlet.journal.service.JournalFeedLocalService journalFeedLocalService) {
273                    this.journalFeedLocalService = journalFeedLocalService;
274            }
275    
276            /**
277             * Returns the journal feed remote service.
278             *
279             * @return the journal feed remote service
280             */
281            public com.liferay.portlet.journal.service.JournalFeedService getJournalFeedService() {
282                    return journalFeedService;
283            }
284    
285            /**
286             * Sets the journal feed remote service.
287             *
288             * @param journalFeedService the journal feed remote service
289             */
290            public void setJournalFeedService(
291                    com.liferay.portlet.journal.service.JournalFeedService journalFeedService) {
292                    this.journalFeedService = journalFeedService;
293            }
294    
295            /**
296             * Returns the journal feed persistence.
297             *
298             * @return the journal feed persistence
299             */
300            public JournalFeedPersistence getJournalFeedPersistence() {
301                    return journalFeedPersistence;
302            }
303    
304            /**
305             * Sets the journal feed persistence.
306             *
307             * @param journalFeedPersistence the journal feed persistence
308             */
309            public void setJournalFeedPersistence(
310                    JournalFeedPersistence journalFeedPersistence) {
311                    this.journalFeedPersistence = journalFeedPersistence;
312            }
313    
314            /**
315             * Returns the journal feed finder.
316             *
317             * @return the journal feed finder
318             */
319            public JournalFeedFinder getJournalFeedFinder() {
320                    return journalFeedFinder;
321            }
322    
323            /**
324             * Sets the journal feed finder.
325             *
326             * @param journalFeedFinder the journal feed finder
327             */
328            public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
329                    this.journalFeedFinder = journalFeedFinder;
330            }
331    
332            /**
333             * Returns the journal folder local service.
334             *
335             * @return the journal folder local service
336             */
337            public com.liferay.portlet.journal.service.JournalFolderLocalService getJournalFolderLocalService() {
338                    return journalFolderLocalService;
339            }
340    
341            /**
342             * Sets the journal folder local service.
343             *
344             * @param journalFolderLocalService the journal folder local service
345             */
346            public void setJournalFolderLocalService(
347                    com.liferay.portlet.journal.service.JournalFolderLocalService journalFolderLocalService) {
348                    this.journalFolderLocalService = journalFolderLocalService;
349            }
350    
351            /**
352             * Returns the journal folder remote service.
353             *
354             * @return the journal folder remote service
355             */
356            public com.liferay.portlet.journal.service.JournalFolderService getJournalFolderService() {
357                    return journalFolderService;
358            }
359    
360            /**
361             * Sets the journal folder remote service.
362             *
363             * @param journalFolderService the journal folder remote service
364             */
365            public void setJournalFolderService(
366                    com.liferay.portlet.journal.service.JournalFolderService journalFolderService) {
367                    this.journalFolderService = journalFolderService;
368            }
369    
370            /**
371             * Returns the journal folder persistence.
372             *
373             * @return the journal folder persistence
374             */
375            public JournalFolderPersistence getJournalFolderPersistence() {
376                    return journalFolderPersistence;
377            }
378    
379            /**
380             * Sets the journal folder persistence.
381             *
382             * @param journalFolderPersistence the journal folder persistence
383             */
384            public void setJournalFolderPersistence(
385                    JournalFolderPersistence journalFolderPersistence) {
386                    this.journalFolderPersistence = journalFolderPersistence;
387            }
388    
389            /**
390             * Returns the journal folder finder.
391             *
392             * @return the journal folder finder
393             */
394            public JournalFolderFinder getJournalFolderFinder() {
395                    return journalFolderFinder;
396            }
397    
398            /**
399             * Sets the journal folder finder.
400             *
401             * @param journalFolderFinder the journal folder finder
402             */
403            public void setJournalFolderFinder(JournalFolderFinder journalFolderFinder) {
404                    this.journalFolderFinder = journalFolderFinder;
405            }
406    
407            /**
408             * Returns the journal structure local service.
409             *
410             * @return the journal structure local service
411             */
412            public com.liferay.portlet.journal.service.JournalStructureLocalService getJournalStructureLocalService() {
413                    return journalStructureLocalService;
414            }
415    
416            /**
417             * Sets the journal structure local service.
418             *
419             * @param journalStructureLocalService the journal structure local service
420             */
421            public void setJournalStructureLocalService(
422                    com.liferay.portlet.journal.service.JournalStructureLocalService journalStructureLocalService) {
423                    this.journalStructureLocalService = journalStructureLocalService;
424            }
425    
426            /**
427             * Returns the journal structure remote service.
428             *
429             * @return the journal structure remote service
430             */
431            public com.liferay.portlet.journal.service.JournalStructureService getJournalStructureService() {
432                    return journalStructureService;
433            }
434    
435            /**
436             * Sets the journal structure remote service.
437             *
438             * @param journalStructureService the journal structure remote service
439             */
440            public void setJournalStructureService(
441                    com.liferay.portlet.journal.service.JournalStructureService journalStructureService) {
442                    this.journalStructureService = journalStructureService;
443            }
444    
445            /**
446             * Returns the journal template local service.
447             *
448             * @return the journal template local service
449             */
450            public com.liferay.portlet.journal.service.JournalTemplateLocalService getJournalTemplateLocalService() {
451                    return journalTemplateLocalService;
452            }
453    
454            /**
455             * Sets the journal template local service.
456             *
457             * @param journalTemplateLocalService the journal template local service
458             */
459            public void setJournalTemplateLocalService(
460                    com.liferay.portlet.journal.service.JournalTemplateLocalService journalTemplateLocalService) {
461                    this.journalTemplateLocalService = journalTemplateLocalService;
462            }
463    
464            /**
465             * Returns the journal template remote service.
466             *
467             * @return the journal template remote service
468             */
469            public com.liferay.portlet.journal.service.JournalTemplateService getJournalTemplateService() {
470                    return journalTemplateService;
471            }
472    
473            /**
474             * Sets the journal template remote service.
475             *
476             * @param journalTemplateService the journal template remote service
477             */
478            public void setJournalTemplateService(
479                    com.liferay.portlet.journal.service.JournalTemplateService journalTemplateService) {
480                    this.journalTemplateService = journalTemplateService;
481            }
482    
483            /**
484             * Returns the counter local service.
485             *
486             * @return the counter local service
487             */
488            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
489                    return counterLocalService;
490            }
491    
492            /**
493             * Sets the counter local service.
494             *
495             * @param counterLocalService the counter local service
496             */
497            public void setCounterLocalService(
498                    com.liferay.counter.service.CounterLocalService counterLocalService) {
499                    this.counterLocalService = counterLocalService;
500            }
501    
502            /**
503             * Returns the group local service.
504             *
505             * @return the group local service
506             */
507            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
508                    return groupLocalService;
509            }
510    
511            /**
512             * Sets the group local service.
513             *
514             * @param groupLocalService the group local service
515             */
516            public void setGroupLocalService(
517                    com.liferay.portal.service.GroupLocalService groupLocalService) {
518                    this.groupLocalService = groupLocalService;
519            }
520    
521            /**
522             * Returns the group remote service.
523             *
524             * @return the group remote service
525             */
526            public com.liferay.portal.service.GroupService getGroupService() {
527                    return groupService;
528            }
529    
530            /**
531             * Sets the group remote service.
532             *
533             * @param groupService the group remote service
534             */
535            public void setGroupService(
536                    com.liferay.portal.service.GroupService groupService) {
537                    this.groupService = groupService;
538            }
539    
540            /**
541             * Returns the group persistence.
542             *
543             * @return the group persistence
544             */
545            public GroupPersistence getGroupPersistence() {
546                    return groupPersistence;
547            }
548    
549            /**
550             * Sets the group persistence.
551             *
552             * @param groupPersistence the group persistence
553             */
554            public void setGroupPersistence(GroupPersistence groupPersistence) {
555                    this.groupPersistence = groupPersistence;
556            }
557    
558            /**
559             * Returns the group finder.
560             *
561             * @return the group finder
562             */
563            public GroupFinder getGroupFinder() {
564                    return groupFinder;
565            }
566    
567            /**
568             * Sets the group finder.
569             *
570             * @param groupFinder the group finder
571             */
572            public void setGroupFinder(GroupFinder groupFinder) {
573                    this.groupFinder = groupFinder;
574            }
575    
576            /**
577             * Returns the resource local service.
578             *
579             * @return the resource local service
580             */
581            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
582                    return resourceLocalService;
583            }
584    
585            /**
586             * Sets the resource local service.
587             *
588             * @param resourceLocalService the resource local service
589             */
590            public void setResourceLocalService(
591                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
592                    this.resourceLocalService = resourceLocalService;
593            }
594    
595            /**
596             * Returns the user local service.
597             *
598             * @return the user local service
599             */
600            public com.liferay.portal.service.UserLocalService getUserLocalService() {
601                    return userLocalService;
602            }
603    
604            /**
605             * Sets the user local service.
606             *
607             * @param userLocalService the user local service
608             */
609            public void setUserLocalService(
610                    com.liferay.portal.service.UserLocalService userLocalService) {
611                    this.userLocalService = userLocalService;
612            }
613    
614            /**
615             * Returns the user remote service.
616             *
617             * @return the user remote service
618             */
619            public com.liferay.portal.service.UserService getUserService() {
620                    return userService;
621            }
622    
623            /**
624             * Sets the user remote service.
625             *
626             * @param userService the user remote service
627             */
628            public void setUserService(
629                    com.liferay.portal.service.UserService userService) {
630                    this.userService = userService;
631            }
632    
633            /**
634             * Returns the user persistence.
635             *
636             * @return the user persistence
637             */
638            public UserPersistence getUserPersistence() {
639                    return userPersistence;
640            }
641    
642            /**
643             * Sets the user persistence.
644             *
645             * @param userPersistence the user persistence
646             */
647            public void setUserPersistence(UserPersistence userPersistence) {
648                    this.userPersistence = userPersistence;
649            }
650    
651            /**
652             * Returns the user finder.
653             *
654             * @return the user finder
655             */
656            public UserFinder getUserFinder() {
657                    return userFinder;
658            }
659    
660            /**
661             * Sets the user finder.
662             *
663             * @param userFinder the user finder
664             */
665            public void setUserFinder(UserFinder userFinder) {
666                    this.userFinder = userFinder;
667            }
668    
669            /**
670             * Returns the d d m structure local service.
671             *
672             * @return the d d m structure local service
673             */
674            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
675                    return ddmStructureLocalService;
676            }
677    
678            /**
679             * Sets the d d m structure local service.
680             *
681             * @param ddmStructureLocalService the d d m structure local service
682             */
683            public void setDDMStructureLocalService(
684                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
685                    this.ddmStructureLocalService = ddmStructureLocalService;
686            }
687    
688            /**
689             * Returns the d d m structure remote service.
690             *
691             * @return the d d m structure remote service
692             */
693            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
694                    return ddmStructureService;
695            }
696    
697            /**
698             * Sets the d d m structure remote service.
699             *
700             * @param ddmStructureService the d d m structure remote service
701             */
702            public void setDDMStructureService(
703                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
704                    this.ddmStructureService = ddmStructureService;
705            }
706    
707            /**
708             * Returns the d d m structure persistence.
709             *
710             * @return the d d m structure persistence
711             */
712            public DDMStructurePersistence getDDMStructurePersistence() {
713                    return ddmStructurePersistence;
714            }
715    
716            /**
717             * Sets the d d m structure persistence.
718             *
719             * @param ddmStructurePersistence the d d m structure persistence
720             */
721            public void setDDMStructurePersistence(
722                    DDMStructurePersistence ddmStructurePersistence) {
723                    this.ddmStructurePersistence = ddmStructurePersistence;
724            }
725    
726            /**
727             * Returns the d d m structure finder.
728             *
729             * @return the d d m structure finder
730             */
731            public DDMStructureFinder getDDMStructureFinder() {
732                    return ddmStructureFinder;
733            }
734    
735            /**
736             * Sets the d d m structure finder.
737             *
738             * @param ddmStructureFinder the d d m structure finder
739             */
740            public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
741                    this.ddmStructureFinder = ddmStructureFinder;
742            }
743    
744            public void afterPropertiesSet() {
745            }
746    
747            public void destroy() {
748            }
749    
750            /**
751             * Returns the Spring bean ID for this bean.
752             *
753             * @return the Spring bean ID for this bean
754             */
755            @Override
756            public String getBeanIdentifier() {
757                    return _beanIdentifier;
758            }
759    
760            /**
761             * Sets the Spring bean ID for this bean.
762             *
763             * @param beanIdentifier the Spring bean ID for this bean
764             */
765            @Override
766            public void setBeanIdentifier(String beanIdentifier) {
767                    _beanIdentifier = beanIdentifier;
768            }
769    
770            /**
771             * Performs an SQL query.
772             *
773             * @param sql the sql query
774             */
775            protected void runSQL(String sql) throws SystemException {
776                    try {
777                            DataSource dataSource = InfrastructureUtil.getDataSource();
778    
779                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
780                                            sql, new int[0]);
781    
782                            sqlUpdate.update();
783                    }
784                    catch (Exception e) {
785                            throw new SystemException(e);
786                    }
787            }
788    
789            @BeanReference(type = com.liferay.portlet.journal.service.JournalArticleLocalService.class)
790            protected com.liferay.portlet.journal.service.JournalArticleLocalService journalArticleLocalService;
791            @BeanReference(type = com.liferay.portlet.journal.service.JournalArticleService.class)
792            protected com.liferay.portlet.journal.service.JournalArticleService journalArticleService;
793            @BeanReference(type = JournalArticlePersistence.class)
794            protected JournalArticlePersistence journalArticlePersistence;
795            @BeanReference(type = JournalArticleFinder.class)
796            protected JournalArticleFinder journalArticleFinder;
797            @BeanReference(type = com.liferay.portlet.journal.service.JournalArticleImageLocalService.class)
798            protected com.liferay.portlet.journal.service.JournalArticleImageLocalService journalArticleImageLocalService;
799            @BeanReference(type = JournalArticleImagePersistence.class)
800            protected JournalArticleImagePersistence journalArticleImagePersistence;
801            @BeanReference(type = com.liferay.portlet.journal.service.JournalArticleResourceLocalService.class)
802            protected com.liferay.portlet.journal.service.JournalArticleResourceLocalService journalArticleResourceLocalService;
803            @BeanReference(type = JournalArticleResourcePersistence.class)
804            protected JournalArticleResourcePersistence journalArticleResourcePersistence;
805            @BeanReference(type = com.liferay.portlet.journal.service.JournalContentSearchLocalService.class)
806            protected com.liferay.portlet.journal.service.JournalContentSearchLocalService journalContentSearchLocalService;
807            @BeanReference(type = JournalContentSearchPersistence.class)
808            protected JournalContentSearchPersistence journalContentSearchPersistence;
809            @BeanReference(type = com.liferay.portlet.journal.service.JournalFeedLocalService.class)
810            protected com.liferay.portlet.journal.service.JournalFeedLocalService journalFeedLocalService;
811            @BeanReference(type = com.liferay.portlet.journal.service.JournalFeedService.class)
812            protected com.liferay.portlet.journal.service.JournalFeedService journalFeedService;
813            @BeanReference(type = JournalFeedPersistence.class)
814            protected JournalFeedPersistence journalFeedPersistence;
815            @BeanReference(type = JournalFeedFinder.class)
816            protected JournalFeedFinder journalFeedFinder;
817            @BeanReference(type = com.liferay.portlet.journal.service.JournalFolderLocalService.class)
818            protected com.liferay.portlet.journal.service.JournalFolderLocalService journalFolderLocalService;
819            @BeanReference(type = com.liferay.portlet.journal.service.JournalFolderService.class)
820            protected com.liferay.portlet.journal.service.JournalFolderService journalFolderService;
821            @BeanReference(type = JournalFolderPersistence.class)
822            protected JournalFolderPersistence journalFolderPersistence;
823            @BeanReference(type = JournalFolderFinder.class)
824            protected JournalFolderFinder journalFolderFinder;
825            @BeanReference(type = com.liferay.portlet.journal.service.JournalStructureLocalService.class)
826            protected com.liferay.portlet.journal.service.JournalStructureLocalService journalStructureLocalService;
827            @BeanReference(type = com.liferay.portlet.journal.service.JournalStructureService.class)
828            protected com.liferay.portlet.journal.service.JournalStructureService journalStructureService;
829            @BeanReference(type = com.liferay.portlet.journal.service.JournalTemplateLocalService.class)
830            protected com.liferay.portlet.journal.service.JournalTemplateLocalService journalTemplateLocalService;
831            @BeanReference(type = com.liferay.portlet.journal.service.JournalTemplateService.class)
832            protected com.liferay.portlet.journal.service.JournalTemplateService journalTemplateService;
833            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
834            protected com.liferay.counter.service.CounterLocalService counterLocalService;
835            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
836            protected com.liferay.portal.service.GroupLocalService groupLocalService;
837            @BeanReference(type = com.liferay.portal.service.GroupService.class)
838            protected com.liferay.portal.service.GroupService groupService;
839            @BeanReference(type = GroupPersistence.class)
840            protected GroupPersistence groupPersistence;
841            @BeanReference(type = GroupFinder.class)
842            protected GroupFinder groupFinder;
843            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
844            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
845            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
846            protected com.liferay.portal.service.UserLocalService userLocalService;
847            @BeanReference(type = com.liferay.portal.service.UserService.class)
848            protected com.liferay.portal.service.UserService userService;
849            @BeanReference(type = UserPersistence.class)
850            protected UserPersistence userPersistence;
851            @BeanReference(type = UserFinder.class)
852            protected UserFinder userFinder;
853            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
854            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
855            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
856            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
857            @BeanReference(type = DDMStructurePersistence.class)
858            protected DDMStructurePersistence ddmStructurePersistence;
859            @BeanReference(type = DDMStructureFinder.class)
860            protected DDMStructureFinder ddmStructureFinder;
861            private String _beanIdentifier;
862    }