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