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