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