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.asset.kernel.service.persistence.AssetCategoryFinder;
018    import com.liferay.asset.kernel.service.persistence.AssetCategoryPersistence;
019    import com.liferay.asset.kernel.service.persistence.AssetEntryFinder;
020    import com.liferay.asset.kernel.service.persistence.AssetEntryPersistence;
021    import com.liferay.asset.kernel.service.persistence.AssetTagFinder;
022    import com.liferay.asset.kernel.service.persistence.AssetTagPersistence;
023    import com.liferay.asset.kernel.service.persistence.AssetVocabularyFinder;
024    import com.liferay.asset.kernel.service.persistence.AssetVocabularyPersistence;
025    
026    import com.liferay.expando.kernel.service.persistence.ExpandoRowPersistence;
027    
028    import com.liferay.exportimport.kernel.service.persistence.ExportImportConfigurationFinder;
029    import com.liferay.exportimport.kernel.service.persistence.ExportImportConfigurationPersistence;
030    
031    import com.liferay.portal.kernel.bean.BeanReference;
032    import com.liferay.portal.kernel.dao.db.DB;
033    import com.liferay.portal.kernel.dao.db.DBManagerUtil;
034    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
035    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
036    import com.liferay.portal.kernel.exception.SystemException;
037    import com.liferay.portal.kernel.model.Group;
038    import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService;
039    import com.liferay.portal.kernel.service.BaseServiceImpl;
040    import com.liferay.portal.kernel.service.GroupService;
041    import com.liferay.portal.kernel.service.persistence.AccountPersistence;
042    import com.liferay.portal.kernel.service.persistence.ClassNamePersistence;
043    import com.liferay.portal.kernel.service.persistence.CompanyPersistence;
044    import com.liferay.portal.kernel.service.persistence.GroupFinder;
045    import com.liferay.portal.kernel.service.persistence.GroupPersistence;
046    import com.liferay.portal.kernel.service.persistence.LayoutFinder;
047    import com.liferay.portal.kernel.service.persistence.LayoutPersistence;
048    import com.liferay.portal.kernel.service.persistence.LayoutPrototypePersistence;
049    import com.liferay.portal.kernel.service.persistence.LayoutSetBranchPersistence;
050    import com.liferay.portal.kernel.service.persistence.LayoutSetPersistence;
051    import com.liferay.portal.kernel.service.persistence.LayoutSetPrototypePersistence;
052    import com.liferay.portal.kernel.service.persistence.MembershipRequestPersistence;
053    import com.liferay.portal.kernel.service.persistence.OrganizationFinder;
054    import com.liferay.portal.kernel.service.persistence.OrganizationPersistence;
055    import com.liferay.portal.kernel.service.persistence.PortletPersistence;
056    import com.liferay.portal.kernel.service.persistence.PortletPreferencesFinder;
057    import com.liferay.portal.kernel.service.persistence.PortletPreferencesPersistence;
058    import com.liferay.portal.kernel.service.persistence.ResourceActionPersistence;
059    import com.liferay.portal.kernel.service.persistence.ResourceBlockFinder;
060    import com.liferay.portal.kernel.service.persistence.ResourceBlockPersistence;
061    import com.liferay.portal.kernel.service.persistence.ResourcePermissionFinder;
062    import com.liferay.portal.kernel.service.persistence.ResourcePermissionPersistence;
063    import com.liferay.portal.kernel.service.persistence.ResourceTypePermissionFinder;
064    import com.liferay.portal.kernel.service.persistence.ResourceTypePermissionPersistence;
065    import com.liferay.portal.kernel.service.persistence.RoleFinder;
066    import com.liferay.portal.kernel.service.persistence.RolePersistence;
067    import com.liferay.portal.kernel.service.persistence.SubscriptionPersistence;
068    import com.liferay.portal.kernel.service.persistence.TeamFinder;
069    import com.liferay.portal.kernel.service.persistence.TeamPersistence;
070    import com.liferay.portal.kernel.service.persistence.UserFinder;
071    import com.liferay.portal.kernel.service.persistence.UserGroupFinder;
072    import com.liferay.portal.kernel.service.persistence.UserGroupGroupRoleFinder;
073    import com.liferay.portal.kernel.service.persistence.UserGroupGroupRolePersistence;
074    import com.liferay.portal.kernel.service.persistence.UserGroupPersistence;
075    import com.liferay.portal.kernel.service.persistence.UserGroupRoleFinder;
076    import com.liferay.portal.kernel.service.persistence.UserGroupRolePersistence;
077    import com.liferay.portal.kernel.service.persistence.UserPersistence;
078    import com.liferay.portal.kernel.service.persistence.WorkflowDefinitionLinkPersistence;
079    import com.liferay.portal.kernel.util.PortalUtil;
080    
081    import com.liferay.social.kernel.service.persistence.SocialActivityFinder;
082    import com.liferay.social.kernel.service.persistence.SocialActivityPersistence;
083    import com.liferay.social.kernel.service.persistence.SocialActivitySettingPersistence;
084    import com.liferay.social.kernel.service.persistence.SocialRequestPersistence;
085    
086    import com.liferay.trash.kernel.service.persistence.TrashEntryPersistence;
087    
088    import javax.sql.DataSource;
089    
090    /**
091     * Provides the base implementation for the group remote service.
092     *
093     * <p>
094     * 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.GroupServiceImpl}.
095     * </p>
096     *
097     * @author Brian Wing Shun Chan
098     * @see com.liferay.portal.service.impl.GroupServiceImpl
099     * @see com.liferay.portal.kernel.service.GroupServiceUtil
100     * @generated
101     */
102    public abstract class GroupServiceBaseImpl extends BaseServiceImpl
103            implements GroupService, IdentifiableOSGiService {
104            /*
105             * NOTE FOR DEVELOPERS:
106             *
107             * Never modify or reference this class directly. Always use {@link com.liferay.portal.kernel.service.GroupServiceUtil} to access the group remote service.
108             */
109    
110            /**
111             * Returns the group local service.
112             *
113             * @return the group local service
114             */
115            public com.liferay.portal.kernel.service.GroupLocalService getGroupLocalService() {
116                    return groupLocalService;
117            }
118    
119            /**
120             * Sets the group local service.
121             *
122             * @param groupLocalService the group local service
123             */
124            public void setGroupLocalService(
125                    com.liferay.portal.kernel.service.GroupLocalService groupLocalService) {
126                    this.groupLocalService = groupLocalService;
127            }
128    
129            /**
130             * Returns the group remote service.
131             *
132             * @return the group remote service
133             */
134            public GroupService getGroupService() {
135                    return groupService;
136            }
137    
138            /**
139             * Sets the group remote service.
140             *
141             * @param groupService the group remote service
142             */
143            public void setGroupService(GroupService groupService) {
144                    this.groupService = groupService;
145            }
146    
147            /**
148             * Returns the group persistence.
149             *
150             * @return the group persistence
151             */
152            public GroupPersistence getGroupPersistence() {
153                    return groupPersistence;
154            }
155    
156            /**
157             * Sets the group persistence.
158             *
159             * @param groupPersistence the group persistence
160             */
161            public void setGroupPersistence(GroupPersistence groupPersistence) {
162                    this.groupPersistence = groupPersistence;
163            }
164    
165            /**
166             * Returns the group finder.
167             *
168             * @return the group finder
169             */
170            public GroupFinder getGroupFinder() {
171                    return groupFinder;
172            }
173    
174            /**
175             * Sets the group finder.
176             *
177             * @param groupFinder the group finder
178             */
179            public void setGroupFinder(GroupFinder groupFinder) {
180                    this.groupFinder = groupFinder;
181            }
182    
183            /**
184             * Returns the counter local service.
185             *
186             * @return the counter local service
187             */
188            public com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService() {
189                    return counterLocalService;
190            }
191    
192            /**
193             * Sets the counter local service.
194             *
195             * @param counterLocalService the counter local service
196             */
197            public void setCounterLocalService(
198                    com.liferay.counter.kernel.service.CounterLocalService counterLocalService) {
199                    this.counterLocalService = counterLocalService;
200            }
201    
202            /**
203             * Returns the account local service.
204             *
205             * @return the account local service
206             */
207            public com.liferay.portal.kernel.service.AccountLocalService getAccountLocalService() {
208                    return accountLocalService;
209            }
210    
211            /**
212             * Sets the account local service.
213             *
214             * @param accountLocalService the account local service
215             */
216            public void setAccountLocalService(
217                    com.liferay.portal.kernel.service.AccountLocalService accountLocalService) {
218                    this.accountLocalService = accountLocalService;
219            }
220    
221            /**
222             * Returns the account remote service.
223             *
224             * @return the account remote service
225             */
226            public com.liferay.portal.kernel.service.AccountService getAccountService() {
227                    return accountService;
228            }
229    
230            /**
231             * Sets the account remote service.
232             *
233             * @param accountService the account remote service
234             */
235            public void setAccountService(
236                    com.liferay.portal.kernel.service.AccountService accountService) {
237                    this.accountService = accountService;
238            }
239    
240            /**
241             * Returns the account persistence.
242             *
243             * @return the account persistence
244             */
245            public AccountPersistence getAccountPersistence() {
246                    return accountPersistence;
247            }
248    
249            /**
250             * Sets the account persistence.
251             *
252             * @param accountPersistence the account persistence
253             */
254            public void setAccountPersistence(AccountPersistence accountPersistence) {
255                    this.accountPersistence = accountPersistence;
256            }
257    
258            /**
259             * Returns the class name local service.
260             *
261             * @return the class name local service
262             */
263            public com.liferay.portal.kernel.service.ClassNameLocalService getClassNameLocalService() {
264                    return classNameLocalService;
265            }
266    
267            /**
268             * Sets the class name local service.
269             *
270             * @param classNameLocalService the class name local service
271             */
272            public void setClassNameLocalService(
273                    com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService) {
274                    this.classNameLocalService = classNameLocalService;
275            }
276    
277            /**
278             * Returns the class name remote service.
279             *
280             * @return the class name remote service
281             */
282            public com.liferay.portal.kernel.service.ClassNameService getClassNameService() {
283                    return classNameService;
284            }
285    
286            /**
287             * Sets the class name remote service.
288             *
289             * @param classNameService the class name remote service
290             */
291            public void setClassNameService(
292                    com.liferay.portal.kernel.service.ClassNameService classNameService) {
293                    this.classNameService = classNameService;
294            }
295    
296            /**
297             * Returns the class name persistence.
298             *
299             * @return the class name persistence
300             */
301            public ClassNamePersistence getClassNamePersistence() {
302                    return classNamePersistence;
303            }
304    
305            /**
306             * Sets the class name persistence.
307             *
308             * @param classNamePersistence the class name persistence
309             */
310            public void setClassNamePersistence(
311                    ClassNamePersistence classNamePersistence) {
312                    this.classNamePersistence = classNamePersistence;
313            }
314    
315            /**
316             * Returns the company local service.
317             *
318             * @return the company local service
319             */
320            public com.liferay.portal.kernel.service.CompanyLocalService getCompanyLocalService() {
321                    return companyLocalService;
322            }
323    
324            /**
325             * Sets the company local service.
326             *
327             * @param companyLocalService the company local service
328             */
329            public void setCompanyLocalService(
330                    com.liferay.portal.kernel.service.CompanyLocalService companyLocalService) {
331                    this.companyLocalService = companyLocalService;
332            }
333    
334            /**
335             * Returns the company remote service.
336             *
337             * @return the company remote service
338             */
339            public com.liferay.portal.kernel.service.CompanyService getCompanyService() {
340                    return companyService;
341            }
342    
343            /**
344             * Sets the company remote service.
345             *
346             * @param companyService the company remote service
347             */
348            public void setCompanyService(
349                    com.liferay.portal.kernel.service.CompanyService companyService) {
350                    this.companyService = companyService;
351            }
352    
353            /**
354             * Returns the company persistence.
355             *
356             * @return the company persistence
357             */
358            public CompanyPersistence getCompanyPersistence() {
359                    return companyPersistence;
360            }
361    
362            /**
363             * Sets the company persistence.
364             *
365             * @param companyPersistence the company persistence
366             */
367            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
368                    this.companyPersistence = companyPersistence;
369            }
370    
371            /**
372             * Returns the asset category local service.
373             *
374             * @return the asset category local service
375             */
376            public com.liferay.asset.kernel.service.AssetCategoryLocalService getAssetCategoryLocalService() {
377                    return assetCategoryLocalService;
378            }
379    
380            /**
381             * Sets the asset category local service.
382             *
383             * @param assetCategoryLocalService the asset category local service
384             */
385            public void setAssetCategoryLocalService(
386                    com.liferay.asset.kernel.service.AssetCategoryLocalService assetCategoryLocalService) {
387                    this.assetCategoryLocalService = assetCategoryLocalService;
388            }
389    
390            /**
391             * Returns the asset category remote service.
392             *
393             * @return the asset category remote service
394             */
395            public com.liferay.asset.kernel.service.AssetCategoryService getAssetCategoryService() {
396                    return assetCategoryService;
397            }
398    
399            /**
400             * Sets the asset category remote service.
401             *
402             * @param assetCategoryService the asset category remote service
403             */
404            public void setAssetCategoryService(
405                    com.liferay.asset.kernel.service.AssetCategoryService assetCategoryService) {
406                    this.assetCategoryService = assetCategoryService;
407            }
408    
409            /**
410             * Returns the asset category persistence.
411             *
412             * @return the asset category persistence
413             */
414            public AssetCategoryPersistence getAssetCategoryPersistence() {
415                    return assetCategoryPersistence;
416            }
417    
418            /**
419             * Sets the asset category persistence.
420             *
421             * @param assetCategoryPersistence the asset category persistence
422             */
423            public void setAssetCategoryPersistence(
424                    AssetCategoryPersistence assetCategoryPersistence) {
425                    this.assetCategoryPersistence = assetCategoryPersistence;
426            }
427    
428            /**
429             * Returns the asset category finder.
430             *
431             * @return the asset category finder
432             */
433            public AssetCategoryFinder getAssetCategoryFinder() {
434                    return assetCategoryFinder;
435            }
436    
437            /**
438             * Sets the asset category finder.
439             *
440             * @param assetCategoryFinder the asset category finder
441             */
442            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
443                    this.assetCategoryFinder = assetCategoryFinder;
444            }
445    
446            /**
447             * Returns the asset entry local service.
448             *
449             * @return the asset entry local service
450             */
451            public com.liferay.asset.kernel.service.AssetEntryLocalService getAssetEntryLocalService() {
452                    return assetEntryLocalService;
453            }
454    
455            /**
456             * Sets the asset entry local service.
457             *
458             * @param assetEntryLocalService the asset entry local service
459             */
460            public void setAssetEntryLocalService(
461                    com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService) {
462                    this.assetEntryLocalService = assetEntryLocalService;
463            }
464    
465            /**
466             * Returns the asset entry remote service.
467             *
468             * @return the asset entry remote service
469             */
470            public com.liferay.asset.kernel.service.AssetEntryService getAssetEntryService() {
471                    return assetEntryService;
472            }
473    
474            /**
475             * Sets the asset entry remote service.
476             *
477             * @param assetEntryService the asset entry remote service
478             */
479            public void setAssetEntryService(
480                    com.liferay.asset.kernel.service.AssetEntryService assetEntryService) {
481                    this.assetEntryService = assetEntryService;
482            }
483    
484            /**
485             * Returns the asset entry persistence.
486             *
487             * @return the asset entry persistence
488             */
489            public AssetEntryPersistence getAssetEntryPersistence() {
490                    return assetEntryPersistence;
491            }
492    
493            /**
494             * Sets the asset entry persistence.
495             *
496             * @param assetEntryPersistence the asset entry persistence
497             */
498            public void setAssetEntryPersistence(
499                    AssetEntryPersistence assetEntryPersistence) {
500                    this.assetEntryPersistence = assetEntryPersistence;
501            }
502    
503            /**
504             * Returns the asset entry finder.
505             *
506             * @return the asset entry finder
507             */
508            public AssetEntryFinder getAssetEntryFinder() {
509                    return assetEntryFinder;
510            }
511    
512            /**
513             * Sets the asset entry finder.
514             *
515             * @param assetEntryFinder the asset entry finder
516             */
517            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
518                    this.assetEntryFinder = assetEntryFinder;
519            }
520    
521            /**
522             * Returns the asset tag local service.
523             *
524             * @return the asset tag local service
525             */
526            public com.liferay.asset.kernel.service.AssetTagLocalService getAssetTagLocalService() {
527                    return assetTagLocalService;
528            }
529    
530            /**
531             * Sets the asset tag local service.
532             *
533             * @param assetTagLocalService the asset tag local service
534             */
535            public void setAssetTagLocalService(
536                    com.liferay.asset.kernel.service.AssetTagLocalService assetTagLocalService) {
537                    this.assetTagLocalService = assetTagLocalService;
538            }
539    
540            /**
541             * Returns the asset tag remote service.
542             *
543             * @return the asset tag remote service
544             */
545            public com.liferay.asset.kernel.service.AssetTagService getAssetTagService() {
546                    return assetTagService;
547            }
548    
549            /**
550             * Sets the asset tag remote service.
551             *
552             * @param assetTagService the asset tag remote service
553             */
554            public void setAssetTagService(
555                    com.liferay.asset.kernel.service.AssetTagService assetTagService) {
556                    this.assetTagService = assetTagService;
557            }
558    
559            /**
560             * Returns the asset tag persistence.
561             *
562             * @return the asset tag persistence
563             */
564            public AssetTagPersistence getAssetTagPersistence() {
565                    return assetTagPersistence;
566            }
567    
568            /**
569             * Sets the asset tag persistence.
570             *
571             * @param assetTagPersistence the asset tag persistence
572             */
573            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
574                    this.assetTagPersistence = assetTagPersistence;
575            }
576    
577            /**
578             * Returns the asset tag finder.
579             *
580             * @return the asset tag finder
581             */
582            public AssetTagFinder getAssetTagFinder() {
583                    return assetTagFinder;
584            }
585    
586            /**
587             * Sets the asset tag finder.
588             *
589             * @param assetTagFinder the asset tag finder
590             */
591            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
592                    this.assetTagFinder = assetTagFinder;
593            }
594    
595            /**
596             * Returns the asset vocabulary local service.
597             *
598             * @return the asset vocabulary local service
599             */
600            public com.liferay.asset.kernel.service.AssetVocabularyLocalService getAssetVocabularyLocalService() {
601                    return assetVocabularyLocalService;
602            }
603    
604            /**
605             * Sets the asset vocabulary local service.
606             *
607             * @param assetVocabularyLocalService the asset vocabulary local service
608             */
609            public void setAssetVocabularyLocalService(
610                    com.liferay.asset.kernel.service.AssetVocabularyLocalService assetVocabularyLocalService) {
611                    this.assetVocabularyLocalService = assetVocabularyLocalService;
612            }
613    
614            /**
615             * Returns the asset vocabulary remote service.
616             *
617             * @return the asset vocabulary remote service
618             */
619            public com.liferay.asset.kernel.service.AssetVocabularyService getAssetVocabularyService() {
620                    return assetVocabularyService;
621            }
622    
623            /**
624             * Sets the asset vocabulary remote service.
625             *
626             * @param assetVocabularyService the asset vocabulary remote service
627             */
628            public void setAssetVocabularyService(
629                    com.liferay.asset.kernel.service.AssetVocabularyService assetVocabularyService) {
630                    this.assetVocabularyService = assetVocabularyService;
631            }
632    
633            /**
634             * Returns the asset vocabulary persistence.
635             *
636             * @return the asset vocabulary persistence
637             */
638            public AssetVocabularyPersistence getAssetVocabularyPersistence() {
639                    return assetVocabularyPersistence;
640            }
641    
642            /**
643             * Sets the asset vocabulary persistence.
644             *
645             * @param assetVocabularyPersistence the asset vocabulary persistence
646             */
647            public void setAssetVocabularyPersistence(
648                    AssetVocabularyPersistence assetVocabularyPersistence) {
649                    this.assetVocabularyPersistence = assetVocabularyPersistence;
650            }
651    
652            /**
653             * Returns the asset vocabulary finder.
654             *
655             * @return the asset vocabulary finder
656             */
657            public AssetVocabularyFinder getAssetVocabularyFinder() {
658                    return assetVocabularyFinder;
659            }
660    
661            /**
662             * Sets the asset vocabulary finder.
663             *
664             * @param assetVocabularyFinder the asset vocabulary finder
665             */
666            public void setAssetVocabularyFinder(
667                    AssetVocabularyFinder assetVocabularyFinder) {
668                    this.assetVocabularyFinder = assetVocabularyFinder;
669            }
670    
671            /**
672             * Returns the d l app local service.
673             *
674             * @return the d l app local service
675             */
676            public com.liferay.document.library.kernel.service.DLAppLocalService getDLAppLocalService() {
677                    return dlAppLocalService;
678            }
679    
680            /**
681             * Sets the d l app local service.
682             *
683             * @param dlAppLocalService the d l app local service
684             */
685            public void setDLAppLocalService(
686                    com.liferay.document.library.kernel.service.DLAppLocalService dlAppLocalService) {
687                    this.dlAppLocalService = dlAppLocalService;
688            }
689    
690            /**
691             * Returns the d l app remote service.
692             *
693             * @return the d l app remote service
694             */
695            public com.liferay.document.library.kernel.service.DLAppService getDLAppService() {
696                    return dlAppService;
697            }
698    
699            /**
700             * Sets the d l app remote service.
701             *
702             * @param dlAppService the d l app remote service
703             */
704            public void setDLAppService(
705                    com.liferay.document.library.kernel.service.DLAppService dlAppService) {
706                    this.dlAppService = dlAppService;
707            }
708    
709            /**
710             * Returns the expando row local service.
711             *
712             * @return the expando row local service
713             */
714            public com.liferay.expando.kernel.service.ExpandoRowLocalService getExpandoRowLocalService() {
715                    return expandoRowLocalService;
716            }
717    
718            /**
719             * Sets the expando row local service.
720             *
721             * @param expandoRowLocalService the expando row local service
722             */
723            public void setExpandoRowLocalService(
724                    com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService) {
725                    this.expandoRowLocalService = expandoRowLocalService;
726            }
727    
728            /**
729             * Returns the expando row persistence.
730             *
731             * @return the expando row persistence
732             */
733            public ExpandoRowPersistence getExpandoRowPersistence() {
734                    return expandoRowPersistence;
735            }
736    
737            /**
738             * Sets the expando row persistence.
739             *
740             * @param expandoRowPersistence the expando row persistence
741             */
742            public void setExpandoRowPersistence(
743                    ExpandoRowPersistence expandoRowPersistence) {
744                    this.expandoRowPersistence = expandoRowPersistence;
745            }
746    
747            /**
748             * Returns the export import local service.
749             *
750             * @return the export import local service
751             */
752            public com.liferay.exportimport.kernel.service.ExportImportLocalService getExportImportLocalService() {
753                    return exportImportLocalService;
754            }
755    
756            /**
757             * Sets the export import local service.
758             *
759             * @param exportImportLocalService the export import local service
760             */
761            public void setExportImportLocalService(
762                    com.liferay.exportimport.kernel.service.ExportImportLocalService exportImportLocalService) {
763                    this.exportImportLocalService = exportImportLocalService;
764            }
765    
766            /**
767             * Returns the export import remote service.
768             *
769             * @return the export import remote service
770             */
771            public com.liferay.exportimport.kernel.service.ExportImportService getExportImportService() {
772                    return exportImportService;
773            }
774    
775            /**
776             * Sets the export import remote service.
777             *
778             * @param exportImportService the export import remote service
779             */
780            public void setExportImportService(
781                    com.liferay.exportimport.kernel.service.ExportImportService exportImportService) {
782                    this.exportImportService = exportImportService;
783            }
784    
785            /**
786             * Returns the export import configuration local service.
787             *
788             * @return the export import configuration local service
789             */
790            public com.liferay.exportimport.kernel.service.ExportImportConfigurationLocalService getExportImportConfigurationLocalService() {
791                    return exportImportConfigurationLocalService;
792            }
793    
794            /**
795             * Sets the export import configuration local service.
796             *
797             * @param exportImportConfigurationLocalService the export import configuration local service
798             */
799            public void setExportImportConfigurationLocalService(
800                    com.liferay.exportimport.kernel.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService) {
801                    this.exportImportConfigurationLocalService = exportImportConfigurationLocalService;
802            }
803    
804            /**
805             * Returns the export import configuration remote service.
806             *
807             * @return the export import configuration remote service
808             */
809            public com.liferay.exportimport.kernel.service.ExportImportConfigurationService getExportImportConfigurationService() {
810                    return exportImportConfigurationService;
811            }
812    
813            /**
814             * Sets the export import configuration remote service.
815             *
816             * @param exportImportConfigurationService the export import configuration remote service
817             */
818            public void setExportImportConfigurationService(
819                    com.liferay.exportimport.kernel.service.ExportImportConfigurationService exportImportConfigurationService) {
820                    this.exportImportConfigurationService = exportImportConfigurationService;
821            }
822    
823            /**
824             * Returns the export import configuration persistence.
825             *
826             * @return the export import configuration persistence
827             */
828            public ExportImportConfigurationPersistence getExportImportConfigurationPersistence() {
829                    return exportImportConfigurationPersistence;
830            }
831    
832            /**
833             * Sets the export import configuration persistence.
834             *
835             * @param exportImportConfigurationPersistence the export import configuration persistence
836             */
837            public void setExportImportConfigurationPersistence(
838                    ExportImportConfigurationPersistence exportImportConfigurationPersistence) {
839                    this.exportImportConfigurationPersistence = exportImportConfigurationPersistence;
840            }
841    
842            /**
843             * Returns the export import configuration finder.
844             *
845             * @return the export import configuration finder
846             */
847            public ExportImportConfigurationFinder getExportImportConfigurationFinder() {
848                    return exportImportConfigurationFinder;
849            }
850    
851            /**
852             * Sets the export import configuration finder.
853             *
854             * @param exportImportConfigurationFinder the export import configuration finder
855             */
856            public void setExportImportConfigurationFinder(
857                    ExportImportConfigurationFinder exportImportConfigurationFinder) {
858                    this.exportImportConfigurationFinder = exportImportConfigurationFinder;
859            }
860    
861            /**
862             * Returns the staging local service.
863             *
864             * @return the staging local service
865             */
866            public com.liferay.exportimport.kernel.service.StagingLocalService getStagingLocalService() {
867                    return stagingLocalService;
868            }
869    
870            /**
871             * Sets the staging local service.
872             *
873             * @param stagingLocalService the staging local service
874             */
875            public void setStagingLocalService(
876                    com.liferay.exportimport.kernel.service.StagingLocalService stagingLocalService) {
877                    this.stagingLocalService = stagingLocalService;
878            }
879    
880            /**
881             * Returns the staging remote service.
882             *
883             * @return the staging remote service
884             */
885            public com.liferay.exportimport.kernel.service.StagingService getStagingService() {
886                    return stagingService;
887            }
888    
889            /**
890             * Sets the staging remote service.
891             *
892             * @param stagingService the staging remote service
893             */
894            public void setStagingService(
895                    com.liferay.exportimport.kernel.service.StagingService stagingService) {
896                    this.stagingService = stagingService;
897            }
898    
899            /**
900             * Returns the social activity local service.
901             *
902             * @return the social activity local service
903             */
904            public com.liferay.social.kernel.service.SocialActivityLocalService getSocialActivityLocalService() {
905                    return socialActivityLocalService;
906            }
907    
908            /**
909             * Sets the social activity local service.
910             *
911             * @param socialActivityLocalService the social activity local service
912             */
913            public void setSocialActivityLocalService(
914                    com.liferay.social.kernel.service.SocialActivityLocalService socialActivityLocalService) {
915                    this.socialActivityLocalService = socialActivityLocalService;
916            }
917    
918            /**
919             * Returns the social activity remote service.
920             *
921             * @return the social activity remote service
922             */
923            public com.liferay.social.kernel.service.SocialActivityService getSocialActivityService() {
924                    return socialActivityService;
925            }
926    
927            /**
928             * Sets the social activity remote service.
929             *
930             * @param socialActivityService the social activity remote service
931             */
932            public void setSocialActivityService(
933                    com.liferay.social.kernel.service.SocialActivityService socialActivityService) {
934                    this.socialActivityService = socialActivityService;
935            }
936    
937            /**
938             * Returns the social activity persistence.
939             *
940             * @return the social activity persistence
941             */
942            public SocialActivityPersistence getSocialActivityPersistence() {
943                    return socialActivityPersistence;
944            }
945    
946            /**
947             * Sets the social activity persistence.
948             *
949             * @param socialActivityPersistence the social activity persistence
950             */
951            public void setSocialActivityPersistence(
952                    SocialActivityPersistence socialActivityPersistence) {
953                    this.socialActivityPersistence = socialActivityPersistence;
954            }
955    
956            /**
957             * Returns the social activity finder.
958             *
959             * @return the social activity finder
960             */
961            public SocialActivityFinder getSocialActivityFinder() {
962                    return socialActivityFinder;
963            }
964    
965            /**
966             * Sets the social activity finder.
967             *
968             * @param socialActivityFinder the social activity finder
969             */
970            public void setSocialActivityFinder(
971                    SocialActivityFinder socialActivityFinder) {
972                    this.socialActivityFinder = socialActivityFinder;
973            }
974    
975            /**
976             * Returns the social activity setting local service.
977             *
978             * @return the social activity setting local service
979             */
980            public com.liferay.social.kernel.service.SocialActivitySettingLocalService getSocialActivitySettingLocalService() {
981                    return socialActivitySettingLocalService;
982            }
983    
984            /**
985             * Sets the social activity setting local service.
986             *
987             * @param socialActivitySettingLocalService the social activity setting local service
988             */
989            public void setSocialActivitySettingLocalService(
990                    com.liferay.social.kernel.service.SocialActivitySettingLocalService socialActivitySettingLocalService) {
991                    this.socialActivitySettingLocalService = socialActivitySettingLocalService;
992            }
993    
994            /**
995             * Returns the social activity setting remote service.
996             *
997             * @return the social activity setting remote service
998             */
999            public com.liferay.social.kernel.service.SocialActivitySettingService getSocialActivitySettingService() {
1000                    return socialActivitySettingService;
1001            }
1002    
1003            /**
1004             * Sets the social activity setting remote service.
1005             *
1006             * @param socialActivitySettingService the social activity setting remote service
1007             */
1008            public void setSocialActivitySettingService(
1009                    com.liferay.social.kernel.service.SocialActivitySettingService socialActivitySettingService) {
1010                    this.socialActivitySettingService = socialActivitySettingService;
1011            }
1012    
1013            /**
1014             * Returns the social activity setting persistence.
1015             *
1016             * @return the social activity setting persistence
1017             */
1018            public SocialActivitySettingPersistence getSocialActivitySettingPersistence() {
1019                    return socialActivitySettingPersistence;
1020            }
1021    
1022            /**
1023             * Sets the social activity setting persistence.
1024             *
1025             * @param socialActivitySettingPersistence the social activity setting persistence
1026             */
1027            public void setSocialActivitySettingPersistence(
1028                    SocialActivitySettingPersistence socialActivitySettingPersistence) {
1029                    this.socialActivitySettingPersistence = socialActivitySettingPersistence;
1030            }
1031    
1032            /**
1033             * Returns the social request local service.
1034             *
1035             * @return the social request local service
1036             */
1037            public com.liferay.social.kernel.service.SocialRequestLocalService getSocialRequestLocalService() {
1038                    return socialRequestLocalService;
1039            }
1040    
1041            /**
1042             * Sets the social request local service.
1043             *
1044             * @param socialRequestLocalService the social request local service
1045             */
1046            public void setSocialRequestLocalService(
1047                    com.liferay.social.kernel.service.SocialRequestLocalService socialRequestLocalService) {
1048                    this.socialRequestLocalService = socialRequestLocalService;
1049            }
1050    
1051            /**
1052             * Returns the social request remote service.
1053             *
1054             * @return the social request remote service
1055             */
1056            public com.liferay.social.kernel.service.SocialRequestService getSocialRequestService() {
1057                    return socialRequestService;
1058            }
1059    
1060            /**
1061             * Sets the social request remote service.
1062             *
1063             * @param socialRequestService the social request remote service
1064             */
1065            public void setSocialRequestService(
1066                    com.liferay.social.kernel.service.SocialRequestService socialRequestService) {
1067                    this.socialRequestService = socialRequestService;
1068            }
1069    
1070            /**
1071             * Returns the social request persistence.
1072             *
1073             * @return the social request persistence
1074             */
1075            public SocialRequestPersistence getSocialRequestPersistence() {
1076                    return socialRequestPersistence;
1077            }
1078    
1079            /**
1080             * Sets the social request persistence.
1081             *
1082             * @param socialRequestPersistence the social request persistence
1083             */
1084            public void setSocialRequestPersistence(
1085                    SocialRequestPersistence socialRequestPersistence) {
1086                    this.socialRequestPersistence = socialRequestPersistence;
1087            }
1088    
1089            /**
1090             * Returns the trash entry local service.
1091             *
1092             * @return the trash entry local service
1093             */
1094            public com.liferay.trash.kernel.service.TrashEntryLocalService getTrashEntryLocalService() {
1095                    return trashEntryLocalService;
1096            }
1097    
1098            /**
1099             * Sets the trash entry local service.
1100             *
1101             * @param trashEntryLocalService the trash entry local service
1102             */
1103            public void setTrashEntryLocalService(
1104                    com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService) {
1105                    this.trashEntryLocalService = trashEntryLocalService;
1106            }
1107    
1108            /**
1109             * Returns the trash entry remote service.
1110             *
1111             * @return the trash entry remote service
1112             */
1113            public com.liferay.trash.kernel.service.TrashEntryService getTrashEntryService() {
1114                    return trashEntryService;
1115            }
1116    
1117            /**
1118             * Sets the trash entry remote service.
1119             *
1120             * @param trashEntryService the trash entry remote service
1121             */
1122            public void setTrashEntryService(
1123                    com.liferay.trash.kernel.service.TrashEntryService trashEntryService) {
1124                    this.trashEntryService = trashEntryService;
1125            }
1126    
1127            /**
1128             * Returns the trash entry persistence.
1129             *
1130             * @return the trash entry persistence
1131             */
1132            public TrashEntryPersistence getTrashEntryPersistence() {
1133                    return trashEntryPersistence;
1134            }
1135    
1136            /**
1137             * Sets the trash entry persistence.
1138             *
1139             * @param trashEntryPersistence the trash entry persistence
1140             */
1141            public void setTrashEntryPersistence(
1142                    TrashEntryPersistence trashEntryPersistence) {
1143                    this.trashEntryPersistence = trashEntryPersistence;
1144            }
1145    
1146            /**
1147             * Returns the layout local service.
1148             *
1149             * @return the layout local service
1150             */
1151            public com.liferay.portal.kernel.service.LayoutLocalService getLayoutLocalService() {
1152                    return layoutLocalService;
1153            }
1154    
1155            /**
1156             * Sets the layout local service.
1157             *
1158             * @param layoutLocalService the layout local service
1159             */
1160            public void setLayoutLocalService(
1161                    com.liferay.portal.kernel.service.LayoutLocalService layoutLocalService) {
1162                    this.layoutLocalService = layoutLocalService;
1163            }
1164    
1165            /**
1166             * Returns the layout remote service.
1167             *
1168             * @return the layout remote service
1169             */
1170            public com.liferay.portal.kernel.service.LayoutService getLayoutService() {
1171                    return layoutService;
1172            }
1173    
1174            /**
1175             * Sets the layout remote service.
1176             *
1177             * @param layoutService the layout remote service
1178             */
1179            public void setLayoutService(
1180                    com.liferay.portal.kernel.service.LayoutService layoutService) {
1181                    this.layoutService = layoutService;
1182            }
1183    
1184            /**
1185             * Returns the layout persistence.
1186             *
1187             * @return the layout persistence
1188             */
1189            public LayoutPersistence getLayoutPersistence() {
1190                    return layoutPersistence;
1191            }
1192    
1193            /**
1194             * Sets the layout persistence.
1195             *
1196             * @param layoutPersistence the layout persistence
1197             */
1198            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
1199                    this.layoutPersistence = layoutPersistence;
1200            }
1201    
1202            /**
1203             * Returns the layout finder.
1204             *
1205             * @return the layout finder
1206             */
1207            public LayoutFinder getLayoutFinder() {
1208                    return layoutFinder;
1209            }
1210    
1211            /**
1212             * Sets the layout finder.
1213             *
1214             * @param layoutFinder the layout finder
1215             */
1216            public void setLayoutFinder(LayoutFinder layoutFinder) {
1217                    this.layoutFinder = layoutFinder;
1218            }
1219    
1220            /**
1221             * Returns the layout prototype local service.
1222             *
1223             * @return the layout prototype local service
1224             */
1225            public com.liferay.portal.kernel.service.LayoutPrototypeLocalService getLayoutPrototypeLocalService() {
1226                    return layoutPrototypeLocalService;
1227            }
1228    
1229            /**
1230             * Sets the layout prototype local service.
1231             *
1232             * @param layoutPrototypeLocalService the layout prototype local service
1233             */
1234            public void setLayoutPrototypeLocalService(
1235                    com.liferay.portal.kernel.service.LayoutPrototypeLocalService layoutPrototypeLocalService) {
1236                    this.layoutPrototypeLocalService = layoutPrototypeLocalService;
1237            }
1238    
1239            /**
1240             * Returns the layout prototype remote service.
1241             *
1242             * @return the layout prototype remote service
1243             */
1244            public com.liferay.portal.kernel.service.LayoutPrototypeService getLayoutPrototypeService() {
1245                    return layoutPrototypeService;
1246            }
1247    
1248            /**
1249             * Sets the layout prototype remote service.
1250             *
1251             * @param layoutPrototypeService the layout prototype remote service
1252             */
1253            public void setLayoutPrototypeService(
1254                    com.liferay.portal.kernel.service.LayoutPrototypeService layoutPrototypeService) {
1255                    this.layoutPrototypeService = layoutPrototypeService;
1256            }
1257    
1258            /**
1259             * Returns the layout prototype persistence.
1260             *
1261             * @return the layout prototype persistence
1262             */
1263            public LayoutPrototypePersistence getLayoutPrototypePersistence() {
1264                    return layoutPrototypePersistence;
1265            }
1266    
1267            /**
1268             * Sets the layout prototype persistence.
1269             *
1270             * @param layoutPrototypePersistence the layout prototype persistence
1271             */
1272            public void setLayoutPrototypePersistence(
1273                    LayoutPrototypePersistence layoutPrototypePersistence) {
1274                    this.layoutPrototypePersistence = layoutPrototypePersistence;
1275            }
1276    
1277            /**
1278             * Returns the layout set local service.
1279             *
1280             * @return the layout set local service
1281             */
1282            public com.liferay.portal.kernel.service.LayoutSetLocalService getLayoutSetLocalService() {
1283                    return layoutSetLocalService;
1284            }
1285    
1286            /**
1287             * Sets the layout set local service.
1288             *
1289             * @param layoutSetLocalService the layout set local service
1290             */
1291            public void setLayoutSetLocalService(
1292                    com.liferay.portal.kernel.service.LayoutSetLocalService layoutSetLocalService) {
1293                    this.layoutSetLocalService = layoutSetLocalService;
1294            }
1295    
1296            /**
1297             * Returns the layout set remote service.
1298             *
1299             * @return the layout set remote service
1300             */
1301            public com.liferay.portal.kernel.service.LayoutSetService getLayoutSetService() {
1302                    return layoutSetService;
1303            }
1304    
1305            /**
1306             * Sets the layout set remote service.
1307             *
1308             * @param layoutSetService the layout set remote service
1309             */
1310            public void setLayoutSetService(
1311                    com.liferay.portal.kernel.service.LayoutSetService layoutSetService) {
1312                    this.layoutSetService = layoutSetService;
1313            }
1314    
1315            /**
1316             * Returns the layout set persistence.
1317             *
1318             * @return the layout set persistence
1319             */
1320            public LayoutSetPersistence getLayoutSetPersistence() {
1321                    return layoutSetPersistence;
1322            }
1323    
1324            /**
1325             * Sets the layout set persistence.
1326             *
1327             * @param layoutSetPersistence the layout set persistence
1328             */
1329            public void setLayoutSetPersistence(
1330                    LayoutSetPersistence layoutSetPersistence) {
1331                    this.layoutSetPersistence = layoutSetPersistence;
1332            }
1333    
1334            /**
1335             * Returns the layout set branch local service.
1336             *
1337             * @return the layout set branch local service
1338             */
1339            public com.liferay.portal.kernel.service.LayoutSetBranchLocalService getLayoutSetBranchLocalService() {
1340                    return layoutSetBranchLocalService;
1341            }
1342    
1343            /**
1344             * Sets the layout set branch local service.
1345             *
1346             * @param layoutSetBranchLocalService the layout set branch local service
1347             */
1348            public void setLayoutSetBranchLocalService(
1349                    com.liferay.portal.kernel.service.LayoutSetBranchLocalService layoutSetBranchLocalService) {
1350                    this.layoutSetBranchLocalService = layoutSetBranchLocalService;
1351            }
1352    
1353            /**
1354             * Returns the layout set branch remote service.
1355             *
1356             * @return the layout set branch remote service
1357             */
1358            public com.liferay.portal.kernel.service.LayoutSetBranchService getLayoutSetBranchService() {
1359                    return layoutSetBranchService;
1360            }
1361    
1362            /**
1363             * Sets the layout set branch remote service.
1364             *
1365             * @param layoutSetBranchService the layout set branch remote service
1366             */
1367            public void setLayoutSetBranchService(
1368                    com.liferay.portal.kernel.service.LayoutSetBranchService layoutSetBranchService) {
1369                    this.layoutSetBranchService = layoutSetBranchService;
1370            }
1371    
1372            /**
1373             * Returns the layout set branch persistence.
1374             *
1375             * @return the layout set branch persistence
1376             */
1377            public LayoutSetBranchPersistence getLayoutSetBranchPersistence() {
1378                    return layoutSetBranchPersistence;
1379            }
1380    
1381            /**
1382             * Sets the layout set branch persistence.
1383             *
1384             * @param layoutSetBranchPersistence the layout set branch persistence
1385             */
1386            public void setLayoutSetBranchPersistence(
1387                    LayoutSetBranchPersistence layoutSetBranchPersistence) {
1388                    this.layoutSetBranchPersistence = layoutSetBranchPersistence;
1389            }
1390    
1391            /**
1392             * Returns the layout set prototype local service.
1393             *
1394             * @return the layout set prototype local service
1395             */
1396            public com.liferay.portal.kernel.service.LayoutSetPrototypeLocalService getLayoutSetPrototypeLocalService() {
1397                    return layoutSetPrototypeLocalService;
1398            }
1399    
1400            /**
1401             * Sets the layout set prototype local service.
1402             *
1403             * @param layoutSetPrototypeLocalService the layout set prototype local service
1404             */
1405            public void setLayoutSetPrototypeLocalService(
1406                    com.liferay.portal.kernel.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService) {
1407                    this.layoutSetPrototypeLocalService = layoutSetPrototypeLocalService;
1408            }
1409    
1410            /**
1411             * Returns the layout set prototype remote service.
1412             *
1413             * @return the layout set prototype remote service
1414             */
1415            public com.liferay.portal.kernel.service.LayoutSetPrototypeService getLayoutSetPrototypeService() {
1416                    return layoutSetPrototypeService;
1417            }
1418    
1419            /**
1420             * Sets the layout set prototype remote service.
1421             *
1422             * @param layoutSetPrototypeService the layout set prototype remote service
1423             */
1424            public void setLayoutSetPrototypeService(
1425                    com.liferay.portal.kernel.service.LayoutSetPrototypeService layoutSetPrototypeService) {
1426                    this.layoutSetPrototypeService = layoutSetPrototypeService;
1427            }
1428    
1429            /**
1430             * Returns the layout set prototype persistence.
1431             *
1432             * @return the layout set prototype persistence
1433             */
1434            public LayoutSetPrototypePersistence getLayoutSetPrototypePersistence() {
1435                    return layoutSetPrototypePersistence;
1436            }
1437    
1438            /**
1439             * Sets the layout set prototype persistence.
1440             *
1441             * @param layoutSetPrototypePersistence the layout set prototype persistence
1442             */
1443            public void setLayoutSetPrototypePersistence(
1444                    LayoutSetPrototypePersistence layoutSetPrototypePersistence) {
1445                    this.layoutSetPrototypePersistence = layoutSetPrototypePersistence;
1446            }
1447    
1448            /**
1449             * Returns the membership request local service.
1450             *
1451             * @return the membership request local service
1452             */
1453            public com.liferay.portal.kernel.service.MembershipRequestLocalService getMembershipRequestLocalService() {
1454                    return membershipRequestLocalService;
1455            }
1456    
1457            /**
1458             * Sets the membership request local service.
1459             *
1460             * @param membershipRequestLocalService the membership request local service
1461             */
1462            public void setMembershipRequestLocalService(
1463                    com.liferay.portal.kernel.service.MembershipRequestLocalService membershipRequestLocalService) {
1464                    this.membershipRequestLocalService = membershipRequestLocalService;
1465            }
1466    
1467            /**
1468             * Returns the membership request remote service.
1469             *
1470             * @return the membership request remote service
1471             */
1472            public com.liferay.portal.kernel.service.MembershipRequestService getMembershipRequestService() {
1473                    return membershipRequestService;
1474            }
1475    
1476            /**
1477             * Sets the membership request remote service.
1478             *
1479             * @param membershipRequestService the membership request remote service
1480             */
1481            public void setMembershipRequestService(
1482                    com.liferay.portal.kernel.service.MembershipRequestService membershipRequestService) {
1483                    this.membershipRequestService = membershipRequestService;
1484            }
1485    
1486            /**
1487             * Returns the membership request persistence.
1488             *
1489             * @return the membership request persistence
1490             */
1491            public MembershipRequestPersistence getMembershipRequestPersistence() {
1492                    return membershipRequestPersistence;
1493            }
1494    
1495            /**
1496             * Sets the membership request persistence.
1497             *
1498             * @param membershipRequestPersistence the membership request persistence
1499             */
1500            public void setMembershipRequestPersistence(
1501                    MembershipRequestPersistence membershipRequestPersistence) {
1502                    this.membershipRequestPersistence = membershipRequestPersistence;
1503            }
1504    
1505            /**
1506             * Returns the organization local service.
1507             *
1508             * @return the organization local service
1509             */
1510            public com.liferay.portal.kernel.service.OrganizationLocalService getOrganizationLocalService() {
1511                    return organizationLocalService;
1512            }
1513    
1514            /**
1515             * Sets the organization local service.
1516             *
1517             * @param organizationLocalService the organization local service
1518             */
1519            public void setOrganizationLocalService(
1520                    com.liferay.portal.kernel.service.OrganizationLocalService organizationLocalService) {
1521                    this.organizationLocalService = organizationLocalService;
1522            }
1523    
1524            /**
1525             * Returns the organization remote service.
1526             *
1527             * @return the organization remote service
1528             */
1529            public com.liferay.portal.kernel.service.OrganizationService getOrganizationService() {
1530                    return organizationService;
1531            }
1532    
1533            /**
1534             * Sets the organization remote service.
1535             *
1536             * @param organizationService the organization remote service
1537             */
1538            public void setOrganizationService(
1539                    com.liferay.portal.kernel.service.OrganizationService organizationService) {
1540                    this.organizationService = organizationService;
1541            }
1542    
1543            /**
1544             * Returns the organization persistence.
1545             *
1546             * @return the organization persistence
1547             */
1548            public OrganizationPersistence getOrganizationPersistence() {
1549                    return organizationPersistence;
1550            }
1551    
1552            /**
1553             * Sets the organization persistence.
1554             *
1555             * @param organizationPersistence the organization persistence
1556             */
1557            public void setOrganizationPersistence(
1558                    OrganizationPersistence organizationPersistence) {
1559                    this.organizationPersistence = organizationPersistence;
1560            }
1561    
1562            /**
1563             * Returns the organization finder.
1564             *
1565             * @return the organization finder
1566             */
1567            public OrganizationFinder getOrganizationFinder() {
1568                    return organizationFinder;
1569            }
1570    
1571            /**
1572             * Sets the organization finder.
1573             *
1574             * @param organizationFinder the organization finder
1575             */
1576            public void setOrganizationFinder(OrganizationFinder organizationFinder) {
1577                    this.organizationFinder = organizationFinder;
1578            }
1579    
1580            /**
1581             * Returns the portlet local service.
1582             *
1583             * @return the portlet local service
1584             */
1585            public com.liferay.portal.kernel.service.PortletLocalService getPortletLocalService() {
1586                    return portletLocalService;
1587            }
1588    
1589            /**
1590             * Sets the portlet local service.
1591             *
1592             * @param portletLocalService the portlet local service
1593             */
1594            public void setPortletLocalService(
1595                    com.liferay.portal.kernel.service.PortletLocalService portletLocalService) {
1596                    this.portletLocalService = portletLocalService;
1597            }
1598    
1599            /**
1600             * Returns the portlet remote service.
1601             *
1602             * @return the portlet remote service
1603             */
1604            public com.liferay.portal.kernel.service.PortletService getPortletService() {
1605                    return portletService;
1606            }
1607    
1608            /**
1609             * Sets the portlet remote service.
1610             *
1611             * @param portletService the portlet remote service
1612             */
1613            public void setPortletService(
1614                    com.liferay.portal.kernel.service.PortletService portletService) {
1615                    this.portletService = portletService;
1616            }
1617    
1618            /**
1619             * Returns the portlet persistence.
1620             *
1621             * @return the portlet persistence
1622             */
1623            public PortletPersistence getPortletPersistence() {
1624                    return portletPersistence;
1625            }
1626    
1627            /**
1628             * Sets the portlet persistence.
1629             *
1630             * @param portletPersistence the portlet persistence
1631             */
1632            public void setPortletPersistence(PortletPersistence portletPersistence) {
1633                    this.portletPersistence = portletPersistence;
1634            }
1635    
1636            /**
1637             * Returns the portlet preferences local service.
1638             *
1639             * @return the portlet preferences local service
1640             */
1641            public com.liferay.portal.kernel.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
1642                    return portletPreferencesLocalService;
1643            }
1644    
1645            /**
1646             * Sets the portlet preferences local service.
1647             *
1648             * @param portletPreferencesLocalService the portlet preferences local service
1649             */
1650            public void setPortletPreferencesLocalService(
1651                    com.liferay.portal.kernel.service.PortletPreferencesLocalService portletPreferencesLocalService) {
1652                    this.portletPreferencesLocalService = portletPreferencesLocalService;
1653            }
1654    
1655            /**
1656             * Returns the portlet preferences remote service.
1657             *
1658             * @return the portlet preferences remote service
1659             */
1660            public com.liferay.portal.kernel.service.PortletPreferencesService getPortletPreferencesService() {
1661                    return portletPreferencesService;
1662            }
1663    
1664            /**
1665             * Sets the portlet preferences remote service.
1666             *
1667             * @param portletPreferencesService the portlet preferences remote service
1668             */
1669            public void setPortletPreferencesService(
1670                    com.liferay.portal.kernel.service.PortletPreferencesService portletPreferencesService) {
1671                    this.portletPreferencesService = portletPreferencesService;
1672            }
1673    
1674            /**
1675             * Returns the portlet preferences persistence.
1676             *
1677             * @return the portlet preferences persistence
1678             */
1679            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
1680                    return portletPreferencesPersistence;
1681            }
1682    
1683            /**
1684             * Sets the portlet preferences persistence.
1685             *
1686             * @param portletPreferencesPersistence the portlet preferences persistence
1687             */
1688            public void setPortletPreferencesPersistence(
1689                    PortletPreferencesPersistence portletPreferencesPersistence) {
1690                    this.portletPreferencesPersistence = portletPreferencesPersistence;
1691            }
1692    
1693            /**
1694             * Returns the portlet preferences finder.
1695             *
1696             * @return the portlet preferences finder
1697             */
1698            public PortletPreferencesFinder getPortletPreferencesFinder() {
1699                    return portletPreferencesFinder;
1700            }
1701    
1702            /**
1703             * Sets the portlet preferences finder.
1704             *
1705             * @param portletPreferencesFinder the portlet preferences finder
1706             */
1707            public void setPortletPreferencesFinder(
1708                    PortletPreferencesFinder portletPreferencesFinder) {
1709                    this.portletPreferencesFinder = portletPreferencesFinder;
1710            }
1711    
1712            /**
1713             * Returns the resource local service.
1714             *
1715             * @return the resource local service
1716             */
1717            public com.liferay.portal.kernel.service.ResourceLocalService getResourceLocalService() {
1718                    return resourceLocalService;
1719            }
1720    
1721            /**
1722             * Sets the resource local service.
1723             *
1724             * @param resourceLocalService the resource local service
1725             */
1726            public void setResourceLocalService(
1727                    com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService) {
1728                    this.resourceLocalService = resourceLocalService;
1729            }
1730    
1731            /**
1732             * Returns the resource action local service.
1733             *
1734             * @return the resource action local service
1735             */
1736            public com.liferay.portal.kernel.service.ResourceActionLocalService getResourceActionLocalService() {
1737                    return resourceActionLocalService;
1738            }
1739    
1740            /**
1741             * Sets the resource action local service.
1742             *
1743             * @param resourceActionLocalService the resource action local service
1744             */
1745            public void setResourceActionLocalService(
1746                    com.liferay.portal.kernel.service.ResourceActionLocalService resourceActionLocalService) {
1747                    this.resourceActionLocalService = resourceActionLocalService;
1748            }
1749    
1750            /**
1751             * Returns the resource action persistence.
1752             *
1753             * @return the resource action persistence
1754             */
1755            public ResourceActionPersistence getResourceActionPersistence() {
1756                    return resourceActionPersistence;
1757            }
1758    
1759            /**
1760             * Sets the resource action persistence.
1761             *
1762             * @param resourceActionPersistence the resource action persistence
1763             */
1764            public void setResourceActionPersistence(
1765                    ResourceActionPersistence resourceActionPersistence) {
1766                    this.resourceActionPersistence = resourceActionPersistence;
1767            }
1768    
1769            /**
1770             * Returns the resource block local service.
1771             *
1772             * @return the resource block local service
1773             */
1774            public com.liferay.portal.kernel.service.ResourceBlockLocalService getResourceBlockLocalService() {
1775                    return resourceBlockLocalService;
1776            }
1777    
1778            /**
1779             * Sets the resource block local service.
1780             *
1781             * @param resourceBlockLocalService the resource block local service
1782             */
1783            public void setResourceBlockLocalService(
1784                    com.liferay.portal.kernel.service.ResourceBlockLocalService resourceBlockLocalService) {
1785                    this.resourceBlockLocalService = resourceBlockLocalService;
1786            }
1787    
1788            /**
1789             * Returns the resource block remote service.
1790             *
1791             * @return the resource block remote service
1792             */
1793            public com.liferay.portal.kernel.service.ResourceBlockService getResourceBlockService() {
1794                    return resourceBlockService;
1795            }
1796    
1797            /**
1798             * Sets the resource block remote service.
1799             *
1800             * @param resourceBlockService the resource block remote service
1801             */
1802            public void setResourceBlockService(
1803                    com.liferay.portal.kernel.service.ResourceBlockService resourceBlockService) {
1804                    this.resourceBlockService = resourceBlockService;
1805            }
1806    
1807            /**
1808             * Returns the resource block persistence.
1809             *
1810             * @return the resource block persistence
1811             */
1812            public ResourceBlockPersistence getResourceBlockPersistence() {
1813                    return resourceBlockPersistence;
1814            }
1815    
1816            /**
1817             * Sets the resource block persistence.
1818             *
1819             * @param resourceBlockPersistence the resource block persistence
1820             */
1821            public void setResourceBlockPersistence(
1822                    ResourceBlockPersistence resourceBlockPersistence) {
1823                    this.resourceBlockPersistence = resourceBlockPersistence;
1824            }
1825    
1826            /**
1827             * Returns the resource block finder.
1828             *
1829             * @return the resource block finder
1830             */
1831            public ResourceBlockFinder getResourceBlockFinder() {
1832                    return resourceBlockFinder;
1833            }
1834    
1835            /**
1836             * Sets the resource block finder.
1837             *
1838             * @param resourceBlockFinder the resource block finder
1839             */
1840            public void setResourceBlockFinder(ResourceBlockFinder resourceBlockFinder) {
1841                    this.resourceBlockFinder = resourceBlockFinder;
1842            }
1843    
1844            /**
1845             * Returns the resource permission local service.
1846             *
1847             * @return the resource permission local service
1848             */
1849            public com.liferay.portal.kernel.service.ResourcePermissionLocalService getResourcePermissionLocalService() {
1850                    return resourcePermissionLocalService;
1851            }
1852    
1853            /**
1854             * Sets the resource permission local service.
1855             *
1856             * @param resourcePermissionLocalService the resource permission local service
1857             */
1858            public void setResourcePermissionLocalService(
1859                    com.liferay.portal.kernel.service.ResourcePermissionLocalService resourcePermissionLocalService) {
1860                    this.resourcePermissionLocalService = resourcePermissionLocalService;
1861            }
1862    
1863            /**
1864             * Returns the resource permission remote service.
1865             *
1866             * @return the resource permission remote service
1867             */
1868            public com.liferay.portal.kernel.service.ResourcePermissionService getResourcePermissionService() {
1869                    return resourcePermissionService;
1870            }
1871    
1872            /**
1873             * Sets the resource permission remote service.
1874             *
1875             * @param resourcePermissionService the resource permission remote service
1876             */
1877            public void setResourcePermissionService(
1878                    com.liferay.portal.kernel.service.ResourcePermissionService resourcePermissionService) {
1879                    this.resourcePermissionService = resourcePermissionService;
1880            }
1881    
1882            /**
1883             * Returns the resource permission persistence.
1884             *
1885             * @return the resource permission persistence
1886             */
1887            public ResourcePermissionPersistence getResourcePermissionPersistence() {
1888                    return resourcePermissionPersistence;
1889            }
1890    
1891            /**
1892             * Sets the resource permission persistence.
1893             *
1894             * @param resourcePermissionPersistence the resource permission persistence
1895             */
1896            public void setResourcePermissionPersistence(
1897                    ResourcePermissionPersistence resourcePermissionPersistence) {
1898                    this.resourcePermissionPersistence = resourcePermissionPersistence;
1899            }
1900    
1901            /**
1902             * Returns the resource permission finder.
1903             *
1904             * @return the resource permission finder
1905             */
1906            public ResourcePermissionFinder getResourcePermissionFinder() {
1907                    return resourcePermissionFinder;
1908            }
1909    
1910            /**
1911             * Sets the resource permission finder.
1912             *
1913             * @param resourcePermissionFinder the resource permission finder
1914             */
1915            public void setResourcePermissionFinder(
1916                    ResourcePermissionFinder resourcePermissionFinder) {
1917                    this.resourcePermissionFinder = resourcePermissionFinder;
1918            }
1919    
1920            /**
1921             * Returns the resource type permission local service.
1922             *
1923             * @return the resource type permission local service
1924             */
1925            public com.liferay.portal.kernel.service.ResourceTypePermissionLocalService getResourceTypePermissionLocalService() {
1926                    return resourceTypePermissionLocalService;
1927            }
1928    
1929            /**
1930             * Sets the resource type permission local service.
1931             *
1932             * @param resourceTypePermissionLocalService the resource type permission local service
1933             */
1934            public void setResourceTypePermissionLocalService(
1935                    com.liferay.portal.kernel.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService) {
1936                    this.resourceTypePermissionLocalService = resourceTypePermissionLocalService;
1937            }
1938    
1939            /**
1940             * Returns the resource type permission persistence.
1941             *
1942             * @return the resource type permission persistence
1943             */
1944            public ResourceTypePermissionPersistence getResourceTypePermissionPersistence() {
1945                    return resourceTypePermissionPersistence;
1946            }
1947    
1948            /**
1949             * Sets the resource type permission persistence.
1950             *
1951             * @param resourceTypePermissionPersistence the resource type permission persistence
1952             */
1953            public void setResourceTypePermissionPersistence(
1954                    ResourceTypePermissionPersistence resourceTypePermissionPersistence) {
1955                    this.resourceTypePermissionPersistence = resourceTypePermissionPersistence;
1956            }
1957    
1958            /**
1959             * Returns the resource type permission finder.
1960             *
1961             * @return the resource type permission finder
1962             */
1963            public ResourceTypePermissionFinder getResourceTypePermissionFinder() {
1964                    return resourceTypePermissionFinder;
1965            }
1966    
1967            /**
1968             * Sets the resource type permission finder.
1969             *
1970             * @param resourceTypePermissionFinder the resource type permission finder
1971             */
1972            public void setResourceTypePermissionFinder(
1973                    ResourceTypePermissionFinder resourceTypePermissionFinder) {
1974                    this.resourceTypePermissionFinder = resourceTypePermissionFinder;
1975            }
1976    
1977            /**
1978             * Returns the role local service.
1979             *
1980             * @return the role local service
1981             */
1982            public com.liferay.portal.kernel.service.RoleLocalService getRoleLocalService() {
1983                    return roleLocalService;
1984            }
1985    
1986            /**
1987             * Sets the role local service.
1988             *
1989             * @param roleLocalService the role local service
1990             */
1991            public void setRoleLocalService(
1992                    com.liferay.portal.kernel.service.RoleLocalService roleLocalService) {
1993                    this.roleLocalService = roleLocalService;
1994            }
1995    
1996            /**
1997             * Returns the role remote service.
1998             *
1999             * @return the role remote service
2000             */
2001            public com.liferay.portal.kernel.service.RoleService getRoleService() {
2002                    return roleService;
2003            }
2004    
2005            /**
2006             * Sets the role remote service.
2007             *
2008             * @param roleService the role remote service
2009             */
2010            public void setRoleService(
2011                    com.liferay.portal.kernel.service.RoleService roleService) {
2012                    this.roleService = roleService;
2013            }
2014    
2015            /**
2016             * Returns the role persistence.
2017             *
2018             * @return the role persistence
2019             */
2020            public RolePersistence getRolePersistence() {
2021                    return rolePersistence;
2022            }
2023    
2024            /**
2025             * Sets the role persistence.
2026             *
2027             * @param rolePersistence the role persistence
2028             */
2029            public void setRolePersistence(RolePersistence rolePersistence) {
2030                    this.rolePersistence = rolePersistence;
2031            }
2032    
2033            /**
2034             * Returns the role finder.
2035             *
2036             * @return the role finder
2037             */
2038            public RoleFinder getRoleFinder() {
2039                    return roleFinder;
2040            }
2041    
2042            /**
2043             * Sets the role finder.
2044             *
2045             * @param roleFinder the role finder
2046             */
2047            public void setRoleFinder(RoleFinder roleFinder) {
2048                    this.roleFinder = roleFinder;
2049            }
2050    
2051            /**
2052             * Returns the subscription local service.
2053             *
2054             * @return the subscription local service
2055             */
2056            public com.liferay.portal.kernel.service.SubscriptionLocalService getSubscriptionLocalService() {
2057                    return subscriptionLocalService;
2058            }
2059    
2060            /**
2061             * Sets the subscription local service.
2062             *
2063             * @param subscriptionLocalService the subscription local service
2064             */
2065            public void setSubscriptionLocalService(
2066                    com.liferay.portal.kernel.service.SubscriptionLocalService subscriptionLocalService) {
2067                    this.subscriptionLocalService = subscriptionLocalService;
2068            }
2069    
2070            /**
2071             * Returns the subscription persistence.
2072             *
2073             * @return the subscription persistence
2074             */
2075            public SubscriptionPersistence getSubscriptionPersistence() {
2076                    return subscriptionPersistence;
2077            }
2078    
2079            /**
2080             * Sets the subscription persistence.
2081             *
2082             * @param subscriptionPersistence the subscription persistence
2083             */
2084            public void setSubscriptionPersistence(
2085                    SubscriptionPersistence subscriptionPersistence) {
2086                    this.subscriptionPersistence = subscriptionPersistence;
2087            }
2088    
2089            /**
2090             * Returns the team local service.
2091             *
2092             * @return the team local service
2093             */
2094            public com.liferay.portal.kernel.service.TeamLocalService getTeamLocalService() {
2095                    return teamLocalService;
2096            }
2097    
2098            /**
2099             * Sets the team local service.
2100             *
2101             * @param teamLocalService the team local service
2102             */
2103            public void setTeamLocalService(
2104                    com.liferay.portal.kernel.service.TeamLocalService teamLocalService) {
2105                    this.teamLocalService = teamLocalService;
2106            }
2107    
2108            /**
2109             * Returns the team remote service.
2110             *
2111             * @return the team remote service
2112             */
2113            public com.liferay.portal.kernel.service.TeamService getTeamService() {
2114                    return teamService;
2115            }
2116    
2117            /**
2118             * Sets the team remote service.
2119             *
2120             * @param teamService the team remote service
2121             */
2122            public void setTeamService(
2123                    com.liferay.portal.kernel.service.TeamService teamService) {
2124                    this.teamService = teamService;
2125            }
2126    
2127            /**
2128             * Returns the team persistence.
2129             *
2130             * @return the team persistence
2131             */
2132            public TeamPersistence getTeamPersistence() {
2133                    return teamPersistence;
2134            }
2135    
2136            /**
2137             * Sets the team persistence.
2138             *
2139             * @param teamPersistence the team persistence
2140             */
2141            public void setTeamPersistence(TeamPersistence teamPersistence) {
2142                    this.teamPersistence = teamPersistence;
2143            }
2144    
2145            /**
2146             * Returns the team finder.
2147             *
2148             * @return the team finder
2149             */
2150            public TeamFinder getTeamFinder() {
2151                    return teamFinder;
2152            }
2153    
2154            /**
2155             * Sets the team finder.
2156             *
2157             * @param teamFinder the team finder
2158             */
2159            public void setTeamFinder(TeamFinder teamFinder) {
2160                    this.teamFinder = teamFinder;
2161            }
2162    
2163            /**
2164             * Returns the user local service.
2165             *
2166             * @return the user local service
2167             */
2168            public com.liferay.portal.kernel.service.UserLocalService getUserLocalService() {
2169                    return userLocalService;
2170            }
2171    
2172            /**
2173             * Sets the user local service.
2174             *
2175             * @param userLocalService the user local service
2176             */
2177            public void setUserLocalService(
2178                    com.liferay.portal.kernel.service.UserLocalService userLocalService) {
2179                    this.userLocalService = userLocalService;
2180            }
2181    
2182            /**
2183             * Returns the user remote service.
2184             *
2185             * @return the user remote service
2186             */
2187            public com.liferay.portal.kernel.service.UserService getUserService() {
2188                    return userService;
2189            }
2190    
2191            /**
2192             * Sets the user remote service.
2193             *
2194             * @param userService the user remote service
2195             */
2196            public void setUserService(
2197                    com.liferay.portal.kernel.service.UserService userService) {
2198                    this.userService = userService;
2199            }
2200    
2201            /**
2202             * Returns the user persistence.
2203             *
2204             * @return the user persistence
2205             */
2206            public UserPersistence getUserPersistence() {
2207                    return userPersistence;
2208            }
2209    
2210            /**
2211             * Sets the user persistence.
2212             *
2213             * @param userPersistence the user persistence
2214             */
2215            public void setUserPersistence(UserPersistence userPersistence) {
2216                    this.userPersistence = userPersistence;
2217            }
2218    
2219            /**
2220             * Returns the user finder.
2221             *
2222             * @return the user finder
2223             */
2224            public UserFinder getUserFinder() {
2225                    return userFinder;
2226            }
2227    
2228            /**
2229             * Sets the user finder.
2230             *
2231             * @param userFinder the user finder
2232             */
2233            public void setUserFinder(UserFinder userFinder) {
2234                    this.userFinder = userFinder;
2235            }
2236    
2237            /**
2238             * Returns the user group local service.
2239             *
2240             * @return the user group local service
2241             */
2242            public com.liferay.portal.kernel.service.UserGroupLocalService getUserGroupLocalService() {
2243                    return userGroupLocalService;
2244            }
2245    
2246            /**
2247             * Sets the user group local service.
2248             *
2249             * @param userGroupLocalService the user group local service
2250             */
2251            public void setUserGroupLocalService(
2252                    com.liferay.portal.kernel.service.UserGroupLocalService userGroupLocalService) {
2253                    this.userGroupLocalService = userGroupLocalService;
2254            }
2255    
2256            /**
2257             * Returns the user group remote service.
2258             *
2259             * @return the user group remote service
2260             */
2261            public com.liferay.portal.kernel.service.UserGroupService getUserGroupService() {
2262                    return userGroupService;
2263            }
2264    
2265            /**
2266             * Sets the user group remote service.
2267             *
2268             * @param userGroupService the user group remote service
2269             */
2270            public void setUserGroupService(
2271                    com.liferay.portal.kernel.service.UserGroupService userGroupService) {
2272                    this.userGroupService = userGroupService;
2273            }
2274    
2275            /**
2276             * Returns the user group persistence.
2277             *
2278             * @return the user group persistence
2279             */
2280            public UserGroupPersistence getUserGroupPersistence() {
2281                    return userGroupPersistence;
2282            }
2283    
2284            /**
2285             * Sets the user group persistence.
2286             *
2287             * @param userGroupPersistence the user group persistence
2288             */
2289            public void setUserGroupPersistence(
2290                    UserGroupPersistence userGroupPersistence) {
2291                    this.userGroupPersistence = userGroupPersistence;
2292            }
2293    
2294            /**
2295             * Returns the user group finder.
2296             *
2297             * @return the user group finder
2298             */
2299            public UserGroupFinder getUserGroupFinder() {
2300                    return userGroupFinder;
2301            }
2302    
2303            /**
2304             * Sets the user group finder.
2305             *
2306             * @param userGroupFinder the user group finder
2307             */
2308            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
2309                    this.userGroupFinder = userGroupFinder;
2310            }
2311    
2312            /**
2313             * Returns the user group group role local service.
2314             *
2315             * @return the user group group role local service
2316             */
2317            public com.liferay.portal.kernel.service.UserGroupGroupRoleLocalService getUserGroupGroupRoleLocalService() {
2318                    return userGroupGroupRoleLocalService;
2319            }
2320    
2321            /**
2322             * Sets the user group group role local service.
2323             *
2324             * @param userGroupGroupRoleLocalService the user group group role local service
2325             */
2326            public void setUserGroupGroupRoleLocalService(
2327                    com.liferay.portal.kernel.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService) {
2328                    this.userGroupGroupRoleLocalService = userGroupGroupRoleLocalService;
2329            }
2330    
2331            /**
2332             * Returns the user group group role remote service.
2333             *
2334             * @return the user group group role remote service
2335             */
2336            public com.liferay.portal.kernel.service.UserGroupGroupRoleService getUserGroupGroupRoleService() {
2337                    return userGroupGroupRoleService;
2338            }
2339    
2340            /**
2341             * Sets the user group group role remote service.
2342             *
2343             * @param userGroupGroupRoleService the user group group role remote service
2344             */
2345            public void setUserGroupGroupRoleService(
2346                    com.liferay.portal.kernel.service.UserGroupGroupRoleService userGroupGroupRoleService) {
2347                    this.userGroupGroupRoleService = userGroupGroupRoleService;
2348            }
2349    
2350            /**
2351             * Returns the user group group role persistence.
2352             *
2353             * @return the user group group role persistence
2354             */
2355            public UserGroupGroupRolePersistence getUserGroupGroupRolePersistence() {
2356                    return userGroupGroupRolePersistence;
2357            }
2358    
2359            /**
2360             * Sets the user group group role persistence.
2361             *
2362             * @param userGroupGroupRolePersistence the user group group role persistence
2363             */
2364            public void setUserGroupGroupRolePersistence(
2365                    UserGroupGroupRolePersistence userGroupGroupRolePersistence) {
2366                    this.userGroupGroupRolePersistence = userGroupGroupRolePersistence;
2367            }
2368    
2369            /**
2370             * Returns the user group group role finder.
2371             *
2372             * @return the user group group role finder
2373             */
2374            public UserGroupGroupRoleFinder getUserGroupGroupRoleFinder() {
2375                    return userGroupGroupRoleFinder;
2376            }
2377    
2378            /**
2379             * Sets the user group group role finder.
2380             *
2381             * @param userGroupGroupRoleFinder the user group group role finder
2382             */
2383            public void setUserGroupGroupRoleFinder(
2384                    UserGroupGroupRoleFinder userGroupGroupRoleFinder) {
2385                    this.userGroupGroupRoleFinder = userGroupGroupRoleFinder;
2386            }
2387    
2388            /**
2389             * Returns the user group role local service.
2390             *
2391             * @return the user group role local service
2392             */
2393            public com.liferay.portal.kernel.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
2394                    return userGroupRoleLocalService;
2395            }
2396    
2397            /**
2398             * Sets the user group role local service.
2399             *
2400             * @param userGroupRoleLocalService the user group role local service
2401             */
2402            public void setUserGroupRoleLocalService(
2403                    com.liferay.portal.kernel.service.UserGroupRoleLocalService userGroupRoleLocalService) {
2404                    this.userGroupRoleLocalService = userGroupRoleLocalService;
2405            }
2406    
2407            /**
2408             * Returns the user group role remote service.
2409             *
2410             * @return the user group role remote service
2411             */
2412            public com.liferay.portal.kernel.service.UserGroupRoleService getUserGroupRoleService() {
2413                    return userGroupRoleService;
2414            }
2415    
2416            /**
2417             * Sets the user group role remote service.
2418             *
2419             * @param userGroupRoleService the user group role remote service
2420             */
2421            public void setUserGroupRoleService(
2422                    com.liferay.portal.kernel.service.UserGroupRoleService userGroupRoleService) {
2423                    this.userGroupRoleService = userGroupRoleService;
2424            }
2425    
2426            /**
2427             * Returns the user group role persistence.
2428             *
2429             * @return the user group role persistence
2430             */
2431            public UserGroupRolePersistence getUserGroupRolePersistence() {
2432                    return userGroupRolePersistence;
2433            }
2434    
2435            /**
2436             * Sets the user group role persistence.
2437             *
2438             * @param userGroupRolePersistence the user group role persistence
2439             */
2440            public void setUserGroupRolePersistence(
2441                    UserGroupRolePersistence userGroupRolePersistence) {
2442                    this.userGroupRolePersistence = userGroupRolePersistence;
2443            }
2444    
2445            /**
2446             * Returns the user group role finder.
2447             *
2448             * @return the user group role finder
2449             */
2450            public UserGroupRoleFinder getUserGroupRoleFinder() {
2451                    return userGroupRoleFinder;
2452            }
2453    
2454            /**
2455             * Sets the user group role finder.
2456             *
2457             * @param userGroupRoleFinder the user group role finder
2458             */
2459            public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
2460                    this.userGroupRoleFinder = userGroupRoleFinder;
2461            }
2462    
2463            /**
2464             * Returns the workflow definition link local service.
2465             *
2466             * @return the workflow definition link local service
2467             */
2468            public com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
2469                    return workflowDefinitionLinkLocalService;
2470            }
2471    
2472            /**
2473             * Sets the workflow definition link local service.
2474             *
2475             * @param workflowDefinitionLinkLocalService the workflow definition link local service
2476             */
2477            public void setWorkflowDefinitionLinkLocalService(
2478                    com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
2479                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
2480            }
2481    
2482            /**
2483             * Returns the workflow definition link persistence.
2484             *
2485             * @return the workflow definition link persistence
2486             */
2487            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
2488                    return workflowDefinitionLinkPersistence;
2489            }
2490    
2491            /**
2492             * Sets the workflow definition link persistence.
2493             *
2494             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
2495             */
2496            public void setWorkflowDefinitionLinkPersistence(
2497                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
2498                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
2499            }
2500    
2501            public void afterPropertiesSet() {
2502            }
2503    
2504            public void destroy() {
2505            }
2506    
2507            /**
2508             * Returns the OSGi service identifier.
2509             *
2510             * @return the OSGi service identifier
2511             */
2512            @Override
2513            public String getOSGiServiceIdentifier() {
2514                    return GroupService.class.getName();
2515            }
2516    
2517            protected Class<?> getModelClass() {
2518                    return Group.class;
2519            }
2520    
2521            protected String getModelClassName() {
2522                    return Group.class.getName();
2523            }
2524    
2525            /**
2526             * Performs a SQL query.
2527             *
2528             * @param sql the sql query
2529             */
2530            protected void runSQL(String sql) {
2531                    try {
2532                            DataSource dataSource = groupPersistence.getDataSource();
2533    
2534                            DB db = DBManagerUtil.getDB();
2535    
2536                            sql = db.buildSQL(sql);
2537                            sql = PortalUtil.transformSQL(sql);
2538    
2539                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
2540                                            sql);
2541    
2542                            sqlUpdate.update();
2543                    }
2544                    catch (Exception e) {
2545                            throw new SystemException(e);
2546                    }
2547            }
2548    
2549            @BeanReference(type = com.liferay.portal.kernel.service.GroupLocalService.class)
2550            protected com.liferay.portal.kernel.service.GroupLocalService groupLocalService;
2551            @BeanReference(type = GroupService.class)
2552            protected GroupService groupService;
2553            @BeanReference(type = GroupPersistence.class)
2554            protected GroupPersistence groupPersistence;
2555            @BeanReference(type = GroupFinder.class)
2556            protected GroupFinder groupFinder;
2557            @BeanReference(type = com.liferay.counter.kernel.service.CounterLocalService.class)
2558            protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService;
2559            @BeanReference(type = com.liferay.portal.kernel.service.AccountLocalService.class)
2560            protected com.liferay.portal.kernel.service.AccountLocalService accountLocalService;
2561            @BeanReference(type = com.liferay.portal.kernel.service.AccountService.class)
2562            protected com.liferay.portal.kernel.service.AccountService accountService;
2563            @BeanReference(type = AccountPersistence.class)
2564            protected AccountPersistence accountPersistence;
2565            @BeanReference(type = com.liferay.portal.kernel.service.ClassNameLocalService.class)
2566            protected com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService;
2567            @BeanReference(type = com.liferay.portal.kernel.service.ClassNameService.class)
2568            protected com.liferay.portal.kernel.service.ClassNameService classNameService;
2569            @BeanReference(type = ClassNamePersistence.class)
2570            protected ClassNamePersistence classNamePersistence;
2571            @BeanReference(type = com.liferay.portal.kernel.service.CompanyLocalService.class)
2572            protected com.liferay.portal.kernel.service.CompanyLocalService companyLocalService;
2573            @BeanReference(type = com.liferay.portal.kernel.service.CompanyService.class)
2574            protected com.liferay.portal.kernel.service.CompanyService companyService;
2575            @BeanReference(type = CompanyPersistence.class)
2576            protected CompanyPersistence companyPersistence;
2577            @BeanReference(type = com.liferay.asset.kernel.service.AssetCategoryLocalService.class)
2578            protected com.liferay.asset.kernel.service.AssetCategoryLocalService assetCategoryLocalService;
2579            @BeanReference(type = com.liferay.asset.kernel.service.AssetCategoryService.class)
2580            protected com.liferay.asset.kernel.service.AssetCategoryService assetCategoryService;
2581            @BeanReference(type = AssetCategoryPersistence.class)
2582            protected AssetCategoryPersistence assetCategoryPersistence;
2583            @BeanReference(type = AssetCategoryFinder.class)
2584            protected AssetCategoryFinder assetCategoryFinder;
2585            @BeanReference(type = com.liferay.asset.kernel.service.AssetEntryLocalService.class)
2586            protected com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService;
2587            @BeanReference(type = com.liferay.asset.kernel.service.AssetEntryService.class)
2588            protected com.liferay.asset.kernel.service.AssetEntryService assetEntryService;
2589            @BeanReference(type = AssetEntryPersistence.class)
2590            protected AssetEntryPersistence assetEntryPersistence;
2591            @BeanReference(type = AssetEntryFinder.class)
2592            protected AssetEntryFinder assetEntryFinder;
2593            @BeanReference(type = com.liferay.asset.kernel.service.AssetTagLocalService.class)
2594            protected com.liferay.asset.kernel.service.AssetTagLocalService assetTagLocalService;
2595            @BeanReference(type = com.liferay.asset.kernel.service.AssetTagService.class)
2596            protected com.liferay.asset.kernel.service.AssetTagService assetTagService;
2597            @BeanReference(type = AssetTagPersistence.class)
2598            protected AssetTagPersistence assetTagPersistence;
2599            @BeanReference(type = AssetTagFinder.class)
2600            protected AssetTagFinder assetTagFinder;
2601            @BeanReference(type = com.liferay.asset.kernel.service.AssetVocabularyLocalService.class)
2602            protected com.liferay.asset.kernel.service.AssetVocabularyLocalService assetVocabularyLocalService;
2603            @BeanReference(type = com.liferay.asset.kernel.service.AssetVocabularyService.class)
2604            protected com.liferay.asset.kernel.service.AssetVocabularyService assetVocabularyService;
2605            @BeanReference(type = AssetVocabularyPersistence.class)
2606            protected AssetVocabularyPersistence assetVocabularyPersistence;
2607            @BeanReference(type = AssetVocabularyFinder.class)
2608            protected AssetVocabularyFinder assetVocabularyFinder;
2609            @BeanReference(type = com.liferay.document.library.kernel.service.DLAppLocalService.class)
2610            protected com.liferay.document.library.kernel.service.DLAppLocalService dlAppLocalService;
2611            @BeanReference(type = com.liferay.document.library.kernel.service.DLAppService.class)
2612            protected com.liferay.document.library.kernel.service.DLAppService dlAppService;
2613            @BeanReference(type = com.liferay.expando.kernel.service.ExpandoRowLocalService.class)
2614            protected com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService;
2615            @BeanReference(type = ExpandoRowPersistence.class)
2616            protected ExpandoRowPersistence expandoRowPersistence;
2617            @BeanReference(type = com.liferay.exportimport.kernel.service.ExportImportLocalService.class)
2618            protected com.liferay.exportimport.kernel.service.ExportImportLocalService exportImportLocalService;
2619            @BeanReference(type = com.liferay.exportimport.kernel.service.ExportImportService.class)
2620            protected com.liferay.exportimport.kernel.service.ExportImportService exportImportService;
2621            @BeanReference(type = com.liferay.exportimport.kernel.service.ExportImportConfigurationLocalService.class)
2622            protected com.liferay.exportimport.kernel.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService;
2623            @BeanReference(type = com.liferay.exportimport.kernel.service.ExportImportConfigurationService.class)
2624            protected com.liferay.exportimport.kernel.service.ExportImportConfigurationService exportImportConfigurationService;
2625            @BeanReference(type = ExportImportConfigurationPersistence.class)
2626            protected ExportImportConfigurationPersistence exportImportConfigurationPersistence;
2627            @BeanReference(type = ExportImportConfigurationFinder.class)
2628            protected ExportImportConfigurationFinder exportImportConfigurationFinder;
2629            @BeanReference(type = com.liferay.exportimport.kernel.service.StagingLocalService.class)
2630            protected com.liferay.exportimport.kernel.service.StagingLocalService stagingLocalService;
2631            @BeanReference(type = com.liferay.exportimport.kernel.service.StagingService.class)
2632            protected com.liferay.exportimport.kernel.service.StagingService stagingService;
2633            @BeanReference(type = com.liferay.social.kernel.service.SocialActivityLocalService.class)
2634            protected com.liferay.social.kernel.service.SocialActivityLocalService socialActivityLocalService;
2635            @BeanReference(type = com.liferay.social.kernel.service.SocialActivityService.class)
2636            protected com.liferay.social.kernel.service.SocialActivityService socialActivityService;
2637            @BeanReference(type = SocialActivityPersistence.class)
2638            protected SocialActivityPersistence socialActivityPersistence;
2639            @BeanReference(type = SocialActivityFinder.class)
2640            protected SocialActivityFinder socialActivityFinder;
2641            @BeanReference(type = com.liferay.social.kernel.service.SocialActivitySettingLocalService.class)
2642            protected com.liferay.social.kernel.service.SocialActivitySettingLocalService socialActivitySettingLocalService;
2643            @BeanReference(type = com.liferay.social.kernel.service.SocialActivitySettingService.class)
2644            protected com.liferay.social.kernel.service.SocialActivitySettingService socialActivitySettingService;
2645            @BeanReference(type = SocialActivitySettingPersistence.class)
2646            protected SocialActivitySettingPersistence socialActivitySettingPersistence;
2647            @BeanReference(type = com.liferay.social.kernel.service.SocialRequestLocalService.class)
2648            protected com.liferay.social.kernel.service.SocialRequestLocalService socialRequestLocalService;
2649            @BeanReference(type = com.liferay.social.kernel.service.SocialRequestService.class)
2650            protected com.liferay.social.kernel.service.SocialRequestService socialRequestService;
2651            @BeanReference(type = SocialRequestPersistence.class)
2652            protected SocialRequestPersistence socialRequestPersistence;
2653            @BeanReference(type = com.liferay.trash.kernel.service.TrashEntryLocalService.class)
2654            protected com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService;
2655            @BeanReference(type = com.liferay.trash.kernel.service.TrashEntryService.class)
2656            protected com.liferay.trash.kernel.service.TrashEntryService trashEntryService;
2657            @BeanReference(type = TrashEntryPersistence.class)
2658            protected TrashEntryPersistence trashEntryPersistence;
2659            @BeanReference(type = com.liferay.portal.kernel.service.LayoutLocalService.class)
2660            protected com.liferay.portal.kernel.service.LayoutLocalService layoutLocalService;
2661            @BeanReference(type = com.liferay.portal.kernel.service.LayoutService.class)
2662            protected com.liferay.portal.kernel.service.LayoutService layoutService;
2663            @BeanReference(type = LayoutPersistence.class)
2664            protected LayoutPersistence layoutPersistence;
2665            @BeanReference(type = LayoutFinder.class)
2666            protected LayoutFinder layoutFinder;
2667            @BeanReference(type = com.liferay.portal.kernel.service.LayoutPrototypeLocalService.class)
2668            protected com.liferay.portal.kernel.service.LayoutPrototypeLocalService layoutPrototypeLocalService;
2669            @BeanReference(type = com.liferay.portal.kernel.service.LayoutPrototypeService.class)
2670            protected com.liferay.portal.kernel.service.LayoutPrototypeService layoutPrototypeService;
2671            @BeanReference(type = LayoutPrototypePersistence.class)
2672            protected LayoutPrototypePersistence layoutPrototypePersistence;
2673            @BeanReference(type = com.liferay.portal.kernel.service.LayoutSetLocalService.class)
2674            protected com.liferay.portal.kernel.service.LayoutSetLocalService layoutSetLocalService;
2675            @BeanReference(type = com.liferay.portal.kernel.service.LayoutSetService.class)
2676            protected com.liferay.portal.kernel.service.LayoutSetService layoutSetService;
2677            @BeanReference(type = LayoutSetPersistence.class)
2678            protected LayoutSetPersistence layoutSetPersistence;
2679            @BeanReference(type = com.liferay.portal.kernel.service.LayoutSetBranchLocalService.class)
2680            protected com.liferay.portal.kernel.service.LayoutSetBranchLocalService layoutSetBranchLocalService;
2681            @BeanReference(type = com.liferay.portal.kernel.service.LayoutSetBranchService.class)
2682            protected com.liferay.portal.kernel.service.LayoutSetBranchService layoutSetBranchService;
2683            @BeanReference(type = LayoutSetBranchPersistence.class)
2684            protected LayoutSetBranchPersistence layoutSetBranchPersistence;
2685            @BeanReference(type = com.liferay.portal.kernel.service.LayoutSetPrototypeLocalService.class)
2686            protected com.liferay.portal.kernel.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService;
2687            @BeanReference(type = com.liferay.portal.kernel.service.LayoutSetPrototypeService.class)
2688            protected com.liferay.portal.kernel.service.LayoutSetPrototypeService layoutSetPrototypeService;
2689            @BeanReference(type = LayoutSetPrototypePersistence.class)
2690            protected LayoutSetPrototypePersistence layoutSetPrototypePersistence;
2691            @BeanReference(type = com.liferay.portal.kernel.service.MembershipRequestLocalService.class)
2692            protected com.liferay.portal.kernel.service.MembershipRequestLocalService membershipRequestLocalService;
2693            @BeanReference(type = com.liferay.portal.kernel.service.MembershipRequestService.class)
2694            protected com.liferay.portal.kernel.service.MembershipRequestService membershipRequestService;
2695            @BeanReference(type = MembershipRequestPersistence.class)
2696            protected MembershipRequestPersistence membershipRequestPersistence;
2697            @BeanReference(type = com.liferay.portal.kernel.service.OrganizationLocalService.class)
2698            protected com.liferay.portal.kernel.service.OrganizationLocalService organizationLocalService;
2699            @BeanReference(type = com.liferay.portal.kernel.service.OrganizationService.class)
2700            protected com.liferay.portal.kernel.service.OrganizationService organizationService;
2701            @BeanReference(type = OrganizationPersistence.class)
2702            protected OrganizationPersistence organizationPersistence;
2703            @BeanReference(type = OrganizationFinder.class)
2704            protected OrganizationFinder organizationFinder;
2705            @BeanReference(type = com.liferay.portal.kernel.service.PortletLocalService.class)
2706            protected com.liferay.portal.kernel.service.PortletLocalService portletLocalService;
2707            @BeanReference(type = com.liferay.portal.kernel.service.PortletService.class)
2708            protected com.liferay.portal.kernel.service.PortletService portletService;
2709            @BeanReference(type = PortletPersistence.class)
2710            protected PortletPersistence portletPersistence;
2711            @BeanReference(type = com.liferay.portal.kernel.service.PortletPreferencesLocalService.class)
2712            protected com.liferay.portal.kernel.service.PortletPreferencesLocalService portletPreferencesLocalService;
2713            @BeanReference(type = com.liferay.portal.kernel.service.PortletPreferencesService.class)
2714            protected com.liferay.portal.kernel.service.PortletPreferencesService portletPreferencesService;
2715            @BeanReference(type = PortletPreferencesPersistence.class)
2716            protected PortletPreferencesPersistence portletPreferencesPersistence;
2717            @BeanReference(type = PortletPreferencesFinder.class)
2718            protected PortletPreferencesFinder portletPreferencesFinder;
2719            @BeanReference(type = com.liferay.portal.kernel.service.ResourceLocalService.class)
2720            protected com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService;
2721            @BeanReference(type = com.liferay.portal.kernel.service.ResourceActionLocalService.class)
2722            protected com.liferay.portal.kernel.service.ResourceActionLocalService resourceActionLocalService;
2723            @BeanReference(type = ResourceActionPersistence.class)
2724            protected ResourceActionPersistence resourceActionPersistence;
2725            @BeanReference(type = com.liferay.portal.kernel.service.ResourceBlockLocalService.class)
2726            protected com.liferay.portal.kernel.service.ResourceBlockLocalService resourceBlockLocalService;
2727            @BeanReference(type = com.liferay.portal.kernel.service.ResourceBlockService.class)
2728            protected com.liferay.portal.kernel.service.ResourceBlockService resourceBlockService;
2729            @BeanReference(type = ResourceBlockPersistence.class)
2730            protected ResourceBlockPersistence resourceBlockPersistence;
2731            @BeanReference(type = ResourceBlockFinder.class)
2732            protected ResourceBlockFinder resourceBlockFinder;
2733            @BeanReference(type = com.liferay.portal.kernel.service.ResourcePermissionLocalService.class)
2734            protected com.liferay.portal.kernel.service.ResourcePermissionLocalService resourcePermissionLocalService;
2735            @BeanReference(type = com.liferay.portal.kernel.service.ResourcePermissionService.class)
2736            protected com.liferay.portal.kernel.service.ResourcePermissionService resourcePermissionService;
2737            @BeanReference(type = ResourcePermissionPersistence.class)
2738            protected ResourcePermissionPersistence resourcePermissionPersistence;
2739            @BeanReference(type = ResourcePermissionFinder.class)
2740            protected ResourcePermissionFinder resourcePermissionFinder;
2741            @BeanReference(type = com.liferay.portal.kernel.service.ResourceTypePermissionLocalService.class)
2742            protected com.liferay.portal.kernel.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService;
2743            @BeanReference(type = ResourceTypePermissionPersistence.class)
2744            protected ResourceTypePermissionPersistence resourceTypePermissionPersistence;
2745            @BeanReference(type = ResourceTypePermissionFinder.class)
2746            protected ResourceTypePermissionFinder resourceTypePermissionFinder;
2747            @BeanReference(type = com.liferay.portal.kernel.service.RoleLocalService.class)
2748            protected com.liferay.portal.kernel.service.RoleLocalService roleLocalService;
2749            @BeanReference(type = com.liferay.portal.kernel.service.RoleService.class)
2750            protected com.liferay.portal.kernel.service.RoleService roleService;
2751            @BeanReference(type = RolePersistence.class)
2752            protected RolePersistence rolePersistence;
2753            @BeanReference(type = RoleFinder.class)
2754            protected RoleFinder roleFinder;
2755            @BeanReference(type = com.liferay.portal.kernel.service.SubscriptionLocalService.class)
2756            protected com.liferay.portal.kernel.service.SubscriptionLocalService subscriptionLocalService;
2757            @BeanReference(type = SubscriptionPersistence.class)
2758            protected SubscriptionPersistence subscriptionPersistence;
2759            @BeanReference(type = com.liferay.portal.kernel.service.TeamLocalService.class)
2760            protected com.liferay.portal.kernel.service.TeamLocalService teamLocalService;
2761            @BeanReference(type = com.liferay.portal.kernel.service.TeamService.class)
2762            protected com.liferay.portal.kernel.service.TeamService teamService;
2763            @BeanReference(type = TeamPersistence.class)
2764            protected TeamPersistence teamPersistence;
2765            @BeanReference(type = TeamFinder.class)
2766            protected TeamFinder teamFinder;
2767            @BeanReference(type = com.liferay.portal.kernel.service.UserLocalService.class)
2768            protected com.liferay.portal.kernel.service.UserLocalService userLocalService;
2769            @BeanReference(type = com.liferay.portal.kernel.service.UserService.class)
2770            protected com.liferay.portal.kernel.service.UserService userService;
2771            @BeanReference(type = UserPersistence.class)
2772            protected UserPersistence userPersistence;
2773            @BeanReference(type = UserFinder.class)
2774            protected UserFinder userFinder;
2775            @BeanReference(type = com.liferay.portal.kernel.service.UserGroupLocalService.class)
2776            protected com.liferay.portal.kernel.service.UserGroupLocalService userGroupLocalService;
2777            @BeanReference(type = com.liferay.portal.kernel.service.UserGroupService.class)
2778            protected com.liferay.portal.kernel.service.UserGroupService userGroupService;
2779            @BeanReference(type = UserGroupPersistence.class)
2780            protected UserGroupPersistence userGroupPersistence;
2781            @BeanReference(type = UserGroupFinder.class)
2782            protected UserGroupFinder userGroupFinder;
2783            @BeanReference(type = com.liferay.portal.kernel.service.UserGroupGroupRoleLocalService.class)
2784            protected com.liferay.portal.kernel.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService;
2785            @BeanReference(type = com.liferay.portal.kernel.service.UserGroupGroupRoleService.class)
2786            protected com.liferay.portal.kernel.service.UserGroupGroupRoleService userGroupGroupRoleService;
2787            @BeanReference(type = UserGroupGroupRolePersistence.class)
2788            protected UserGroupGroupRolePersistence userGroupGroupRolePersistence;
2789            @BeanReference(type = UserGroupGroupRoleFinder.class)
2790            protected UserGroupGroupRoleFinder userGroupGroupRoleFinder;
2791            @BeanReference(type = com.liferay.portal.kernel.service.UserGroupRoleLocalService.class)
2792            protected com.liferay.portal.kernel.service.UserGroupRoleLocalService userGroupRoleLocalService;
2793            @BeanReference(type = com.liferay.portal.kernel.service.UserGroupRoleService.class)
2794            protected com.liferay.portal.kernel.service.UserGroupRoleService userGroupRoleService;
2795            @BeanReference(type = UserGroupRolePersistence.class)
2796            protected UserGroupRolePersistence userGroupRolePersistence;
2797            @BeanReference(type = UserGroupRoleFinder.class)
2798            protected UserGroupRoleFinder userGroupRoleFinder;
2799            @BeanReference(type = com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService.class)
2800            protected com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
2801            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
2802            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
2803    }