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