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