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