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