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