001    /**
002     * Copyright (c) 2000-present 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.exportimport.service.base;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.db.DB;
022    import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
023    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025    import com.liferay.portal.kernel.exception.SystemException;
026    import com.liferay.portal.kernel.util.InfrastructureUtil;
027    import com.liferay.portal.service.BaseLocalServiceImpl;
028    import com.liferay.portal.service.persistence.ClassNamePersistence;
029    import com.liferay.portal.service.persistence.GroupFinder;
030    import com.liferay.portal.service.persistence.GroupPersistence;
031    import com.liferay.portal.service.persistence.LayoutFinder;
032    import com.liferay.portal.service.persistence.LayoutPersistence;
033    import com.liferay.portal.service.persistence.LayoutRevisionPersistence;
034    import com.liferay.portal.service.persistence.LayoutSetBranchPersistence;
035    import com.liferay.portal.service.persistence.LayoutSetPersistence;
036    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
037    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
038    import com.liferay.portal.service.persistence.UserFinder;
039    import com.liferay.portal.service.persistence.UserPersistence;
040    import com.liferay.portal.util.PortalUtil;
041    
042    import com.liferay.portlet.exportimport.service.StagingLocalService;
043    import com.liferay.portlet.exportimport.service.persistence.ExportImportConfigurationPersistence;
044    
045    import javax.sql.DataSource;
046    
047    /**
048     * Provides the base implementation for the staging local service.
049     *
050     * <p>
051     * 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.exportimport.service.impl.StagingLocalServiceImpl}.
052     * </p>
053     *
054     * @author Brian Wing Shun Chan
055     * @see com.liferay.portlet.exportimport.service.impl.StagingLocalServiceImpl
056     * @see com.liferay.portlet.exportimport.service.StagingLocalServiceUtil
057     * @generated
058     */
059    @ProviderType
060    public abstract class StagingLocalServiceBaseImpl extends BaseLocalServiceImpl
061            implements StagingLocalService, IdentifiableBean {
062            /*
063             * NOTE FOR DEVELOPERS:
064             *
065             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.exportimport.service.StagingLocalServiceUtil} to access the staging local service.
066             */
067    
068            /**
069             * Returns the export import local service.
070             *
071             * @return the export import local service
072             */
073            public com.liferay.portlet.exportimport.service.ExportImportLocalService getExportImportLocalService() {
074                    return exportImportLocalService;
075            }
076    
077            /**
078             * Sets the export import local service.
079             *
080             * @param exportImportLocalService the export import local service
081             */
082            public void setExportImportLocalService(
083                    com.liferay.portlet.exportimport.service.ExportImportLocalService exportImportLocalService) {
084                    this.exportImportLocalService = exportImportLocalService;
085            }
086    
087            /**
088             * Returns the export import remote service.
089             *
090             * @return the export import remote service
091             */
092            public com.liferay.portlet.exportimport.service.ExportImportService getExportImportService() {
093                    return exportImportService;
094            }
095    
096            /**
097             * Sets the export import remote service.
098             *
099             * @param exportImportService the export import remote service
100             */
101            public void setExportImportService(
102                    com.liferay.portlet.exportimport.service.ExportImportService exportImportService) {
103                    this.exportImportService = exportImportService;
104            }
105    
106            /**
107             * Returns the export import configuration local service.
108             *
109             * @return the export import configuration local service
110             */
111            public com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService getExportImportConfigurationLocalService() {
112                    return exportImportConfigurationLocalService;
113            }
114    
115            /**
116             * Sets the export import configuration local service.
117             *
118             * @param exportImportConfigurationLocalService the export import configuration local service
119             */
120            public void setExportImportConfigurationLocalService(
121                    com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService) {
122                    this.exportImportConfigurationLocalService = exportImportConfigurationLocalService;
123            }
124    
125            /**
126             * Returns the export import configuration remote service.
127             *
128             * @return the export import configuration remote service
129             */
130            public com.liferay.portlet.exportimport.service.ExportImportConfigurationService getExportImportConfigurationService() {
131                    return exportImportConfigurationService;
132            }
133    
134            /**
135             * Sets the export import configuration remote service.
136             *
137             * @param exportImportConfigurationService the export import configuration remote service
138             */
139            public void setExportImportConfigurationService(
140                    com.liferay.portlet.exportimport.service.ExportImportConfigurationService exportImportConfigurationService) {
141                    this.exportImportConfigurationService = exportImportConfigurationService;
142            }
143    
144            /**
145             * Returns the export import configuration persistence.
146             *
147             * @return the export import configuration persistence
148             */
149            public ExportImportConfigurationPersistence getExportImportConfigurationPersistence() {
150                    return exportImportConfigurationPersistence;
151            }
152    
153            /**
154             * Sets the export import configuration persistence.
155             *
156             * @param exportImportConfigurationPersistence the export import configuration persistence
157             */
158            public void setExportImportConfigurationPersistence(
159                    ExportImportConfigurationPersistence exportImportConfigurationPersistence) {
160                    this.exportImportConfigurationPersistence = exportImportConfigurationPersistence;
161            }
162    
163            /**
164             * Returns the staging local service.
165             *
166             * @return the staging local service
167             */
168            public StagingLocalService getStagingLocalService() {
169                    return stagingLocalService;
170            }
171    
172            /**
173             * Sets the staging local service.
174             *
175             * @param stagingLocalService the staging local service
176             */
177            public void setStagingLocalService(StagingLocalService stagingLocalService) {
178                    this.stagingLocalService = stagingLocalService;
179            }
180    
181            /**
182             * Returns the staging remote service.
183             *
184             * @return the staging remote service
185             */
186            public com.liferay.portlet.exportimport.service.StagingService getStagingService() {
187                    return stagingService;
188            }
189    
190            /**
191             * Sets the staging remote service.
192             *
193             * @param stagingService the staging remote service
194             */
195            public void setStagingService(
196                    com.liferay.portlet.exportimport.service.StagingService stagingService) {
197                    this.stagingService = stagingService;
198            }
199    
200            /**
201             * Returns the counter local service.
202             *
203             * @return the counter local service
204             */
205            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
206                    return counterLocalService;
207            }
208    
209            /**
210             * Sets the counter local service.
211             *
212             * @param counterLocalService the counter local service
213             */
214            public void setCounterLocalService(
215                    com.liferay.counter.service.CounterLocalService counterLocalService) {
216                    this.counterLocalService = counterLocalService;
217            }
218    
219            /**
220             * Returns the class name local service.
221             *
222             * @return the class name local service
223             */
224            public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
225                    return classNameLocalService;
226            }
227    
228            /**
229             * Sets the class name local service.
230             *
231             * @param classNameLocalService the class name local service
232             */
233            public void setClassNameLocalService(
234                    com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
235                    this.classNameLocalService = classNameLocalService;
236            }
237    
238            /**
239             * Returns the class name remote service.
240             *
241             * @return the class name remote service
242             */
243            public com.liferay.portal.service.ClassNameService getClassNameService() {
244                    return classNameService;
245            }
246    
247            /**
248             * Sets the class name remote service.
249             *
250             * @param classNameService the class name remote service
251             */
252            public void setClassNameService(
253                    com.liferay.portal.service.ClassNameService classNameService) {
254                    this.classNameService = classNameService;
255            }
256    
257            /**
258             * Returns the class name persistence.
259             *
260             * @return the class name persistence
261             */
262            public ClassNamePersistence getClassNamePersistence() {
263                    return classNamePersistence;
264            }
265    
266            /**
267             * Sets the class name persistence.
268             *
269             * @param classNamePersistence the class name persistence
270             */
271            public void setClassNamePersistence(
272                    ClassNamePersistence classNamePersistence) {
273                    this.classNamePersistence = classNamePersistence;
274            }
275    
276            /**
277             * Returns the group local service.
278             *
279             * @return the group local service
280             */
281            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
282                    return groupLocalService;
283            }
284    
285            /**
286             * Sets the group local service.
287             *
288             * @param groupLocalService the group local service
289             */
290            public void setGroupLocalService(
291                    com.liferay.portal.service.GroupLocalService groupLocalService) {
292                    this.groupLocalService = groupLocalService;
293            }
294    
295            /**
296             * Returns the group remote service.
297             *
298             * @return the group remote service
299             */
300            public com.liferay.portal.service.GroupService getGroupService() {
301                    return groupService;
302            }
303    
304            /**
305             * Sets the group remote service.
306             *
307             * @param groupService the group remote service
308             */
309            public void setGroupService(
310                    com.liferay.portal.service.GroupService groupService) {
311                    this.groupService = groupService;
312            }
313    
314            /**
315             * Returns the group persistence.
316             *
317             * @return the group persistence
318             */
319            public GroupPersistence getGroupPersistence() {
320                    return groupPersistence;
321            }
322    
323            /**
324             * Sets the group persistence.
325             *
326             * @param groupPersistence the group persistence
327             */
328            public void setGroupPersistence(GroupPersistence groupPersistence) {
329                    this.groupPersistence = groupPersistence;
330            }
331    
332            /**
333             * Returns the group finder.
334             *
335             * @return the group finder
336             */
337            public GroupFinder getGroupFinder() {
338                    return groupFinder;
339            }
340    
341            /**
342             * Sets the group finder.
343             *
344             * @param groupFinder the group finder
345             */
346            public void setGroupFinder(GroupFinder groupFinder) {
347                    this.groupFinder = groupFinder;
348            }
349    
350            /**
351             * Returns the layout local service.
352             *
353             * @return the layout local service
354             */
355            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
356                    return layoutLocalService;
357            }
358    
359            /**
360             * Sets the layout local service.
361             *
362             * @param layoutLocalService the layout local service
363             */
364            public void setLayoutLocalService(
365                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
366                    this.layoutLocalService = layoutLocalService;
367            }
368    
369            /**
370             * Returns the layout remote service.
371             *
372             * @return the layout remote service
373             */
374            public com.liferay.portal.service.LayoutService getLayoutService() {
375                    return layoutService;
376            }
377    
378            /**
379             * Sets the layout remote service.
380             *
381             * @param layoutService the layout remote service
382             */
383            public void setLayoutService(
384                    com.liferay.portal.service.LayoutService layoutService) {
385                    this.layoutService = layoutService;
386            }
387    
388            /**
389             * Returns the layout persistence.
390             *
391             * @return the layout persistence
392             */
393            public LayoutPersistence getLayoutPersistence() {
394                    return layoutPersistence;
395            }
396    
397            /**
398             * Sets the layout persistence.
399             *
400             * @param layoutPersistence the layout persistence
401             */
402            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
403                    this.layoutPersistence = layoutPersistence;
404            }
405    
406            /**
407             * Returns the layout finder.
408             *
409             * @return the layout finder
410             */
411            public LayoutFinder getLayoutFinder() {
412                    return layoutFinder;
413            }
414    
415            /**
416             * Sets the layout finder.
417             *
418             * @param layoutFinder the layout finder
419             */
420            public void setLayoutFinder(LayoutFinder layoutFinder) {
421                    this.layoutFinder = layoutFinder;
422            }
423    
424            /**
425             * Returns the layout revision local service.
426             *
427             * @return the layout revision local service
428             */
429            public com.liferay.portal.service.LayoutRevisionLocalService getLayoutRevisionLocalService() {
430                    return layoutRevisionLocalService;
431            }
432    
433            /**
434             * Sets the layout revision local service.
435             *
436             * @param layoutRevisionLocalService the layout revision local service
437             */
438            public void setLayoutRevisionLocalService(
439                    com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService) {
440                    this.layoutRevisionLocalService = layoutRevisionLocalService;
441            }
442    
443            /**
444             * Returns the layout revision remote service.
445             *
446             * @return the layout revision remote service
447             */
448            public com.liferay.portal.service.LayoutRevisionService getLayoutRevisionService() {
449                    return layoutRevisionService;
450            }
451    
452            /**
453             * Sets the layout revision remote service.
454             *
455             * @param layoutRevisionService the layout revision remote service
456             */
457            public void setLayoutRevisionService(
458                    com.liferay.portal.service.LayoutRevisionService layoutRevisionService) {
459                    this.layoutRevisionService = layoutRevisionService;
460            }
461    
462            /**
463             * Returns the layout revision persistence.
464             *
465             * @return the layout revision persistence
466             */
467            public LayoutRevisionPersistence getLayoutRevisionPersistence() {
468                    return layoutRevisionPersistence;
469            }
470    
471            /**
472             * Sets the layout revision persistence.
473             *
474             * @param layoutRevisionPersistence the layout revision persistence
475             */
476            public void setLayoutRevisionPersistence(
477                    LayoutRevisionPersistence layoutRevisionPersistence) {
478                    this.layoutRevisionPersistence = layoutRevisionPersistence;
479            }
480    
481            /**
482             * Returns the layout set local service.
483             *
484             * @return the layout set local service
485             */
486            public com.liferay.portal.service.LayoutSetLocalService getLayoutSetLocalService() {
487                    return layoutSetLocalService;
488            }
489    
490            /**
491             * Sets the layout set local service.
492             *
493             * @param layoutSetLocalService the layout set local service
494             */
495            public void setLayoutSetLocalService(
496                    com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService) {
497                    this.layoutSetLocalService = layoutSetLocalService;
498            }
499    
500            /**
501             * Returns the layout set remote service.
502             *
503             * @return the layout set remote service
504             */
505            public com.liferay.portal.service.LayoutSetService getLayoutSetService() {
506                    return layoutSetService;
507            }
508    
509            /**
510             * Sets the layout set remote service.
511             *
512             * @param layoutSetService the layout set remote service
513             */
514            public void setLayoutSetService(
515                    com.liferay.portal.service.LayoutSetService layoutSetService) {
516                    this.layoutSetService = layoutSetService;
517            }
518    
519            /**
520             * Returns the layout set persistence.
521             *
522             * @return the layout set persistence
523             */
524            public LayoutSetPersistence getLayoutSetPersistence() {
525                    return layoutSetPersistence;
526            }
527    
528            /**
529             * Sets the layout set persistence.
530             *
531             * @param layoutSetPersistence the layout set persistence
532             */
533            public void setLayoutSetPersistence(
534                    LayoutSetPersistence layoutSetPersistence) {
535                    this.layoutSetPersistence = layoutSetPersistence;
536            }
537    
538            /**
539             * Returns the layout set branch local service.
540             *
541             * @return the layout set branch local service
542             */
543            public com.liferay.portal.service.LayoutSetBranchLocalService getLayoutSetBranchLocalService() {
544                    return layoutSetBranchLocalService;
545            }
546    
547            /**
548             * Sets the layout set branch local service.
549             *
550             * @param layoutSetBranchLocalService the layout set branch local service
551             */
552            public void setLayoutSetBranchLocalService(
553                    com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService) {
554                    this.layoutSetBranchLocalService = layoutSetBranchLocalService;
555            }
556    
557            /**
558             * Returns the layout set branch remote service.
559             *
560             * @return the layout set branch remote service
561             */
562            public com.liferay.portal.service.LayoutSetBranchService getLayoutSetBranchService() {
563                    return layoutSetBranchService;
564            }
565    
566            /**
567             * Sets the layout set branch remote service.
568             *
569             * @param layoutSetBranchService the layout set branch remote service
570             */
571            public void setLayoutSetBranchService(
572                    com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService) {
573                    this.layoutSetBranchService = layoutSetBranchService;
574            }
575    
576            /**
577             * Returns the layout set branch persistence.
578             *
579             * @return the layout set branch persistence
580             */
581            public LayoutSetBranchPersistence getLayoutSetBranchPersistence() {
582                    return layoutSetBranchPersistence;
583            }
584    
585            /**
586             * Sets the layout set branch persistence.
587             *
588             * @param layoutSetBranchPersistence the layout set branch persistence
589             */
590            public void setLayoutSetBranchPersistence(
591                    LayoutSetBranchPersistence layoutSetBranchPersistence) {
592                    this.layoutSetBranchPersistence = layoutSetBranchPersistence;
593            }
594    
595            /**
596             * Returns the portlet preferences local service.
597             *
598             * @return the portlet preferences local service
599             */
600            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
601                    return portletPreferencesLocalService;
602            }
603    
604            /**
605             * Sets the portlet preferences local service.
606             *
607             * @param portletPreferencesLocalService the portlet preferences local service
608             */
609            public void setPortletPreferencesLocalService(
610                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
611                    this.portletPreferencesLocalService = portletPreferencesLocalService;
612            }
613    
614            /**
615             * Returns the portlet preferences remote service.
616             *
617             * @return the portlet preferences remote service
618             */
619            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
620                    return portletPreferencesService;
621            }
622    
623            /**
624             * Sets the portlet preferences remote service.
625             *
626             * @param portletPreferencesService the portlet preferences remote service
627             */
628            public void setPortletPreferencesService(
629                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
630                    this.portletPreferencesService = portletPreferencesService;
631            }
632    
633            /**
634             * Returns the portlet preferences persistence.
635             *
636             * @return the portlet preferences persistence
637             */
638            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
639                    return portletPreferencesPersistence;
640            }
641    
642            /**
643             * Sets the portlet preferences persistence.
644             *
645             * @param portletPreferencesPersistence the portlet preferences persistence
646             */
647            public void setPortletPreferencesPersistence(
648                    PortletPreferencesPersistence portletPreferencesPersistence) {
649                    this.portletPreferencesPersistence = portletPreferencesPersistence;
650            }
651    
652            /**
653             * Returns the portlet preferences finder.
654             *
655             * @return the portlet preferences finder
656             */
657            public PortletPreferencesFinder getPortletPreferencesFinder() {
658                    return portletPreferencesFinder;
659            }
660    
661            /**
662             * Sets the portlet preferences finder.
663             *
664             * @param portletPreferencesFinder the portlet preferences finder
665             */
666            public void setPortletPreferencesFinder(
667                    PortletPreferencesFinder portletPreferencesFinder) {
668                    this.portletPreferencesFinder = portletPreferencesFinder;
669            }
670    
671            /**
672             * Returns the resource local service.
673             *
674             * @return the resource local service
675             */
676            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
677                    return resourceLocalService;
678            }
679    
680            /**
681             * Sets the resource local service.
682             *
683             * @param resourceLocalService the resource local service
684             */
685            public void setResourceLocalService(
686                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
687                    this.resourceLocalService = resourceLocalService;
688            }
689    
690            /**
691             * Returns the user local service.
692             *
693             * @return the user local service
694             */
695            public com.liferay.portal.service.UserLocalService getUserLocalService() {
696                    return userLocalService;
697            }
698    
699            /**
700             * Sets the user local service.
701             *
702             * @param userLocalService the user local service
703             */
704            public void setUserLocalService(
705                    com.liferay.portal.service.UserLocalService userLocalService) {
706                    this.userLocalService = userLocalService;
707            }
708    
709            /**
710             * Returns the user remote service.
711             *
712             * @return the user remote service
713             */
714            public com.liferay.portal.service.UserService getUserService() {
715                    return userService;
716            }
717    
718            /**
719             * Sets the user remote service.
720             *
721             * @param userService the user remote service
722             */
723            public void setUserService(
724                    com.liferay.portal.service.UserService userService) {
725                    this.userService = userService;
726            }
727    
728            /**
729             * Returns the user persistence.
730             *
731             * @return the user persistence
732             */
733            public UserPersistence getUserPersistence() {
734                    return userPersistence;
735            }
736    
737            /**
738             * Sets the user persistence.
739             *
740             * @param userPersistence the user persistence
741             */
742            public void setUserPersistence(UserPersistence userPersistence) {
743                    this.userPersistence = userPersistence;
744            }
745    
746            /**
747             * Returns the user finder.
748             *
749             * @return the user finder
750             */
751            public UserFinder getUserFinder() {
752                    return userFinder;
753            }
754    
755            /**
756             * Sets the user finder.
757             *
758             * @param userFinder the user finder
759             */
760            public void setUserFinder(UserFinder userFinder) {
761                    this.userFinder = userFinder;
762            }
763    
764            public void afterPropertiesSet() {
765            }
766    
767            public void destroy() {
768            }
769    
770            /**
771             * Returns the Spring bean ID for this bean.
772             *
773             * @return the Spring bean ID for this bean
774             */
775            @Override
776            public String getBeanIdentifier() {
777                    return _beanIdentifier;
778            }
779    
780            /**
781             * Sets the Spring bean ID for this bean.
782             *
783             * @param beanIdentifier the Spring bean ID for this bean
784             */
785            @Override
786            public void setBeanIdentifier(String beanIdentifier) {
787                    _beanIdentifier = beanIdentifier;
788            }
789    
790            /**
791             * Performs a SQL query.
792             *
793             * @param sql the sql query
794             */
795            protected void runSQL(String sql) {
796                    try {
797                            DataSource dataSource = InfrastructureUtil.getDataSource();
798    
799                            DB db = DBFactoryUtil.getDB();
800    
801                            sql = db.buildSQL(sql);
802                            sql = PortalUtil.transformSQL(sql);
803    
804                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
805                                            sql, new int[0]);
806    
807                            sqlUpdate.update();
808                    }
809                    catch (Exception e) {
810                            throw new SystemException(e);
811                    }
812            }
813    
814            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportLocalService.class)
815            protected com.liferay.portlet.exportimport.service.ExportImportLocalService exportImportLocalService;
816            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportService.class)
817            protected com.liferay.portlet.exportimport.service.ExportImportService exportImportService;
818            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService.class)
819            protected com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService;
820            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportConfigurationService.class)
821            protected com.liferay.portlet.exportimport.service.ExportImportConfigurationService exportImportConfigurationService;
822            @BeanReference(type = ExportImportConfigurationPersistence.class)
823            protected ExportImportConfigurationPersistence exportImportConfigurationPersistence;
824            @BeanReference(type = com.liferay.portlet.exportimport.service.StagingLocalService.class)
825            protected StagingLocalService stagingLocalService;
826            @BeanReference(type = com.liferay.portlet.exportimport.service.StagingService.class)
827            protected com.liferay.portlet.exportimport.service.StagingService stagingService;
828            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
829            protected com.liferay.counter.service.CounterLocalService counterLocalService;
830            @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
831            protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
832            @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
833            protected com.liferay.portal.service.ClassNameService classNameService;
834            @BeanReference(type = ClassNamePersistence.class)
835            protected ClassNamePersistence classNamePersistence;
836            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
837            protected com.liferay.portal.service.GroupLocalService groupLocalService;
838            @BeanReference(type = com.liferay.portal.service.GroupService.class)
839            protected com.liferay.portal.service.GroupService groupService;
840            @BeanReference(type = GroupPersistence.class)
841            protected GroupPersistence groupPersistence;
842            @BeanReference(type = GroupFinder.class)
843            protected GroupFinder groupFinder;
844            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
845            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
846            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
847            protected com.liferay.portal.service.LayoutService layoutService;
848            @BeanReference(type = LayoutPersistence.class)
849            protected LayoutPersistence layoutPersistence;
850            @BeanReference(type = LayoutFinder.class)
851            protected LayoutFinder layoutFinder;
852            @BeanReference(type = com.liferay.portal.service.LayoutRevisionLocalService.class)
853            protected com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService;
854            @BeanReference(type = com.liferay.portal.service.LayoutRevisionService.class)
855            protected com.liferay.portal.service.LayoutRevisionService layoutRevisionService;
856            @BeanReference(type = LayoutRevisionPersistence.class)
857            protected LayoutRevisionPersistence layoutRevisionPersistence;
858            @BeanReference(type = com.liferay.portal.service.LayoutSetLocalService.class)
859            protected com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService;
860            @BeanReference(type = com.liferay.portal.service.LayoutSetService.class)
861            protected com.liferay.portal.service.LayoutSetService layoutSetService;
862            @BeanReference(type = LayoutSetPersistence.class)
863            protected LayoutSetPersistence layoutSetPersistence;
864            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchLocalService.class)
865            protected com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService;
866            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchService.class)
867            protected com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService;
868            @BeanReference(type = LayoutSetBranchPersistence.class)
869            protected LayoutSetBranchPersistence layoutSetBranchPersistence;
870            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
871            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
872            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
873            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
874            @BeanReference(type = PortletPreferencesPersistence.class)
875            protected PortletPreferencesPersistence portletPreferencesPersistence;
876            @BeanReference(type = PortletPreferencesFinder.class)
877            protected PortletPreferencesFinder portletPreferencesFinder;
878            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
879            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
880            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
881            protected com.liferay.portal.service.UserLocalService userLocalService;
882            @BeanReference(type = com.liferay.portal.service.UserService.class)
883            protected com.liferay.portal.service.UserService userService;
884            @BeanReference(type = UserPersistence.class)
885            protected UserPersistence userPersistence;
886            @BeanReference(type = UserFinder.class)
887            protected UserFinder userFinder;
888            private String _beanIdentifier;
889    }