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