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