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