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