001    /**
002     * Copyright (c) 2000-2013 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.jdbc.SqlUpdate;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021    import com.liferay.portal.kernel.exception.SystemException;
022    import com.liferay.portal.model.Role;
023    import com.liferay.portal.service.BaseServiceImpl;
024    import com.liferay.portal.service.RoleService;
025    import com.liferay.portal.service.persistence.AccountPersistence;
026    import com.liferay.portal.service.persistence.AddressPersistence;
027    import com.liferay.portal.service.persistence.BackgroundTaskPersistence;
028    import com.liferay.portal.service.persistence.BrowserTrackerPersistence;
029    import com.liferay.portal.service.persistence.ClassNamePersistence;
030    import com.liferay.portal.service.persistence.ClusterGroupPersistence;
031    import com.liferay.portal.service.persistence.CompanyPersistence;
032    import com.liferay.portal.service.persistence.ContactPersistence;
033    import com.liferay.portal.service.persistence.CountryPersistence;
034    import com.liferay.portal.service.persistence.EmailAddressPersistence;
035    import com.liferay.portal.service.persistence.GroupFinder;
036    import com.liferay.portal.service.persistence.GroupPersistence;
037    import com.liferay.portal.service.persistence.ImagePersistence;
038    import com.liferay.portal.service.persistence.LayoutBranchPersistence;
039    import com.liferay.portal.service.persistence.LayoutFinder;
040    import com.liferay.portal.service.persistence.LayoutFriendlyURLPersistence;
041    import com.liferay.portal.service.persistence.LayoutPersistence;
042    import com.liferay.portal.service.persistence.LayoutPrototypePersistence;
043    import com.liferay.portal.service.persistence.LayoutRevisionPersistence;
044    import com.liferay.portal.service.persistence.LayoutSetBranchPersistence;
045    import com.liferay.portal.service.persistence.LayoutSetPersistence;
046    import com.liferay.portal.service.persistence.LayoutSetPrototypePersistence;
047    import com.liferay.portal.service.persistence.ListTypePersistence;
048    import com.liferay.portal.service.persistence.LockFinder;
049    import com.liferay.portal.service.persistence.LockPersistence;
050    import com.liferay.portal.service.persistence.MembershipRequestPersistence;
051    import com.liferay.portal.service.persistence.OrgGroupRolePersistence;
052    import com.liferay.portal.service.persistence.OrgLaborPersistence;
053    import com.liferay.portal.service.persistence.OrganizationFinder;
054    import com.liferay.portal.service.persistence.OrganizationPersistence;
055    import com.liferay.portal.service.persistence.PasswordPolicyFinder;
056    import com.liferay.portal.service.persistence.PasswordPolicyPersistence;
057    import com.liferay.portal.service.persistence.PasswordPolicyRelPersistence;
058    import com.liferay.portal.service.persistence.PasswordTrackerPersistence;
059    import com.liferay.portal.service.persistence.PhonePersistence;
060    import com.liferay.portal.service.persistence.PluginSettingPersistence;
061    import com.liferay.portal.service.persistence.PortalPreferencesPersistence;
062    import com.liferay.portal.service.persistence.PortletItemPersistence;
063    import com.liferay.portal.service.persistence.PortletPersistence;
064    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
065    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
066    import com.liferay.portal.service.persistence.RegionPersistence;
067    import com.liferay.portal.service.persistence.ReleasePersistence;
068    import com.liferay.portal.service.persistence.RepositoryEntryPersistence;
069    import com.liferay.portal.service.persistence.RepositoryPersistence;
070    import com.liferay.portal.service.persistence.ResourceActionPersistence;
071    import com.liferay.portal.service.persistence.ResourceBlockFinder;
072    import com.liferay.portal.service.persistence.ResourceBlockPermissionPersistence;
073    import com.liferay.portal.service.persistence.ResourceBlockPersistence;
074    import com.liferay.portal.service.persistence.ResourcePermissionFinder;
075    import com.liferay.portal.service.persistence.ResourcePermissionPersistence;
076    import com.liferay.portal.service.persistence.ResourceTypePermissionFinder;
077    import com.liferay.portal.service.persistence.ResourceTypePermissionPersistence;
078    import com.liferay.portal.service.persistence.RoleFinder;
079    import com.liferay.portal.service.persistence.RolePersistence;
080    import com.liferay.portal.service.persistence.ServiceComponentPersistence;
081    import com.liferay.portal.service.persistence.ShardPersistence;
082    import com.liferay.portal.service.persistence.SubscriptionPersistence;
083    import com.liferay.portal.service.persistence.SystemEventPersistence;
084    import com.liferay.portal.service.persistence.TeamFinder;
085    import com.liferay.portal.service.persistence.TeamPersistence;
086    import com.liferay.portal.service.persistence.TicketPersistence;
087    import com.liferay.portal.service.persistence.UserFinder;
088    import com.liferay.portal.service.persistence.UserGroupFinder;
089    import com.liferay.portal.service.persistence.UserGroupGroupRolePersistence;
090    import com.liferay.portal.service.persistence.UserGroupPersistence;
091    import com.liferay.portal.service.persistence.UserGroupRoleFinder;
092    import com.liferay.portal.service.persistence.UserGroupRolePersistence;
093    import com.liferay.portal.service.persistence.UserIdMapperPersistence;
094    import com.liferay.portal.service.persistence.UserNotificationDeliveryPersistence;
095    import com.liferay.portal.service.persistence.UserNotificationEventPersistence;
096    import com.liferay.portal.service.persistence.UserPersistence;
097    import com.liferay.portal.service.persistence.UserTrackerPathPersistence;
098    import com.liferay.portal.service.persistence.UserTrackerPersistence;
099    import com.liferay.portal.service.persistence.VirtualHostPersistence;
100    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
101    import com.liferay.portal.service.persistence.WebsitePersistence;
102    import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
103    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
104    
105    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
106    
107    import javax.sql.DataSource;
108    
109    /**
110     * Provides the base implementation for the role remote service.
111     *
112     * <p>
113     * 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.RoleServiceImpl}.
114     * </p>
115     *
116     * @author Brian Wing Shun Chan
117     * @see com.liferay.portal.service.impl.RoleServiceImpl
118     * @see com.liferay.portal.service.RoleServiceUtil
119     * @generated
120     */
121    public abstract class RoleServiceBaseImpl extends BaseServiceImpl
122            implements RoleService, IdentifiableBean {
123            /*
124             * NOTE FOR DEVELOPERS:
125             *
126             * Never modify or reference this class directly. Always use {@link com.liferay.portal.service.RoleServiceUtil} to access the role remote service.
127             */
128    
129            /**
130             * Returns the account local service.
131             *
132             * @return the account local service
133             */
134            public com.liferay.portal.service.AccountLocalService getAccountLocalService() {
135                    return accountLocalService;
136            }
137    
138            /**
139             * Sets the account local service.
140             *
141             * @param accountLocalService the account local service
142             */
143            public void setAccountLocalService(
144                    com.liferay.portal.service.AccountLocalService accountLocalService) {
145                    this.accountLocalService = accountLocalService;
146            }
147    
148            /**
149             * Returns the account remote service.
150             *
151             * @return the account remote service
152             */
153            public com.liferay.portal.service.AccountService getAccountService() {
154                    return accountService;
155            }
156    
157            /**
158             * Sets the account remote service.
159             *
160             * @param accountService the account remote service
161             */
162            public void setAccountService(
163                    com.liferay.portal.service.AccountService accountService) {
164                    this.accountService = accountService;
165            }
166    
167            /**
168             * Returns the account persistence.
169             *
170             * @return the account persistence
171             */
172            public AccountPersistence getAccountPersistence() {
173                    return accountPersistence;
174            }
175    
176            /**
177             * Sets the account persistence.
178             *
179             * @param accountPersistence the account persistence
180             */
181            public void setAccountPersistence(AccountPersistence accountPersistence) {
182                    this.accountPersistence = accountPersistence;
183            }
184    
185            /**
186             * Returns the address local service.
187             *
188             * @return the address local service
189             */
190            public com.liferay.portal.service.AddressLocalService getAddressLocalService() {
191                    return addressLocalService;
192            }
193    
194            /**
195             * Sets the address local service.
196             *
197             * @param addressLocalService the address local service
198             */
199            public void setAddressLocalService(
200                    com.liferay.portal.service.AddressLocalService addressLocalService) {
201                    this.addressLocalService = addressLocalService;
202            }
203    
204            /**
205             * Returns the address remote service.
206             *
207             * @return the address remote service
208             */
209            public com.liferay.portal.service.AddressService getAddressService() {
210                    return addressService;
211            }
212    
213            /**
214             * Sets the address remote service.
215             *
216             * @param addressService the address remote service
217             */
218            public void setAddressService(
219                    com.liferay.portal.service.AddressService addressService) {
220                    this.addressService = addressService;
221            }
222    
223            /**
224             * Returns the address persistence.
225             *
226             * @return the address persistence
227             */
228            public AddressPersistence getAddressPersistence() {
229                    return addressPersistence;
230            }
231    
232            /**
233             * Sets the address persistence.
234             *
235             * @param addressPersistence the address persistence
236             */
237            public void setAddressPersistence(AddressPersistence addressPersistence) {
238                    this.addressPersistence = addressPersistence;
239            }
240    
241            /**
242             * Returns the background task local service.
243             *
244             * @return the background task local service
245             */
246            public com.liferay.portal.service.BackgroundTaskLocalService getBackgroundTaskLocalService() {
247                    return backgroundTaskLocalService;
248            }
249    
250            /**
251             * Sets the background task local service.
252             *
253             * @param backgroundTaskLocalService the background task local service
254             */
255            public void setBackgroundTaskLocalService(
256                    com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService) {
257                    this.backgroundTaskLocalService = backgroundTaskLocalService;
258            }
259    
260            /**
261             * Returns the background task remote service.
262             *
263             * @return the background task remote service
264             */
265            public com.liferay.portal.service.BackgroundTaskService getBackgroundTaskService() {
266                    return backgroundTaskService;
267            }
268    
269            /**
270             * Sets the background task remote service.
271             *
272             * @param backgroundTaskService the background task remote service
273             */
274            public void setBackgroundTaskService(
275                    com.liferay.portal.service.BackgroundTaskService backgroundTaskService) {
276                    this.backgroundTaskService = backgroundTaskService;
277            }
278    
279            /**
280             * Returns the background task persistence.
281             *
282             * @return the background task persistence
283             */
284            public BackgroundTaskPersistence getBackgroundTaskPersistence() {
285                    return backgroundTaskPersistence;
286            }
287    
288            /**
289             * Sets the background task persistence.
290             *
291             * @param backgroundTaskPersistence the background task persistence
292             */
293            public void setBackgroundTaskPersistence(
294                    BackgroundTaskPersistence backgroundTaskPersistence) {
295                    this.backgroundTaskPersistence = backgroundTaskPersistence;
296            }
297    
298            /**
299             * Returns the browser tracker local service.
300             *
301             * @return the browser tracker local service
302             */
303            public com.liferay.portal.service.BrowserTrackerLocalService getBrowserTrackerLocalService() {
304                    return browserTrackerLocalService;
305            }
306    
307            /**
308             * Sets the browser tracker local service.
309             *
310             * @param browserTrackerLocalService the browser tracker local service
311             */
312            public void setBrowserTrackerLocalService(
313                    com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService) {
314                    this.browserTrackerLocalService = browserTrackerLocalService;
315            }
316    
317            /**
318             * Returns the browser tracker persistence.
319             *
320             * @return the browser tracker persistence
321             */
322            public BrowserTrackerPersistence getBrowserTrackerPersistence() {
323                    return browserTrackerPersistence;
324            }
325    
326            /**
327             * Sets the browser tracker persistence.
328             *
329             * @param browserTrackerPersistence the browser tracker persistence
330             */
331            public void setBrowserTrackerPersistence(
332                    BrowserTrackerPersistence browserTrackerPersistence) {
333                    this.browserTrackerPersistence = browserTrackerPersistence;
334            }
335    
336            /**
337             * Returns the class name local service.
338             *
339             * @return the class name local service
340             */
341            public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
342                    return classNameLocalService;
343            }
344    
345            /**
346             * Sets the class name local service.
347             *
348             * @param classNameLocalService the class name local service
349             */
350            public void setClassNameLocalService(
351                    com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
352                    this.classNameLocalService = classNameLocalService;
353            }
354    
355            /**
356             * Returns the class name remote service.
357             *
358             * @return the class name remote service
359             */
360            public com.liferay.portal.service.ClassNameService getClassNameService() {
361                    return classNameService;
362            }
363    
364            /**
365             * Sets the class name remote service.
366             *
367             * @param classNameService the class name remote service
368             */
369            public void setClassNameService(
370                    com.liferay.portal.service.ClassNameService classNameService) {
371                    this.classNameService = classNameService;
372            }
373    
374            /**
375             * Returns the class name persistence.
376             *
377             * @return the class name persistence
378             */
379            public ClassNamePersistence getClassNamePersistence() {
380                    return classNamePersistence;
381            }
382    
383            /**
384             * Sets the class name persistence.
385             *
386             * @param classNamePersistence the class name persistence
387             */
388            public void setClassNamePersistence(
389                    ClassNamePersistence classNamePersistence) {
390                    this.classNamePersistence = classNamePersistence;
391            }
392    
393            /**
394             * Returns the cluster group local service.
395             *
396             * @return the cluster group local service
397             */
398            public com.liferay.portal.service.ClusterGroupLocalService getClusterGroupLocalService() {
399                    return clusterGroupLocalService;
400            }
401    
402            /**
403             * Sets the cluster group local service.
404             *
405             * @param clusterGroupLocalService the cluster group local service
406             */
407            public void setClusterGroupLocalService(
408                    com.liferay.portal.service.ClusterGroupLocalService clusterGroupLocalService) {
409                    this.clusterGroupLocalService = clusterGroupLocalService;
410            }
411    
412            /**
413             * Returns the cluster group persistence.
414             *
415             * @return the cluster group persistence
416             */
417            public ClusterGroupPersistence getClusterGroupPersistence() {
418                    return clusterGroupPersistence;
419            }
420    
421            /**
422             * Sets the cluster group persistence.
423             *
424             * @param clusterGroupPersistence the cluster group persistence
425             */
426            public void setClusterGroupPersistence(
427                    ClusterGroupPersistence clusterGroupPersistence) {
428                    this.clusterGroupPersistence = clusterGroupPersistence;
429            }
430    
431            /**
432             * Returns the c m i s repository local service.
433             *
434             * @return the c m i s repository local service
435             */
436            public com.liferay.portal.service.CMISRepositoryLocalService getCMISRepositoryLocalService() {
437                    return cmisRepositoryLocalService;
438            }
439    
440            /**
441             * Sets the c m i s repository local service.
442             *
443             * @param cmisRepositoryLocalService the c m i s repository local service
444             */
445            public void setCMISRepositoryLocalService(
446                    com.liferay.portal.service.CMISRepositoryLocalService cmisRepositoryLocalService) {
447                    this.cmisRepositoryLocalService = cmisRepositoryLocalService;
448            }
449    
450            /**
451             * Returns the company local service.
452             *
453             * @return the company local service
454             */
455            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
456                    return companyLocalService;
457            }
458    
459            /**
460             * Sets the company local service.
461             *
462             * @param companyLocalService the company local service
463             */
464            public void setCompanyLocalService(
465                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
466                    this.companyLocalService = companyLocalService;
467            }
468    
469            /**
470             * Returns the company remote service.
471             *
472             * @return the company remote service
473             */
474            public com.liferay.portal.service.CompanyService getCompanyService() {
475                    return companyService;
476            }
477    
478            /**
479             * Sets the company remote service.
480             *
481             * @param companyService the company remote service
482             */
483            public void setCompanyService(
484                    com.liferay.portal.service.CompanyService companyService) {
485                    this.companyService = companyService;
486            }
487    
488            /**
489             * Returns the company persistence.
490             *
491             * @return the company persistence
492             */
493            public CompanyPersistence getCompanyPersistence() {
494                    return companyPersistence;
495            }
496    
497            /**
498             * Sets the company persistence.
499             *
500             * @param companyPersistence the company persistence
501             */
502            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
503                    this.companyPersistence = companyPersistence;
504            }
505    
506            /**
507             * Returns the contact local service.
508             *
509             * @return the contact local service
510             */
511            public com.liferay.portal.service.ContactLocalService getContactLocalService() {
512                    return contactLocalService;
513            }
514    
515            /**
516             * Sets the contact local service.
517             *
518             * @param contactLocalService the contact local service
519             */
520            public void setContactLocalService(
521                    com.liferay.portal.service.ContactLocalService contactLocalService) {
522                    this.contactLocalService = contactLocalService;
523            }
524    
525            /**
526             * Returns the contact remote service.
527             *
528             * @return the contact remote service
529             */
530            public com.liferay.portal.service.ContactService getContactService() {
531                    return contactService;
532            }
533    
534            /**
535             * Sets the contact remote service.
536             *
537             * @param contactService the contact remote service
538             */
539            public void setContactService(
540                    com.liferay.portal.service.ContactService contactService) {
541                    this.contactService = contactService;
542            }
543    
544            /**
545             * Returns the contact persistence.
546             *
547             * @return the contact persistence
548             */
549            public ContactPersistence getContactPersistence() {
550                    return contactPersistence;
551            }
552    
553            /**
554             * Sets the contact persistence.
555             *
556             * @param contactPersistence the contact persistence
557             */
558            public void setContactPersistence(ContactPersistence contactPersistence) {
559                    this.contactPersistence = contactPersistence;
560            }
561    
562            /**
563             * Returns the country remote service.
564             *
565             * @return the country remote service
566             */
567            public com.liferay.portal.service.CountryService getCountryService() {
568                    return countryService;
569            }
570    
571            /**
572             * Sets the country remote service.
573             *
574             * @param countryService the country remote service
575             */
576            public void setCountryService(
577                    com.liferay.portal.service.CountryService countryService) {
578                    this.countryService = countryService;
579            }
580    
581            /**
582             * Returns the country persistence.
583             *
584             * @return the country persistence
585             */
586            public CountryPersistence getCountryPersistence() {
587                    return countryPersistence;
588            }
589    
590            /**
591             * Sets the country persistence.
592             *
593             * @param countryPersistence the country persistence
594             */
595            public void setCountryPersistence(CountryPersistence countryPersistence) {
596                    this.countryPersistence = countryPersistence;
597            }
598    
599            /**
600             * Returns the email address local service.
601             *
602             * @return the email address local service
603             */
604            public com.liferay.portal.service.EmailAddressLocalService getEmailAddressLocalService() {
605                    return emailAddressLocalService;
606            }
607    
608            /**
609             * Sets the email address local service.
610             *
611             * @param emailAddressLocalService the email address local service
612             */
613            public void setEmailAddressLocalService(
614                    com.liferay.portal.service.EmailAddressLocalService emailAddressLocalService) {
615                    this.emailAddressLocalService = emailAddressLocalService;
616            }
617    
618            /**
619             * Returns the email address remote service.
620             *
621             * @return the email address remote service
622             */
623            public com.liferay.portal.service.EmailAddressService getEmailAddressService() {
624                    return emailAddressService;
625            }
626    
627            /**
628             * Sets the email address remote service.
629             *
630             * @param emailAddressService the email address remote service
631             */
632            public void setEmailAddressService(
633                    com.liferay.portal.service.EmailAddressService emailAddressService) {
634                    this.emailAddressService = emailAddressService;
635            }
636    
637            /**
638             * Returns the email address persistence.
639             *
640             * @return the email address persistence
641             */
642            public EmailAddressPersistence getEmailAddressPersistence() {
643                    return emailAddressPersistence;
644            }
645    
646            /**
647             * Sets the email address persistence.
648             *
649             * @param emailAddressPersistence the email address persistence
650             */
651            public void setEmailAddressPersistence(
652                    EmailAddressPersistence emailAddressPersistence) {
653                    this.emailAddressPersistence = emailAddressPersistence;
654            }
655    
656            /**
657             * Returns the group local service.
658             *
659             * @return the group local service
660             */
661            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
662                    return groupLocalService;
663            }
664    
665            /**
666             * Sets the group local service.
667             *
668             * @param groupLocalService the group local service
669             */
670            public void setGroupLocalService(
671                    com.liferay.portal.service.GroupLocalService groupLocalService) {
672                    this.groupLocalService = groupLocalService;
673            }
674    
675            /**
676             * Returns the group remote service.
677             *
678             * @return the group remote service
679             */
680            public com.liferay.portal.service.GroupService getGroupService() {
681                    return groupService;
682            }
683    
684            /**
685             * Sets the group remote service.
686             *
687             * @param groupService the group remote service
688             */
689            public void setGroupService(
690                    com.liferay.portal.service.GroupService groupService) {
691                    this.groupService = groupService;
692            }
693    
694            /**
695             * Returns the group persistence.
696             *
697             * @return the group persistence
698             */
699            public GroupPersistence getGroupPersistence() {
700                    return groupPersistence;
701            }
702    
703            /**
704             * Sets the group persistence.
705             *
706             * @param groupPersistence the group persistence
707             */
708            public void setGroupPersistence(GroupPersistence groupPersistence) {
709                    this.groupPersistence = groupPersistence;
710            }
711    
712            /**
713             * Returns the group finder.
714             *
715             * @return the group finder
716             */
717            public GroupFinder getGroupFinder() {
718                    return groupFinder;
719            }
720    
721            /**
722             * Sets the group finder.
723             *
724             * @param groupFinder the group finder
725             */
726            public void setGroupFinder(GroupFinder groupFinder) {
727                    this.groupFinder = groupFinder;
728            }
729    
730            /**
731             * Returns the image local service.
732             *
733             * @return the image local service
734             */
735            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
736                    return imageLocalService;
737            }
738    
739            /**
740             * Sets the image local service.
741             *
742             * @param imageLocalService the image local service
743             */
744            public void setImageLocalService(
745                    com.liferay.portal.service.ImageLocalService imageLocalService) {
746                    this.imageLocalService = imageLocalService;
747            }
748    
749            /**
750             * Returns the image remote service.
751             *
752             * @return the image remote service
753             */
754            public com.liferay.portal.service.ImageService getImageService() {
755                    return imageService;
756            }
757    
758            /**
759             * Sets the image remote service.
760             *
761             * @param imageService the image remote service
762             */
763            public void setImageService(
764                    com.liferay.portal.service.ImageService imageService) {
765                    this.imageService = imageService;
766            }
767    
768            /**
769             * Returns the image persistence.
770             *
771             * @return the image persistence
772             */
773            public ImagePersistence getImagePersistence() {
774                    return imagePersistence;
775            }
776    
777            /**
778             * Sets the image persistence.
779             *
780             * @param imagePersistence the image persistence
781             */
782            public void setImagePersistence(ImagePersistence imagePersistence) {
783                    this.imagePersistence = imagePersistence;
784            }
785    
786            /**
787             * Returns the layout local service.
788             *
789             * @return the layout local service
790             */
791            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
792                    return layoutLocalService;
793            }
794    
795            /**
796             * Sets the layout local service.
797             *
798             * @param layoutLocalService the layout local service
799             */
800            public void setLayoutLocalService(
801                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
802                    this.layoutLocalService = layoutLocalService;
803            }
804    
805            /**
806             * Returns the layout remote service.
807             *
808             * @return the layout remote service
809             */
810            public com.liferay.portal.service.LayoutService getLayoutService() {
811                    return layoutService;
812            }
813    
814            /**
815             * Sets the layout remote service.
816             *
817             * @param layoutService the layout remote service
818             */
819            public void setLayoutService(
820                    com.liferay.portal.service.LayoutService layoutService) {
821                    this.layoutService = layoutService;
822            }
823    
824            /**
825             * Returns the layout persistence.
826             *
827             * @return the layout persistence
828             */
829            public LayoutPersistence getLayoutPersistence() {
830                    return layoutPersistence;
831            }
832    
833            /**
834             * Sets the layout persistence.
835             *
836             * @param layoutPersistence the layout persistence
837             */
838            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
839                    this.layoutPersistence = layoutPersistence;
840            }
841    
842            /**
843             * Returns the layout finder.
844             *
845             * @return the layout finder
846             */
847            public LayoutFinder getLayoutFinder() {
848                    return layoutFinder;
849            }
850    
851            /**
852             * Sets the layout finder.
853             *
854             * @param layoutFinder the layout finder
855             */
856            public void setLayoutFinder(LayoutFinder layoutFinder) {
857                    this.layoutFinder = layoutFinder;
858            }
859    
860            /**
861             * Returns the layout branch local service.
862             *
863             * @return the layout branch local service
864             */
865            public com.liferay.portal.service.LayoutBranchLocalService getLayoutBranchLocalService() {
866                    return layoutBranchLocalService;
867            }
868    
869            /**
870             * Sets the layout branch local service.
871             *
872             * @param layoutBranchLocalService the layout branch local service
873             */
874            public void setLayoutBranchLocalService(
875                    com.liferay.portal.service.LayoutBranchLocalService layoutBranchLocalService) {
876                    this.layoutBranchLocalService = layoutBranchLocalService;
877            }
878    
879            /**
880             * Returns the layout branch remote service.
881             *
882             * @return the layout branch remote service
883             */
884            public com.liferay.portal.service.LayoutBranchService getLayoutBranchService() {
885                    return layoutBranchService;
886            }
887    
888            /**
889             * Sets the layout branch remote service.
890             *
891             * @param layoutBranchService the layout branch remote service
892             */
893            public void setLayoutBranchService(
894                    com.liferay.portal.service.LayoutBranchService layoutBranchService) {
895                    this.layoutBranchService = layoutBranchService;
896            }
897    
898            /**
899             * Returns the layout branch persistence.
900             *
901             * @return the layout branch persistence
902             */
903            public LayoutBranchPersistence getLayoutBranchPersistence() {
904                    return layoutBranchPersistence;
905            }
906    
907            /**
908             * Sets the layout branch persistence.
909             *
910             * @param layoutBranchPersistence the layout branch persistence
911             */
912            public void setLayoutBranchPersistence(
913                    LayoutBranchPersistence layoutBranchPersistence) {
914                    this.layoutBranchPersistence = layoutBranchPersistence;
915            }
916    
917            /**
918             * Returns the layout friendly u r l local service.
919             *
920             * @return the layout friendly u r l local service
921             */
922            public com.liferay.portal.service.LayoutFriendlyURLLocalService getLayoutFriendlyURLLocalService() {
923                    return layoutFriendlyURLLocalService;
924            }
925    
926            /**
927             * Sets the layout friendly u r l local service.
928             *
929             * @param layoutFriendlyURLLocalService the layout friendly u r l local service
930             */
931            public void setLayoutFriendlyURLLocalService(
932                    com.liferay.portal.service.LayoutFriendlyURLLocalService layoutFriendlyURLLocalService) {
933                    this.layoutFriendlyURLLocalService = layoutFriendlyURLLocalService;
934            }
935    
936            /**
937             * Returns the layout friendly u r l persistence.
938             *
939             * @return the layout friendly u r l persistence
940             */
941            public LayoutFriendlyURLPersistence getLayoutFriendlyURLPersistence() {
942                    return layoutFriendlyURLPersistence;
943            }
944    
945            /**
946             * Sets the layout friendly u r l persistence.
947             *
948             * @param layoutFriendlyURLPersistence the layout friendly u r l persistence
949             */
950            public void setLayoutFriendlyURLPersistence(
951                    LayoutFriendlyURLPersistence layoutFriendlyURLPersistence) {
952                    this.layoutFriendlyURLPersistence = layoutFriendlyURLPersistence;
953            }
954    
955            /**
956             * Returns the layout prototype local service.
957             *
958             * @return the layout prototype local service
959             */
960            public com.liferay.portal.service.LayoutPrototypeLocalService getLayoutPrototypeLocalService() {
961                    return layoutPrototypeLocalService;
962            }
963    
964            /**
965             * Sets the layout prototype local service.
966             *
967             * @param layoutPrototypeLocalService the layout prototype local service
968             */
969            public void setLayoutPrototypeLocalService(
970                    com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService) {
971                    this.layoutPrototypeLocalService = layoutPrototypeLocalService;
972            }
973    
974            /**
975             * Returns the layout prototype remote service.
976             *
977             * @return the layout prototype remote service
978             */
979            public com.liferay.portal.service.LayoutPrototypeService getLayoutPrototypeService() {
980                    return layoutPrototypeService;
981            }
982    
983            /**
984             * Sets the layout prototype remote service.
985             *
986             * @param layoutPrototypeService the layout prototype remote service
987             */
988            public void setLayoutPrototypeService(
989                    com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService) {
990                    this.layoutPrototypeService = layoutPrototypeService;
991            }
992    
993            /**
994             * Returns the layout prototype persistence.
995             *
996             * @return the layout prototype persistence
997             */
998            public LayoutPrototypePersistence getLayoutPrototypePersistence() {
999                    return layoutPrototypePersistence;
1000            }
1001    
1002            /**
1003             * Sets the layout prototype persistence.
1004             *
1005             * @param layoutPrototypePersistence the layout prototype persistence
1006             */
1007            public void setLayoutPrototypePersistence(
1008                    LayoutPrototypePersistence layoutPrototypePersistence) {
1009                    this.layoutPrototypePersistence = layoutPrototypePersistence;
1010            }
1011    
1012            /**
1013             * Returns the layout revision local service.
1014             *
1015             * @return the layout revision local service
1016             */
1017            public com.liferay.portal.service.LayoutRevisionLocalService getLayoutRevisionLocalService() {
1018                    return layoutRevisionLocalService;
1019            }
1020    
1021            /**
1022             * Sets the layout revision local service.
1023             *
1024             * @param layoutRevisionLocalService the layout revision local service
1025             */
1026            public void setLayoutRevisionLocalService(
1027                    com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService) {
1028                    this.layoutRevisionLocalService = layoutRevisionLocalService;
1029            }
1030    
1031            /**
1032             * Returns the layout revision remote service.
1033             *
1034             * @return the layout revision remote service
1035             */
1036            public com.liferay.portal.service.LayoutRevisionService getLayoutRevisionService() {
1037                    return layoutRevisionService;
1038            }
1039    
1040            /**
1041             * Sets the layout revision remote service.
1042             *
1043             * @param layoutRevisionService the layout revision remote service
1044             */
1045            public void setLayoutRevisionService(
1046                    com.liferay.portal.service.LayoutRevisionService layoutRevisionService) {
1047                    this.layoutRevisionService = layoutRevisionService;
1048            }
1049    
1050            /**
1051             * Returns the layout revision persistence.
1052             *
1053             * @return the layout revision persistence
1054             */
1055            public LayoutRevisionPersistence getLayoutRevisionPersistence() {
1056                    return layoutRevisionPersistence;
1057            }
1058    
1059            /**
1060             * Sets the layout revision persistence.
1061             *
1062             * @param layoutRevisionPersistence the layout revision persistence
1063             */
1064            public void setLayoutRevisionPersistence(
1065                    LayoutRevisionPersistence layoutRevisionPersistence) {
1066                    this.layoutRevisionPersistence = layoutRevisionPersistence;
1067            }
1068    
1069            /**
1070             * Returns the layout set local service.
1071             *
1072             * @return the layout set local service
1073             */
1074            public com.liferay.portal.service.LayoutSetLocalService getLayoutSetLocalService() {
1075                    return layoutSetLocalService;
1076            }
1077    
1078            /**
1079             * Sets the layout set local service.
1080             *
1081             * @param layoutSetLocalService the layout set local service
1082             */
1083            public void setLayoutSetLocalService(
1084                    com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService) {
1085                    this.layoutSetLocalService = layoutSetLocalService;
1086            }
1087    
1088            /**
1089             * Returns the layout set remote service.
1090             *
1091             * @return the layout set remote service
1092             */
1093            public com.liferay.portal.service.LayoutSetService getLayoutSetService() {
1094                    return layoutSetService;
1095            }
1096    
1097            /**
1098             * Sets the layout set remote service.
1099             *
1100             * @param layoutSetService the layout set remote service
1101             */
1102            public void setLayoutSetService(
1103                    com.liferay.portal.service.LayoutSetService layoutSetService) {
1104                    this.layoutSetService = layoutSetService;
1105            }
1106    
1107            /**
1108             * Returns the layout set persistence.
1109             *
1110             * @return the layout set persistence
1111             */
1112            public LayoutSetPersistence getLayoutSetPersistence() {
1113                    return layoutSetPersistence;
1114            }
1115    
1116            /**
1117             * Sets the layout set persistence.
1118             *
1119             * @param layoutSetPersistence the layout set persistence
1120             */
1121            public void setLayoutSetPersistence(
1122                    LayoutSetPersistence layoutSetPersistence) {
1123                    this.layoutSetPersistence = layoutSetPersistence;
1124            }
1125    
1126            /**
1127             * Returns the layout set branch local service.
1128             *
1129             * @return the layout set branch local service
1130             */
1131            public com.liferay.portal.service.LayoutSetBranchLocalService getLayoutSetBranchLocalService() {
1132                    return layoutSetBranchLocalService;
1133            }
1134    
1135            /**
1136             * Sets the layout set branch local service.
1137             *
1138             * @param layoutSetBranchLocalService the layout set branch local service
1139             */
1140            public void setLayoutSetBranchLocalService(
1141                    com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService) {
1142                    this.layoutSetBranchLocalService = layoutSetBranchLocalService;
1143            }
1144    
1145            /**
1146             * Returns the layout set branch remote service.
1147             *
1148             * @return the layout set branch remote service
1149             */
1150            public com.liferay.portal.service.LayoutSetBranchService getLayoutSetBranchService() {
1151                    return layoutSetBranchService;
1152            }
1153    
1154            /**
1155             * Sets the layout set branch remote service.
1156             *
1157             * @param layoutSetBranchService the layout set branch remote service
1158             */
1159            public void setLayoutSetBranchService(
1160                    com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService) {
1161                    this.layoutSetBranchService = layoutSetBranchService;
1162            }
1163    
1164            /**
1165             * Returns the layout set branch persistence.
1166             *
1167             * @return the layout set branch persistence
1168             */
1169            public LayoutSetBranchPersistence getLayoutSetBranchPersistence() {
1170                    return layoutSetBranchPersistence;
1171            }
1172    
1173            /**
1174             * Sets the layout set branch persistence.
1175             *
1176             * @param layoutSetBranchPersistence the layout set branch persistence
1177             */
1178            public void setLayoutSetBranchPersistence(
1179                    LayoutSetBranchPersistence layoutSetBranchPersistence) {
1180                    this.layoutSetBranchPersistence = layoutSetBranchPersistence;
1181            }
1182    
1183            /**
1184             * Returns the layout set prototype local service.
1185             *
1186             * @return the layout set prototype local service
1187             */
1188            public com.liferay.portal.service.LayoutSetPrototypeLocalService getLayoutSetPrototypeLocalService() {
1189                    return layoutSetPrototypeLocalService;
1190            }
1191    
1192            /**
1193             * Sets the layout set prototype local service.
1194             *
1195             * @param layoutSetPrototypeLocalService the layout set prototype local service
1196             */
1197            public void setLayoutSetPrototypeLocalService(
1198                    com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService) {
1199                    this.layoutSetPrototypeLocalService = layoutSetPrototypeLocalService;
1200            }
1201    
1202            /**
1203             * Returns the layout set prototype remote service.
1204             *
1205             * @return the layout set prototype remote service
1206             */
1207            public com.liferay.portal.service.LayoutSetPrototypeService getLayoutSetPrototypeService() {
1208                    return layoutSetPrototypeService;
1209            }
1210    
1211            /**
1212             * Sets the layout set prototype remote service.
1213             *
1214             * @param layoutSetPrototypeService the layout set prototype remote service
1215             */
1216            public void setLayoutSetPrototypeService(
1217                    com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService) {
1218                    this.layoutSetPrototypeService = layoutSetPrototypeService;
1219            }
1220    
1221            /**
1222             * Returns the layout set prototype persistence.
1223             *
1224             * @return the layout set prototype persistence
1225             */
1226            public LayoutSetPrototypePersistence getLayoutSetPrototypePersistence() {
1227                    return layoutSetPrototypePersistence;
1228            }
1229    
1230            /**
1231             * Sets the layout set prototype persistence.
1232             *
1233             * @param layoutSetPrototypePersistence the layout set prototype persistence
1234             */
1235            public void setLayoutSetPrototypePersistence(
1236                    LayoutSetPrototypePersistence layoutSetPrototypePersistence) {
1237                    this.layoutSetPrototypePersistence = layoutSetPrototypePersistence;
1238            }
1239    
1240            /**
1241             * Returns the layout template local service.
1242             *
1243             * @return the layout template local service
1244             */
1245            public com.liferay.portal.service.LayoutTemplateLocalService getLayoutTemplateLocalService() {
1246                    return layoutTemplateLocalService;
1247            }
1248    
1249            /**
1250             * Sets the layout template local service.
1251             *
1252             * @param layoutTemplateLocalService the layout template local service
1253             */
1254            public void setLayoutTemplateLocalService(
1255                    com.liferay.portal.service.LayoutTemplateLocalService layoutTemplateLocalService) {
1256                    this.layoutTemplateLocalService = layoutTemplateLocalService;
1257            }
1258    
1259            /**
1260             * Returns the list type remote service.
1261             *
1262             * @return the list type remote service
1263             */
1264            public com.liferay.portal.service.ListTypeService getListTypeService() {
1265                    return listTypeService;
1266            }
1267    
1268            /**
1269             * Sets the list type remote service.
1270             *
1271             * @param listTypeService the list type remote service
1272             */
1273            public void setListTypeService(
1274                    com.liferay.portal.service.ListTypeService listTypeService) {
1275                    this.listTypeService = listTypeService;
1276            }
1277    
1278            /**
1279             * Returns the list type persistence.
1280             *
1281             * @return the list type persistence
1282             */
1283            public ListTypePersistence getListTypePersistence() {
1284                    return listTypePersistence;
1285            }
1286    
1287            /**
1288             * Sets the list type persistence.
1289             *
1290             * @param listTypePersistence the list type persistence
1291             */
1292            public void setListTypePersistence(ListTypePersistence listTypePersistence) {
1293                    this.listTypePersistence = listTypePersistence;
1294            }
1295    
1296            /**
1297             * Returns the lock local service.
1298             *
1299             * @return the lock local service
1300             */
1301            public com.liferay.portal.service.LockLocalService getLockLocalService() {
1302                    return lockLocalService;
1303            }
1304    
1305            /**
1306             * Sets the lock local service.
1307             *
1308             * @param lockLocalService the lock local service
1309             */
1310            public void setLockLocalService(
1311                    com.liferay.portal.service.LockLocalService lockLocalService) {
1312                    this.lockLocalService = lockLocalService;
1313            }
1314    
1315            /**
1316             * Returns the lock persistence.
1317             *
1318             * @return the lock persistence
1319             */
1320            public LockPersistence getLockPersistence() {
1321                    return lockPersistence;
1322            }
1323    
1324            /**
1325             * Sets the lock persistence.
1326             *
1327             * @param lockPersistence the lock persistence
1328             */
1329            public void setLockPersistence(LockPersistence lockPersistence) {
1330                    this.lockPersistence = lockPersistence;
1331            }
1332    
1333            /**
1334             * Returns the lock finder.
1335             *
1336             * @return the lock finder
1337             */
1338            public LockFinder getLockFinder() {
1339                    return lockFinder;
1340            }
1341    
1342            /**
1343             * Sets the lock finder.
1344             *
1345             * @param lockFinder the lock finder
1346             */
1347            public void setLockFinder(LockFinder lockFinder) {
1348                    this.lockFinder = lockFinder;
1349            }
1350    
1351            /**
1352             * Returns the membership request local service.
1353             *
1354             * @return the membership request local service
1355             */
1356            public com.liferay.portal.service.MembershipRequestLocalService getMembershipRequestLocalService() {
1357                    return membershipRequestLocalService;
1358            }
1359    
1360            /**
1361             * Sets the membership request local service.
1362             *
1363             * @param membershipRequestLocalService the membership request local service
1364             */
1365            public void setMembershipRequestLocalService(
1366                    com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService) {
1367                    this.membershipRequestLocalService = membershipRequestLocalService;
1368            }
1369    
1370            /**
1371             * Returns the membership request remote service.
1372             *
1373             * @return the membership request remote service
1374             */
1375            public com.liferay.portal.service.MembershipRequestService getMembershipRequestService() {
1376                    return membershipRequestService;
1377            }
1378    
1379            /**
1380             * Sets the membership request remote service.
1381             *
1382             * @param membershipRequestService the membership request remote service
1383             */
1384            public void setMembershipRequestService(
1385                    com.liferay.portal.service.MembershipRequestService membershipRequestService) {
1386                    this.membershipRequestService = membershipRequestService;
1387            }
1388    
1389            /**
1390             * Returns the membership request persistence.
1391             *
1392             * @return the membership request persistence
1393             */
1394            public MembershipRequestPersistence getMembershipRequestPersistence() {
1395                    return membershipRequestPersistence;
1396            }
1397    
1398            /**
1399             * Sets the membership request persistence.
1400             *
1401             * @param membershipRequestPersistence the membership request persistence
1402             */
1403            public void setMembershipRequestPersistence(
1404                    MembershipRequestPersistence membershipRequestPersistence) {
1405                    this.membershipRequestPersistence = membershipRequestPersistence;
1406            }
1407    
1408            /**
1409             * Returns the organization local service.
1410             *
1411             * @return the organization local service
1412             */
1413            public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
1414                    return organizationLocalService;
1415            }
1416    
1417            /**
1418             * Sets the organization local service.
1419             *
1420             * @param organizationLocalService the organization local service
1421             */
1422            public void setOrganizationLocalService(
1423                    com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
1424                    this.organizationLocalService = organizationLocalService;
1425            }
1426    
1427            /**
1428             * Returns the organization remote service.
1429             *
1430             * @return the organization remote service
1431             */
1432            public com.liferay.portal.service.OrganizationService getOrganizationService() {
1433                    return organizationService;
1434            }
1435    
1436            /**
1437             * Sets the organization remote service.
1438             *
1439             * @param organizationService the organization remote service
1440             */
1441            public void setOrganizationService(
1442                    com.liferay.portal.service.OrganizationService organizationService) {
1443                    this.organizationService = organizationService;
1444            }
1445    
1446            /**
1447             * Returns the organization persistence.
1448             *
1449             * @return the organization persistence
1450             */
1451            public OrganizationPersistence getOrganizationPersistence() {
1452                    return organizationPersistence;
1453            }
1454    
1455            /**
1456             * Sets the organization persistence.
1457             *
1458             * @param organizationPersistence the organization persistence
1459             */
1460            public void setOrganizationPersistence(
1461                    OrganizationPersistence organizationPersistence) {
1462                    this.organizationPersistence = organizationPersistence;
1463            }
1464    
1465            /**
1466             * Returns the organization finder.
1467             *
1468             * @return the organization finder
1469             */
1470            public OrganizationFinder getOrganizationFinder() {
1471                    return organizationFinder;
1472            }
1473    
1474            /**
1475             * Sets the organization finder.
1476             *
1477             * @param organizationFinder the organization finder
1478             */
1479            public void setOrganizationFinder(OrganizationFinder organizationFinder) {
1480                    this.organizationFinder = organizationFinder;
1481            }
1482    
1483            /**
1484             * Returns the org group role persistence.
1485             *
1486             * @return the org group role persistence
1487             */
1488            public OrgGroupRolePersistence getOrgGroupRolePersistence() {
1489                    return orgGroupRolePersistence;
1490            }
1491    
1492            /**
1493             * Sets the org group role persistence.
1494             *
1495             * @param orgGroupRolePersistence the org group role persistence
1496             */
1497            public void setOrgGroupRolePersistence(
1498                    OrgGroupRolePersistence orgGroupRolePersistence) {
1499                    this.orgGroupRolePersistence = orgGroupRolePersistence;
1500            }
1501    
1502            /**
1503             * Returns the org labor local service.
1504             *
1505             * @return the org labor local service
1506             */
1507            public com.liferay.portal.service.OrgLaborLocalService getOrgLaborLocalService() {
1508                    return orgLaborLocalService;
1509            }
1510    
1511            /**
1512             * Sets the org labor local service.
1513             *
1514             * @param orgLaborLocalService the org labor local service
1515             */
1516            public void setOrgLaborLocalService(
1517                    com.liferay.portal.service.OrgLaborLocalService orgLaborLocalService) {
1518                    this.orgLaborLocalService = orgLaborLocalService;
1519            }
1520    
1521            /**
1522             * Returns the org labor remote service.
1523             *
1524             * @return the org labor remote service
1525             */
1526            public com.liferay.portal.service.OrgLaborService getOrgLaborService() {
1527                    return orgLaborService;
1528            }
1529    
1530            /**
1531             * Sets the org labor remote service.
1532             *
1533             * @param orgLaborService the org labor remote service
1534             */
1535            public void setOrgLaborService(
1536                    com.liferay.portal.service.OrgLaborService orgLaborService) {
1537                    this.orgLaborService = orgLaborService;
1538            }
1539    
1540            /**
1541             * Returns the org labor persistence.
1542             *
1543             * @return the org labor persistence
1544             */
1545            public OrgLaborPersistence getOrgLaborPersistence() {
1546                    return orgLaborPersistence;
1547            }
1548    
1549            /**
1550             * Sets the org labor persistence.
1551             *
1552             * @param orgLaborPersistence the org labor persistence
1553             */
1554            public void setOrgLaborPersistence(OrgLaborPersistence orgLaborPersistence) {
1555                    this.orgLaborPersistence = orgLaborPersistence;
1556            }
1557    
1558            /**
1559             * Returns the password policy local service.
1560             *
1561             * @return the password policy local service
1562             */
1563            public com.liferay.portal.service.PasswordPolicyLocalService getPasswordPolicyLocalService() {
1564                    return passwordPolicyLocalService;
1565            }
1566    
1567            /**
1568             * Sets the password policy local service.
1569             *
1570             * @param passwordPolicyLocalService the password policy local service
1571             */
1572            public void setPasswordPolicyLocalService(
1573                    com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService) {
1574                    this.passwordPolicyLocalService = passwordPolicyLocalService;
1575            }
1576    
1577            /**
1578             * Returns the password policy remote service.
1579             *
1580             * @return the password policy remote service
1581             */
1582            public com.liferay.portal.service.PasswordPolicyService getPasswordPolicyService() {
1583                    return passwordPolicyService;
1584            }
1585    
1586            /**
1587             * Sets the password policy remote service.
1588             *
1589             * @param passwordPolicyService the password policy remote service
1590             */
1591            public void setPasswordPolicyService(
1592                    com.liferay.portal.service.PasswordPolicyService passwordPolicyService) {
1593                    this.passwordPolicyService = passwordPolicyService;
1594            }
1595    
1596            /**
1597             * Returns the password policy persistence.
1598             *
1599             * @return the password policy persistence
1600             */
1601            public PasswordPolicyPersistence getPasswordPolicyPersistence() {
1602                    return passwordPolicyPersistence;
1603            }
1604    
1605            /**
1606             * Sets the password policy persistence.
1607             *
1608             * @param passwordPolicyPersistence the password policy persistence
1609             */
1610            public void setPasswordPolicyPersistence(
1611                    PasswordPolicyPersistence passwordPolicyPersistence) {
1612                    this.passwordPolicyPersistence = passwordPolicyPersistence;
1613            }
1614    
1615            /**
1616             * Returns the password policy finder.
1617             *
1618             * @return the password policy finder
1619             */
1620            public PasswordPolicyFinder getPasswordPolicyFinder() {
1621                    return passwordPolicyFinder;
1622            }
1623    
1624            /**
1625             * Sets the password policy finder.
1626             *
1627             * @param passwordPolicyFinder the password policy finder
1628             */
1629            public void setPasswordPolicyFinder(
1630                    PasswordPolicyFinder passwordPolicyFinder) {
1631                    this.passwordPolicyFinder = passwordPolicyFinder;
1632            }
1633    
1634            /**
1635             * Returns the password policy rel local service.
1636             *
1637             * @return the password policy rel local service
1638             */
1639            public com.liferay.portal.service.PasswordPolicyRelLocalService getPasswordPolicyRelLocalService() {
1640                    return passwordPolicyRelLocalService;
1641            }
1642    
1643            /**
1644             * Sets the password policy rel local service.
1645             *
1646             * @param passwordPolicyRelLocalService the password policy rel local service
1647             */
1648            public void setPasswordPolicyRelLocalService(
1649                    com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService) {
1650                    this.passwordPolicyRelLocalService = passwordPolicyRelLocalService;
1651            }
1652    
1653            /**
1654             * Returns the password policy rel persistence.
1655             *
1656             * @return the password policy rel persistence
1657             */
1658            public PasswordPolicyRelPersistence getPasswordPolicyRelPersistence() {
1659                    return passwordPolicyRelPersistence;
1660            }
1661    
1662            /**
1663             * Sets the password policy rel persistence.
1664             *
1665             * @param passwordPolicyRelPersistence the password policy rel persistence
1666             */
1667            public void setPasswordPolicyRelPersistence(
1668                    PasswordPolicyRelPersistence passwordPolicyRelPersistence) {
1669                    this.passwordPolicyRelPersistence = passwordPolicyRelPersistence;
1670            }
1671    
1672            /**
1673             * Returns the password tracker local service.
1674             *
1675             * @return the password tracker local service
1676             */
1677            public com.liferay.portal.service.PasswordTrackerLocalService getPasswordTrackerLocalService() {
1678                    return passwordTrackerLocalService;
1679            }
1680    
1681            /**
1682             * Sets the password tracker local service.
1683             *
1684             * @param passwordTrackerLocalService the password tracker local service
1685             */
1686            public void setPasswordTrackerLocalService(
1687                    com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService) {
1688                    this.passwordTrackerLocalService = passwordTrackerLocalService;
1689            }
1690    
1691            /**
1692             * Returns the password tracker persistence.
1693             *
1694             * @return the password tracker persistence
1695             */
1696            public PasswordTrackerPersistence getPasswordTrackerPersistence() {
1697                    return passwordTrackerPersistence;
1698            }
1699    
1700            /**
1701             * Sets the password tracker persistence.
1702             *
1703             * @param passwordTrackerPersistence the password tracker persistence
1704             */
1705            public void setPasswordTrackerPersistence(
1706                    PasswordTrackerPersistence passwordTrackerPersistence) {
1707                    this.passwordTrackerPersistence = passwordTrackerPersistence;
1708            }
1709    
1710            /**
1711             * Returns the permission remote service.
1712             *
1713             * @return the permission remote service
1714             */
1715            public com.liferay.portal.service.PermissionService getPermissionService() {
1716                    return permissionService;
1717            }
1718    
1719            /**
1720             * Sets the permission remote service.
1721             *
1722             * @param permissionService the permission remote service
1723             */
1724            public void setPermissionService(
1725                    com.liferay.portal.service.PermissionService permissionService) {
1726                    this.permissionService = permissionService;
1727            }
1728    
1729            /**
1730             * Returns the phone local service.
1731             *
1732             * @return the phone local service
1733             */
1734            public com.liferay.portal.service.PhoneLocalService getPhoneLocalService() {
1735                    return phoneLocalService;
1736            }
1737    
1738            /**
1739             * Sets the phone local service.
1740             *
1741             * @param phoneLocalService the phone local service
1742             */
1743            public void setPhoneLocalService(
1744                    com.liferay.portal.service.PhoneLocalService phoneLocalService) {
1745                    this.phoneLocalService = phoneLocalService;
1746            }
1747    
1748            /**
1749             * Returns the phone remote service.
1750             *
1751             * @return the phone remote service
1752             */
1753            public com.liferay.portal.service.PhoneService getPhoneService() {
1754                    return phoneService;
1755            }
1756    
1757            /**
1758             * Sets the phone remote service.
1759             *
1760             * @param phoneService the phone remote service
1761             */
1762            public void setPhoneService(
1763                    com.liferay.portal.service.PhoneService phoneService) {
1764                    this.phoneService = phoneService;
1765            }
1766    
1767            /**
1768             * Returns the phone persistence.
1769             *
1770             * @return the phone persistence
1771             */
1772            public PhonePersistence getPhonePersistence() {
1773                    return phonePersistence;
1774            }
1775    
1776            /**
1777             * Sets the phone persistence.
1778             *
1779             * @param phonePersistence the phone persistence
1780             */
1781            public void setPhonePersistence(PhonePersistence phonePersistence) {
1782                    this.phonePersistence = phonePersistence;
1783            }
1784    
1785            /**
1786             * Returns the plugin setting local service.
1787             *
1788             * @return the plugin setting local service
1789             */
1790            public com.liferay.portal.service.PluginSettingLocalService getPluginSettingLocalService() {
1791                    return pluginSettingLocalService;
1792            }
1793    
1794            /**
1795             * Sets the plugin setting local service.
1796             *
1797             * @param pluginSettingLocalService the plugin setting local service
1798             */
1799            public void setPluginSettingLocalService(
1800                    com.liferay.portal.service.PluginSettingLocalService pluginSettingLocalService) {
1801                    this.pluginSettingLocalService = pluginSettingLocalService;
1802            }
1803    
1804            /**
1805             * Returns the plugin setting remote service.
1806             *
1807             * @return the plugin setting remote service
1808             */
1809            public com.liferay.portal.service.PluginSettingService getPluginSettingService() {
1810                    return pluginSettingService;
1811            }
1812    
1813            /**
1814             * Sets the plugin setting remote service.
1815             *
1816             * @param pluginSettingService the plugin setting remote service
1817             */
1818            public void setPluginSettingService(
1819                    com.liferay.portal.service.PluginSettingService pluginSettingService) {
1820                    this.pluginSettingService = pluginSettingService;
1821            }
1822    
1823            /**
1824             * Returns the plugin setting persistence.
1825             *
1826             * @return the plugin setting persistence
1827             */
1828            public PluginSettingPersistence getPluginSettingPersistence() {
1829                    return pluginSettingPersistence;
1830            }
1831    
1832            /**
1833             * Sets the plugin setting persistence.
1834             *
1835             * @param pluginSettingPersistence the plugin setting persistence
1836             */
1837            public void setPluginSettingPersistence(
1838                    PluginSettingPersistence pluginSettingPersistence) {
1839                    this.pluginSettingPersistence = pluginSettingPersistence;
1840            }
1841    
1842            /**
1843             * Returns the portal local service.
1844             *
1845             * @return the portal local service
1846             */
1847            public com.liferay.portal.service.PortalLocalService getPortalLocalService() {
1848                    return portalLocalService;
1849            }
1850    
1851            /**
1852             * Sets the portal local service.
1853             *
1854             * @param portalLocalService the portal local service
1855             */
1856            public void setPortalLocalService(
1857                    com.liferay.portal.service.PortalLocalService portalLocalService) {
1858                    this.portalLocalService = portalLocalService;
1859            }
1860    
1861            /**
1862             * Returns the portal remote service.
1863             *
1864             * @return the portal remote service
1865             */
1866            public com.liferay.portal.service.PortalService getPortalService() {
1867                    return portalService;
1868            }
1869    
1870            /**
1871             * Sets the portal remote service.
1872             *
1873             * @param portalService the portal remote service
1874             */
1875            public void setPortalService(
1876                    com.liferay.portal.service.PortalService portalService) {
1877                    this.portalService = portalService;
1878            }
1879    
1880            /**
1881             * Returns the portal preferences local service.
1882             *
1883             * @return the portal preferences local service
1884             */
1885            public com.liferay.portal.service.PortalPreferencesLocalService getPortalPreferencesLocalService() {
1886                    return portalPreferencesLocalService;
1887            }
1888    
1889            /**
1890             * Sets the portal preferences local service.
1891             *
1892             * @param portalPreferencesLocalService the portal preferences local service
1893             */
1894            public void setPortalPreferencesLocalService(
1895                    com.liferay.portal.service.PortalPreferencesLocalService portalPreferencesLocalService) {
1896                    this.portalPreferencesLocalService = portalPreferencesLocalService;
1897            }
1898    
1899            /**
1900             * Returns the portal preferences persistence.
1901             *
1902             * @return the portal preferences persistence
1903             */
1904            public PortalPreferencesPersistence getPortalPreferencesPersistence() {
1905                    return portalPreferencesPersistence;
1906            }
1907    
1908            /**
1909             * Sets the portal preferences persistence.
1910             *
1911             * @param portalPreferencesPersistence the portal preferences persistence
1912             */
1913            public void setPortalPreferencesPersistence(
1914                    PortalPreferencesPersistence portalPreferencesPersistence) {
1915                    this.portalPreferencesPersistence = portalPreferencesPersistence;
1916            }
1917    
1918            /**
1919             * Returns the portlet local service.
1920             *
1921             * @return the portlet local service
1922             */
1923            public com.liferay.portal.service.PortletLocalService getPortletLocalService() {
1924                    return portletLocalService;
1925            }
1926    
1927            /**
1928             * Sets the portlet local service.
1929             *
1930             * @param portletLocalService the portlet local service
1931             */
1932            public void setPortletLocalService(
1933                    com.liferay.portal.service.PortletLocalService portletLocalService) {
1934                    this.portletLocalService = portletLocalService;
1935            }
1936    
1937            /**
1938             * Returns the portlet remote service.
1939             *
1940             * @return the portlet remote service
1941             */
1942            public com.liferay.portal.service.PortletService getPortletService() {
1943                    return portletService;
1944            }
1945    
1946            /**
1947             * Sets the portlet remote service.
1948             *
1949             * @param portletService the portlet remote service
1950             */
1951            public void setPortletService(
1952                    com.liferay.portal.service.PortletService portletService) {
1953                    this.portletService = portletService;
1954            }
1955    
1956            /**
1957             * Returns the portlet persistence.
1958             *
1959             * @return the portlet persistence
1960             */
1961            public PortletPersistence getPortletPersistence() {
1962                    return portletPersistence;
1963            }
1964    
1965            /**
1966             * Sets the portlet persistence.
1967             *
1968             * @param portletPersistence the portlet persistence
1969             */
1970            public void setPortletPersistence(PortletPersistence portletPersistence) {
1971                    this.portletPersistence = portletPersistence;
1972            }
1973    
1974            /**
1975             * Returns the portlet item local service.
1976             *
1977             * @return the portlet item local service
1978             */
1979            public com.liferay.portal.service.PortletItemLocalService getPortletItemLocalService() {
1980                    return portletItemLocalService;
1981            }
1982    
1983            /**
1984             * Sets the portlet item local service.
1985             *
1986             * @param portletItemLocalService the portlet item local service
1987             */
1988            public void setPortletItemLocalService(
1989                    com.liferay.portal.service.PortletItemLocalService portletItemLocalService) {
1990                    this.portletItemLocalService = portletItemLocalService;
1991            }
1992    
1993            /**
1994             * Returns the portlet item persistence.
1995             *
1996             * @return the portlet item persistence
1997             */
1998            public PortletItemPersistence getPortletItemPersistence() {
1999                    return portletItemPersistence;
2000            }
2001    
2002            /**
2003             * Sets the portlet item persistence.
2004             *
2005             * @param portletItemPersistence the portlet item persistence
2006             */
2007            public void setPortletItemPersistence(
2008                    PortletItemPersistence portletItemPersistence) {
2009                    this.portletItemPersistence = portletItemPersistence;
2010            }
2011    
2012            /**
2013             * Returns the portlet preferences local service.
2014             *
2015             * @return the portlet preferences local service
2016             */
2017            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
2018                    return portletPreferencesLocalService;
2019            }
2020    
2021            /**
2022             * Sets the portlet preferences local service.
2023             *
2024             * @param portletPreferencesLocalService the portlet preferences local service
2025             */
2026            public void setPortletPreferencesLocalService(
2027                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
2028                    this.portletPreferencesLocalService = portletPreferencesLocalService;
2029            }
2030    
2031            /**
2032             * Returns the portlet preferences remote service.
2033             *
2034             * @return the portlet preferences remote service
2035             */
2036            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
2037                    return portletPreferencesService;
2038            }
2039    
2040            /**
2041             * Sets the portlet preferences remote service.
2042             *
2043             * @param portletPreferencesService the portlet preferences remote service
2044             */
2045            public void setPortletPreferencesService(
2046                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
2047                    this.portletPreferencesService = portletPreferencesService;
2048            }
2049    
2050            /**
2051             * Returns the portlet preferences persistence.
2052             *
2053             * @return the portlet preferences persistence
2054             */
2055            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
2056                    return portletPreferencesPersistence;
2057            }
2058    
2059            /**
2060             * Sets the portlet preferences persistence.
2061             *
2062             * @param portletPreferencesPersistence the portlet preferences persistence
2063             */
2064            public void setPortletPreferencesPersistence(
2065                    PortletPreferencesPersistence portletPreferencesPersistence) {
2066                    this.portletPreferencesPersistence = portletPreferencesPersistence;
2067            }
2068    
2069            /**
2070             * Returns the portlet preferences finder.
2071             *
2072             * @return the portlet preferences finder
2073             */
2074            public PortletPreferencesFinder getPortletPreferencesFinder() {
2075                    return portletPreferencesFinder;
2076            }
2077    
2078            /**
2079             * Sets the portlet preferences finder.
2080             *
2081             * @param portletPreferencesFinder the portlet preferences finder
2082             */
2083            public void setPortletPreferencesFinder(
2084                    PortletPreferencesFinder portletPreferencesFinder) {
2085                    this.portletPreferencesFinder = portletPreferencesFinder;
2086            }
2087    
2088            /**
2089             * Returns the quartz local service.
2090             *
2091             * @return the quartz local service
2092             */
2093            public com.liferay.portal.service.QuartzLocalService getQuartzLocalService() {
2094                    return quartzLocalService;
2095            }
2096    
2097            /**
2098             * Sets the quartz local service.
2099             *
2100             * @param quartzLocalService the quartz local service
2101             */
2102            public void setQuartzLocalService(
2103                    com.liferay.portal.service.QuartzLocalService quartzLocalService) {
2104                    this.quartzLocalService = quartzLocalService;
2105            }
2106    
2107            /**
2108             * Returns the region remote service.
2109             *
2110             * @return the region remote service
2111             */
2112            public com.liferay.portal.service.RegionService getRegionService() {
2113                    return regionService;
2114            }
2115    
2116            /**
2117             * Sets the region remote service.
2118             *
2119             * @param regionService the region remote service
2120             */
2121            public void setRegionService(
2122                    com.liferay.portal.service.RegionService regionService) {
2123                    this.regionService = regionService;
2124            }
2125    
2126            /**
2127             * Returns the region persistence.
2128             *
2129             * @return the region persistence
2130             */
2131            public RegionPersistence getRegionPersistence() {
2132                    return regionPersistence;
2133            }
2134    
2135            /**
2136             * Sets the region persistence.
2137             *
2138             * @param regionPersistence the region persistence
2139             */
2140            public void setRegionPersistence(RegionPersistence regionPersistence) {
2141                    this.regionPersistence = regionPersistence;
2142            }
2143    
2144            /**
2145             * Returns the release local service.
2146             *
2147             * @return the release local service
2148             */
2149            public com.liferay.portal.service.ReleaseLocalService getReleaseLocalService() {
2150                    return releaseLocalService;
2151            }
2152    
2153            /**
2154             * Sets the release local service.
2155             *
2156             * @param releaseLocalService the release local service
2157             */
2158            public void setReleaseLocalService(
2159                    com.liferay.portal.service.ReleaseLocalService releaseLocalService) {
2160                    this.releaseLocalService = releaseLocalService;
2161            }
2162    
2163            /**
2164             * Returns the release persistence.
2165             *
2166             * @return the release persistence
2167             */
2168            public ReleasePersistence getReleasePersistence() {
2169                    return releasePersistence;
2170            }
2171    
2172            /**
2173             * Sets the release persistence.
2174             *
2175             * @param releasePersistence the release persistence
2176             */
2177            public void setReleasePersistence(ReleasePersistence releasePersistence) {
2178                    this.releasePersistence = releasePersistence;
2179            }
2180    
2181            /**
2182             * Returns the repository local service.
2183             *
2184             * @return the repository local service
2185             */
2186            public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
2187                    return repositoryLocalService;
2188            }
2189    
2190            /**
2191             * Sets the repository local service.
2192             *
2193             * @param repositoryLocalService the repository local service
2194             */
2195            public void setRepositoryLocalService(
2196                    com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
2197                    this.repositoryLocalService = repositoryLocalService;
2198            }
2199    
2200            /**
2201             * Returns the repository remote service.
2202             *
2203             * @return the repository remote service
2204             */
2205            public com.liferay.portal.service.RepositoryService getRepositoryService() {
2206                    return repositoryService;
2207            }
2208    
2209            /**
2210             * Sets the repository remote service.
2211             *
2212             * @param repositoryService the repository remote service
2213             */
2214            public void setRepositoryService(
2215                    com.liferay.portal.service.RepositoryService repositoryService) {
2216                    this.repositoryService = repositoryService;
2217            }
2218    
2219            /**
2220             * Returns the repository persistence.
2221             *
2222             * @return the repository persistence
2223             */
2224            public RepositoryPersistence getRepositoryPersistence() {
2225                    return repositoryPersistence;
2226            }
2227    
2228            /**
2229             * Sets the repository persistence.
2230             *
2231             * @param repositoryPersistence the repository persistence
2232             */
2233            public void setRepositoryPersistence(
2234                    RepositoryPersistence repositoryPersistence) {
2235                    this.repositoryPersistence = repositoryPersistence;
2236            }
2237    
2238            /**
2239             * Returns the repository entry local service.
2240             *
2241             * @return the repository entry local service
2242             */
2243            public com.liferay.portal.service.RepositoryEntryLocalService getRepositoryEntryLocalService() {
2244                    return repositoryEntryLocalService;
2245            }
2246    
2247            /**
2248             * Sets the repository entry local service.
2249             *
2250             * @param repositoryEntryLocalService the repository entry local service
2251             */
2252            public void setRepositoryEntryLocalService(
2253                    com.liferay.portal.service.RepositoryEntryLocalService repositoryEntryLocalService) {
2254                    this.repositoryEntryLocalService = repositoryEntryLocalService;
2255            }
2256    
2257            /**
2258             * Returns the repository entry persistence.
2259             *
2260             * @return the repository entry persistence
2261             */
2262            public RepositoryEntryPersistence getRepositoryEntryPersistence() {
2263                    return repositoryEntryPersistence;
2264            }
2265    
2266            /**
2267             * Sets the repository entry persistence.
2268             *
2269             * @param repositoryEntryPersistence the repository entry persistence
2270             */
2271            public void setRepositoryEntryPersistence(
2272                    RepositoryEntryPersistence repositoryEntryPersistence) {
2273                    this.repositoryEntryPersistence = repositoryEntryPersistence;
2274            }
2275    
2276            /**
2277             * Returns the resource local service.
2278             *
2279             * @return the resource local service
2280             */
2281            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
2282                    return resourceLocalService;
2283            }
2284    
2285            /**
2286             * Sets the resource local service.
2287             *
2288             * @param resourceLocalService the resource local service
2289             */
2290            public void setResourceLocalService(
2291                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
2292                    this.resourceLocalService = resourceLocalService;
2293            }
2294    
2295            /**
2296             * Returns the resource action local service.
2297             *
2298             * @return the resource action local service
2299             */
2300            public com.liferay.portal.service.ResourceActionLocalService getResourceActionLocalService() {
2301                    return resourceActionLocalService;
2302            }
2303    
2304            /**
2305             * Sets the resource action local service.
2306             *
2307             * @param resourceActionLocalService the resource action local service
2308             */
2309            public void setResourceActionLocalService(
2310                    com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService) {
2311                    this.resourceActionLocalService = resourceActionLocalService;
2312            }
2313    
2314            /**
2315             * Returns the resource action persistence.
2316             *
2317             * @return the resource action persistence
2318             */
2319            public ResourceActionPersistence getResourceActionPersistence() {
2320                    return resourceActionPersistence;
2321            }
2322    
2323            /**
2324             * Sets the resource action persistence.
2325             *
2326             * @param resourceActionPersistence the resource action persistence
2327             */
2328            public void setResourceActionPersistence(
2329                    ResourceActionPersistence resourceActionPersistence) {
2330                    this.resourceActionPersistence = resourceActionPersistence;
2331            }
2332    
2333            /**
2334             * Returns the resource block local service.
2335             *
2336             * @return the resource block local service
2337             */
2338            public com.liferay.portal.service.ResourceBlockLocalService getResourceBlockLocalService() {
2339                    return resourceBlockLocalService;
2340            }
2341    
2342            /**
2343             * Sets the resource block local service.
2344             *
2345             * @param resourceBlockLocalService the resource block local service
2346             */
2347            public void setResourceBlockLocalService(
2348                    com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService) {
2349                    this.resourceBlockLocalService = resourceBlockLocalService;
2350            }
2351    
2352            /**
2353             * Returns the resource block remote service.
2354             *
2355             * @return the resource block remote service
2356             */
2357            public com.liferay.portal.service.ResourceBlockService getResourceBlockService() {
2358                    return resourceBlockService;
2359            }
2360    
2361            /**
2362             * Sets the resource block remote service.
2363             *
2364             * @param resourceBlockService the resource block remote service
2365             */
2366            public void setResourceBlockService(
2367                    com.liferay.portal.service.ResourceBlockService resourceBlockService) {
2368                    this.resourceBlockService = resourceBlockService;
2369            }
2370    
2371            /**
2372             * Returns the resource block persistence.
2373             *
2374             * @return the resource block persistence
2375             */
2376            public ResourceBlockPersistence getResourceBlockPersistence() {
2377                    return resourceBlockPersistence;
2378            }
2379    
2380            /**
2381             * Sets the resource block persistence.
2382             *
2383             * @param resourceBlockPersistence the resource block persistence
2384             */
2385            public void setResourceBlockPersistence(
2386                    ResourceBlockPersistence resourceBlockPersistence) {
2387                    this.resourceBlockPersistence = resourceBlockPersistence;
2388            }
2389    
2390            /**
2391             * Returns the resource block finder.
2392             *
2393             * @return the resource block finder
2394             */
2395            public ResourceBlockFinder getResourceBlockFinder() {
2396                    return resourceBlockFinder;
2397            }
2398    
2399            /**
2400             * Sets the resource block finder.
2401             *
2402             * @param resourceBlockFinder the resource block finder
2403             */
2404            public void setResourceBlockFinder(ResourceBlockFinder resourceBlockFinder) {
2405                    this.resourceBlockFinder = resourceBlockFinder;
2406            }
2407    
2408            /**
2409             * Returns the resource block permission local service.
2410             *
2411             * @return the resource block permission local service
2412             */
2413            public com.liferay.portal.service.ResourceBlockPermissionLocalService getResourceBlockPermissionLocalService() {
2414                    return resourceBlockPermissionLocalService;
2415            }
2416    
2417            /**
2418             * Sets the resource block permission local service.
2419             *
2420             * @param resourceBlockPermissionLocalService the resource block permission local service
2421             */
2422            public void setResourceBlockPermissionLocalService(
2423                    com.liferay.portal.service.ResourceBlockPermissionLocalService resourceBlockPermissionLocalService) {
2424                    this.resourceBlockPermissionLocalService = resourceBlockPermissionLocalService;
2425            }
2426    
2427            /**
2428             * Returns the resource block permission persistence.
2429             *
2430             * @return the resource block permission persistence
2431             */
2432            public ResourceBlockPermissionPersistence getResourceBlockPermissionPersistence() {
2433                    return resourceBlockPermissionPersistence;
2434            }
2435    
2436            /**
2437             * Sets the resource block permission persistence.
2438             *
2439             * @param resourceBlockPermissionPersistence the resource block permission persistence
2440             */
2441            public void setResourceBlockPermissionPersistence(
2442                    ResourceBlockPermissionPersistence resourceBlockPermissionPersistence) {
2443                    this.resourceBlockPermissionPersistence = resourceBlockPermissionPersistence;
2444            }
2445    
2446            /**
2447             * Returns the resource permission local service.
2448             *
2449             * @return the resource permission local service
2450             */
2451            public com.liferay.portal.service.ResourcePermissionLocalService getResourcePermissionLocalService() {
2452                    return resourcePermissionLocalService;
2453            }
2454    
2455            /**
2456             * Sets the resource permission local service.
2457             *
2458             * @param resourcePermissionLocalService the resource permission local service
2459             */
2460            public void setResourcePermissionLocalService(
2461                    com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService) {
2462                    this.resourcePermissionLocalService = resourcePermissionLocalService;
2463            }
2464    
2465            /**
2466             * Returns the resource permission remote service.
2467             *
2468             * @return the resource permission remote service
2469             */
2470            public com.liferay.portal.service.ResourcePermissionService getResourcePermissionService() {
2471                    return resourcePermissionService;
2472            }
2473    
2474            /**
2475             * Sets the resource permission remote service.
2476             *
2477             * @param resourcePermissionService the resource permission remote service
2478             */
2479            public void setResourcePermissionService(
2480                    com.liferay.portal.service.ResourcePermissionService resourcePermissionService) {
2481                    this.resourcePermissionService = resourcePermissionService;
2482            }
2483    
2484            /**
2485             * Returns the resource permission persistence.
2486             *
2487             * @return the resource permission persistence
2488             */
2489            public ResourcePermissionPersistence getResourcePermissionPersistence() {
2490                    return resourcePermissionPersistence;
2491            }
2492    
2493            /**
2494             * Sets the resource permission persistence.
2495             *
2496             * @param resourcePermissionPersistence the resource permission persistence
2497             */
2498            public void setResourcePermissionPersistence(
2499                    ResourcePermissionPersistence resourcePermissionPersistence) {
2500                    this.resourcePermissionPersistence = resourcePermissionPersistence;
2501            }
2502    
2503            /**
2504             * Returns the resource permission finder.
2505             *
2506             * @return the resource permission finder
2507             */
2508            public ResourcePermissionFinder getResourcePermissionFinder() {
2509                    return resourcePermissionFinder;
2510            }
2511    
2512            /**
2513             * Sets the resource permission finder.
2514             *
2515             * @param resourcePermissionFinder the resource permission finder
2516             */
2517            public void setResourcePermissionFinder(
2518                    ResourcePermissionFinder resourcePermissionFinder) {
2519                    this.resourcePermissionFinder = resourcePermissionFinder;
2520            }
2521    
2522            /**
2523             * Returns the resource type permission local service.
2524             *
2525             * @return the resource type permission local service
2526             */
2527            public com.liferay.portal.service.ResourceTypePermissionLocalService getResourceTypePermissionLocalService() {
2528                    return resourceTypePermissionLocalService;
2529            }
2530    
2531            /**
2532             * Sets the resource type permission local service.
2533             *
2534             * @param resourceTypePermissionLocalService the resource type permission local service
2535             */
2536            public void setResourceTypePermissionLocalService(
2537                    com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService) {
2538                    this.resourceTypePermissionLocalService = resourceTypePermissionLocalService;
2539            }
2540    
2541            /**
2542             * Returns the resource type permission persistence.
2543             *
2544             * @return the resource type permission persistence
2545             */
2546            public ResourceTypePermissionPersistence getResourceTypePermissionPersistence() {
2547                    return resourceTypePermissionPersistence;
2548            }
2549    
2550            /**
2551             * Sets the resource type permission persistence.
2552             *
2553             * @param resourceTypePermissionPersistence the resource type permission persistence
2554             */
2555            public void setResourceTypePermissionPersistence(
2556                    ResourceTypePermissionPersistence resourceTypePermissionPersistence) {
2557                    this.resourceTypePermissionPersistence = resourceTypePermissionPersistence;
2558            }
2559    
2560            /**
2561             * Returns the resource type permission finder.
2562             *
2563             * @return the resource type permission finder
2564             */
2565            public ResourceTypePermissionFinder getResourceTypePermissionFinder() {
2566                    return resourceTypePermissionFinder;
2567            }
2568    
2569            /**
2570             * Sets the resource type permission finder.
2571             *
2572             * @param resourceTypePermissionFinder the resource type permission finder
2573             */
2574            public void setResourceTypePermissionFinder(
2575                    ResourceTypePermissionFinder resourceTypePermissionFinder) {
2576                    this.resourceTypePermissionFinder = resourceTypePermissionFinder;
2577            }
2578    
2579            /**
2580             * Returns the role local service.
2581             *
2582             * @return the role local service
2583             */
2584            public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
2585                    return roleLocalService;
2586            }
2587    
2588            /**
2589             * Sets the role local service.
2590             *
2591             * @param roleLocalService the role local service
2592             */
2593            public void setRoleLocalService(
2594                    com.liferay.portal.service.RoleLocalService roleLocalService) {
2595                    this.roleLocalService = roleLocalService;
2596            }
2597    
2598            /**
2599             * Returns the role remote service.
2600             *
2601             * @return the role remote service
2602             */
2603            public com.liferay.portal.service.RoleService getRoleService() {
2604                    return roleService;
2605            }
2606    
2607            /**
2608             * Sets the role remote service.
2609             *
2610             * @param roleService the role remote service
2611             */
2612            public void setRoleService(
2613                    com.liferay.portal.service.RoleService roleService) {
2614                    this.roleService = roleService;
2615            }
2616    
2617            /**
2618             * Returns the role persistence.
2619             *
2620             * @return the role persistence
2621             */
2622            public RolePersistence getRolePersistence() {
2623                    return rolePersistence;
2624            }
2625    
2626            /**
2627             * Sets the role persistence.
2628             *
2629             * @param rolePersistence the role persistence
2630             */
2631            public void setRolePersistence(RolePersistence rolePersistence) {
2632                    this.rolePersistence = rolePersistence;
2633            }
2634    
2635            /**
2636             * Returns the role finder.
2637             *
2638             * @return the role finder
2639             */
2640            public RoleFinder getRoleFinder() {
2641                    return roleFinder;
2642            }
2643    
2644            /**
2645             * Sets the role finder.
2646             *
2647             * @param roleFinder the role finder
2648             */
2649            public void setRoleFinder(RoleFinder roleFinder) {
2650                    this.roleFinder = roleFinder;
2651            }
2652    
2653            /**
2654             * Returns the service component local service.
2655             *
2656             * @return the service component local service
2657             */
2658            public com.liferay.portal.service.ServiceComponentLocalService getServiceComponentLocalService() {
2659                    return serviceComponentLocalService;
2660            }
2661    
2662            /**
2663             * Sets the service component local service.
2664             *
2665             * @param serviceComponentLocalService the service component local service
2666             */
2667            public void setServiceComponentLocalService(
2668                    com.liferay.portal.service.ServiceComponentLocalService serviceComponentLocalService) {
2669                    this.serviceComponentLocalService = serviceComponentLocalService;
2670            }
2671    
2672            /**
2673             * Returns the service component persistence.
2674             *
2675             * @return the service component persistence
2676             */
2677            public ServiceComponentPersistence getServiceComponentPersistence() {
2678                    return serviceComponentPersistence;
2679            }
2680    
2681            /**
2682             * Sets the service component persistence.
2683             *
2684             * @param serviceComponentPersistence the service component persistence
2685             */
2686            public void setServiceComponentPersistence(
2687                    ServiceComponentPersistence serviceComponentPersistence) {
2688                    this.serviceComponentPersistence = serviceComponentPersistence;
2689            }
2690    
2691            /**
2692             * Returns the shard local service.
2693             *
2694             * @return the shard local service
2695             */
2696            public com.liferay.portal.service.ShardLocalService getShardLocalService() {
2697                    return shardLocalService;
2698            }
2699    
2700            /**
2701             * Sets the shard local service.
2702             *
2703             * @param shardLocalService the shard local service
2704             */
2705            public void setShardLocalService(
2706                    com.liferay.portal.service.ShardLocalService shardLocalService) {
2707                    this.shardLocalService = shardLocalService;
2708            }
2709    
2710            /**
2711             * Returns the shard persistence.
2712             *
2713             * @return the shard persistence
2714             */
2715            public ShardPersistence getShardPersistence() {
2716                    return shardPersistence;
2717            }
2718    
2719            /**
2720             * Sets the shard persistence.
2721             *
2722             * @param shardPersistence the shard persistence
2723             */
2724            public void setShardPersistence(ShardPersistence shardPersistence) {
2725                    this.shardPersistence = shardPersistence;
2726            }
2727    
2728            /**
2729             * Returns the staging local service.
2730             *
2731             * @return the staging local service
2732             */
2733            public com.liferay.portal.service.StagingLocalService getStagingLocalService() {
2734                    return stagingLocalService;
2735            }
2736    
2737            /**
2738             * Sets the staging local service.
2739             *
2740             * @param stagingLocalService the staging local service
2741             */
2742            public void setStagingLocalService(
2743                    com.liferay.portal.service.StagingLocalService stagingLocalService) {
2744                    this.stagingLocalService = stagingLocalService;
2745            }
2746    
2747            /**
2748             * Returns the staging remote service.
2749             *
2750             * @return the staging remote service
2751             */
2752            public com.liferay.portal.service.StagingService getStagingService() {
2753                    return stagingService;
2754            }
2755    
2756            /**
2757             * Sets the staging remote service.
2758             *
2759             * @param stagingService the staging remote service
2760             */
2761            public void setStagingService(
2762                    com.liferay.portal.service.StagingService stagingService) {
2763                    this.stagingService = stagingService;
2764            }
2765    
2766            /**
2767             * Returns the subscription local service.
2768             *
2769             * @return the subscription local service
2770             */
2771            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
2772                    return subscriptionLocalService;
2773            }
2774    
2775            /**
2776             * Sets the subscription local service.
2777             *
2778             * @param subscriptionLocalService the subscription local service
2779             */
2780            public void setSubscriptionLocalService(
2781                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
2782                    this.subscriptionLocalService = subscriptionLocalService;
2783            }
2784    
2785            /**
2786             * Returns the subscription persistence.
2787             *
2788             * @return the subscription persistence
2789             */
2790            public SubscriptionPersistence getSubscriptionPersistence() {
2791                    return subscriptionPersistence;
2792            }
2793    
2794            /**
2795             * Sets the subscription persistence.
2796             *
2797             * @param subscriptionPersistence the subscription persistence
2798             */
2799            public void setSubscriptionPersistence(
2800                    SubscriptionPersistence subscriptionPersistence) {
2801                    this.subscriptionPersistence = subscriptionPersistence;
2802            }
2803    
2804            /**
2805             * Returns the system event local service.
2806             *
2807             * @return the system event local service
2808             */
2809            public com.liferay.portal.service.SystemEventLocalService getSystemEventLocalService() {
2810                    return systemEventLocalService;
2811            }
2812    
2813            /**
2814             * Sets the system event local service.
2815             *
2816             * @param systemEventLocalService the system event local service
2817             */
2818            public void setSystemEventLocalService(
2819                    com.liferay.portal.service.SystemEventLocalService systemEventLocalService) {
2820                    this.systemEventLocalService = systemEventLocalService;
2821            }
2822    
2823            /**
2824             * Returns the system event persistence.
2825             *
2826             * @return the system event persistence
2827             */
2828            public SystemEventPersistence getSystemEventPersistence() {
2829                    return systemEventPersistence;
2830            }
2831    
2832            /**
2833             * Sets the system event persistence.
2834             *
2835             * @param systemEventPersistence the system event persistence
2836             */
2837            public void setSystemEventPersistence(
2838                    SystemEventPersistence systemEventPersistence) {
2839                    this.systemEventPersistence = systemEventPersistence;
2840            }
2841    
2842            /**
2843             * Returns the team local service.
2844             *
2845             * @return the team local service
2846             */
2847            public com.liferay.portal.service.TeamLocalService getTeamLocalService() {
2848                    return teamLocalService;
2849            }
2850    
2851            /**
2852             * Sets the team local service.
2853             *
2854             * @param teamLocalService the team local service
2855             */
2856            public void setTeamLocalService(
2857                    com.liferay.portal.service.TeamLocalService teamLocalService) {
2858                    this.teamLocalService = teamLocalService;
2859            }
2860    
2861            /**
2862             * Returns the team remote service.
2863             *
2864             * @return the team remote service
2865             */
2866            public com.liferay.portal.service.TeamService getTeamService() {
2867                    return teamService;
2868            }
2869    
2870            /**
2871             * Sets the team remote service.
2872             *
2873             * @param teamService the team remote service
2874             */
2875            public void setTeamService(
2876                    com.liferay.portal.service.TeamService teamService) {
2877                    this.teamService = teamService;
2878            }
2879    
2880            /**
2881             * Returns the team persistence.
2882             *
2883             * @return the team persistence
2884             */
2885            public TeamPersistence getTeamPersistence() {
2886                    return teamPersistence;
2887            }
2888    
2889            /**
2890             * Sets the team persistence.
2891             *
2892             * @param teamPersistence the team persistence
2893             */
2894            public void setTeamPersistence(TeamPersistence teamPersistence) {
2895                    this.teamPersistence = teamPersistence;
2896            }
2897    
2898            /**
2899             * Returns the team finder.
2900             *
2901             * @return the team finder
2902             */
2903            public TeamFinder getTeamFinder() {
2904                    return teamFinder;
2905            }
2906    
2907            /**
2908             * Sets the team finder.
2909             *
2910             * @param teamFinder the team finder
2911             */
2912            public void setTeamFinder(TeamFinder teamFinder) {
2913                    this.teamFinder = teamFinder;
2914            }
2915    
2916            /**
2917             * Returns the theme local service.
2918             *
2919             * @return the theme local service
2920             */
2921            public com.liferay.portal.service.ThemeLocalService getThemeLocalService() {
2922                    return themeLocalService;
2923            }
2924    
2925            /**
2926             * Sets the theme local service.
2927             *
2928             * @param themeLocalService the theme local service
2929             */
2930            public void setThemeLocalService(
2931                    com.liferay.portal.service.ThemeLocalService themeLocalService) {
2932                    this.themeLocalService = themeLocalService;
2933            }
2934    
2935            /**
2936             * Returns the theme remote service.
2937             *
2938             * @return the theme remote service
2939             */
2940            public com.liferay.portal.service.ThemeService getThemeService() {
2941                    return themeService;
2942            }
2943    
2944            /**
2945             * Sets the theme remote service.
2946             *
2947             * @param themeService the theme remote service
2948             */
2949            public void setThemeService(
2950                    com.liferay.portal.service.ThemeService themeService) {
2951                    this.themeService = themeService;
2952            }
2953    
2954            /**
2955             * Returns the ticket local service.
2956             *
2957             * @return the ticket local service
2958             */
2959            public com.liferay.portal.service.TicketLocalService getTicketLocalService() {
2960                    return ticketLocalService;
2961            }
2962    
2963            /**
2964             * Sets the ticket local service.
2965             *
2966             * @param ticketLocalService the ticket local service
2967             */
2968            public void setTicketLocalService(
2969                    com.liferay.portal.service.TicketLocalService ticketLocalService) {
2970                    this.ticketLocalService = ticketLocalService;
2971            }
2972    
2973            /**
2974             * Returns the ticket persistence.
2975             *
2976             * @return the ticket persistence
2977             */
2978            public TicketPersistence getTicketPersistence() {
2979                    return ticketPersistence;
2980            }
2981    
2982            /**
2983             * Sets the ticket persistence.
2984             *
2985             * @param ticketPersistence the ticket persistence
2986             */
2987            public void setTicketPersistence(TicketPersistence ticketPersistence) {
2988                    this.ticketPersistence = ticketPersistence;
2989            }
2990    
2991            /**
2992             * Returns the user local service.
2993             *
2994             * @return the user local service
2995             */
2996            public com.liferay.portal.service.UserLocalService getUserLocalService() {
2997                    return userLocalService;
2998            }
2999    
3000            /**
3001             * Sets the user local service.
3002             *
3003             * @param userLocalService the user local service
3004             */
3005            public void setUserLocalService(
3006                    com.liferay.portal.service.UserLocalService userLocalService) {
3007                    this.userLocalService = userLocalService;
3008            }
3009    
3010            /**
3011             * Returns the user remote service.
3012             *
3013             * @return the user remote service
3014             */
3015            public com.liferay.portal.service.UserService getUserService() {
3016                    return userService;
3017            }
3018    
3019            /**
3020             * Sets the user remote service.
3021             *
3022             * @param userService the user remote service
3023             */
3024            public void setUserService(
3025                    com.liferay.portal.service.UserService userService) {
3026                    this.userService = userService;
3027            }
3028    
3029            /**
3030             * Returns the user persistence.
3031             *
3032             * @return the user persistence
3033             */
3034            public UserPersistence getUserPersistence() {
3035                    return userPersistence;
3036            }
3037    
3038            /**
3039             * Sets the user persistence.
3040             *
3041             * @param userPersistence the user persistence
3042             */
3043            public void setUserPersistence(UserPersistence userPersistence) {
3044                    this.userPersistence = userPersistence;
3045            }
3046    
3047            /**
3048             * Returns the user finder.
3049             *
3050             * @return the user finder
3051             */
3052            public UserFinder getUserFinder() {
3053                    return userFinder;
3054            }
3055    
3056            /**
3057             * Sets the user finder.
3058             *
3059             * @param userFinder the user finder
3060             */
3061            public void setUserFinder(UserFinder userFinder) {
3062                    this.userFinder = userFinder;
3063            }
3064    
3065            /**
3066             * Returns the user group local service.
3067             *
3068             * @return the user group local service
3069             */
3070            public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
3071                    return userGroupLocalService;
3072            }
3073    
3074            /**
3075             * Sets the user group local service.
3076             *
3077             * @param userGroupLocalService the user group local service
3078             */
3079            public void setUserGroupLocalService(
3080                    com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
3081                    this.userGroupLocalService = userGroupLocalService;
3082            }
3083    
3084            /**
3085             * Returns the user group remote service.
3086             *
3087             * @return the user group remote service
3088             */
3089            public com.liferay.portal.service.UserGroupService getUserGroupService() {
3090                    return userGroupService;
3091            }
3092    
3093            /**
3094             * Sets the user group remote service.
3095             *
3096             * @param userGroupService the user group remote service
3097             */
3098            public void setUserGroupService(
3099                    com.liferay.portal.service.UserGroupService userGroupService) {
3100                    this.userGroupService = userGroupService;
3101            }
3102    
3103            /**
3104             * Returns the user group persistence.
3105             *
3106             * @return the user group persistence
3107             */
3108            public UserGroupPersistence getUserGroupPersistence() {
3109                    return userGroupPersistence;
3110            }
3111    
3112            /**
3113             * Sets the user group persistence.
3114             *
3115             * @param userGroupPersistence the user group persistence
3116             */
3117            public void setUserGroupPersistence(
3118                    UserGroupPersistence userGroupPersistence) {
3119                    this.userGroupPersistence = userGroupPersistence;
3120            }
3121    
3122            /**
3123             * Returns the user group finder.
3124             *
3125             * @return the user group finder
3126             */
3127            public UserGroupFinder getUserGroupFinder() {
3128                    return userGroupFinder;
3129            }
3130    
3131            /**
3132             * Sets the user group finder.
3133             *
3134             * @param userGroupFinder the user group finder
3135             */
3136            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
3137                    this.userGroupFinder = userGroupFinder;
3138            }
3139    
3140            /**
3141             * Returns the user group group role local service.
3142             *
3143             * @return the user group group role local service
3144             */
3145            public com.liferay.portal.service.UserGroupGroupRoleLocalService getUserGroupGroupRoleLocalService() {
3146                    return userGroupGroupRoleLocalService;
3147            }
3148    
3149            /**
3150             * Sets the user group group role local service.
3151             *
3152             * @param userGroupGroupRoleLocalService the user group group role local service
3153             */
3154            public void setUserGroupGroupRoleLocalService(
3155                    com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService) {
3156                    this.userGroupGroupRoleLocalService = userGroupGroupRoleLocalService;
3157            }
3158    
3159            /**
3160             * Returns the user group group role remote service.
3161             *
3162             * @return the user group group role remote service
3163             */
3164            public com.liferay.portal.service.UserGroupGroupRoleService getUserGroupGroupRoleService() {
3165                    return userGroupGroupRoleService;
3166            }
3167    
3168            /**
3169             * Sets the user group group role remote service.
3170             *
3171             * @param userGroupGroupRoleService the user group group role remote service
3172             */
3173            public void setUserGroupGroupRoleService(
3174                    com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService) {
3175                    this.userGroupGroupRoleService = userGroupGroupRoleService;
3176            }
3177    
3178            /**
3179             * Returns the user group group role persistence.
3180             *
3181             * @return the user group group role persistence
3182             */
3183            public UserGroupGroupRolePersistence getUserGroupGroupRolePersistence() {
3184                    return userGroupGroupRolePersistence;
3185            }
3186    
3187            /**
3188             * Sets the user group group role persistence.
3189             *
3190             * @param userGroupGroupRolePersistence the user group group role persistence
3191             */
3192            public void setUserGroupGroupRolePersistence(
3193                    UserGroupGroupRolePersistence userGroupGroupRolePersistence) {
3194                    this.userGroupGroupRolePersistence = userGroupGroupRolePersistence;
3195            }
3196    
3197            /**
3198             * Returns the user group role local service.
3199             *
3200             * @return the user group role local service
3201             */
3202            public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
3203                    return userGroupRoleLocalService;
3204            }
3205    
3206            /**
3207             * Sets the user group role local service.
3208             *
3209             * @param userGroupRoleLocalService the user group role local service
3210             */
3211            public void setUserGroupRoleLocalService(
3212                    com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
3213                    this.userGroupRoleLocalService = userGroupRoleLocalService;
3214            }
3215    
3216            /**
3217             * Returns the user group role remote service.
3218             *
3219             * @return the user group role remote service
3220             */
3221            public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
3222                    return userGroupRoleService;
3223            }
3224    
3225            /**
3226             * Sets the user group role remote service.
3227             *
3228             * @param userGroupRoleService the user group role remote service
3229             */
3230            public void setUserGroupRoleService(
3231                    com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
3232                    this.userGroupRoleService = userGroupRoleService;
3233            }
3234    
3235            /**
3236             * Returns the user group role persistence.
3237             *
3238             * @return the user group role persistence
3239             */
3240            public UserGroupRolePersistence getUserGroupRolePersistence() {
3241                    return userGroupRolePersistence;
3242            }
3243    
3244            /**
3245             * Sets the user group role persistence.
3246             *
3247             * @param userGroupRolePersistence the user group role persistence
3248             */
3249            public void setUserGroupRolePersistence(
3250                    UserGroupRolePersistence userGroupRolePersistence) {
3251                    this.userGroupRolePersistence = userGroupRolePersistence;
3252            }
3253    
3254            /**
3255             * Returns the user group role finder.
3256             *
3257             * @return the user group role finder
3258             */
3259            public UserGroupRoleFinder getUserGroupRoleFinder() {
3260                    return userGroupRoleFinder;
3261            }
3262    
3263            /**
3264             * Sets the user group role finder.
3265             *
3266             * @param userGroupRoleFinder the user group role finder
3267             */
3268            public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
3269                    this.userGroupRoleFinder = userGroupRoleFinder;
3270            }
3271    
3272            /**
3273             * Returns the user ID mapper local service.
3274             *
3275             * @return the user ID mapper local service
3276             */
3277            public com.liferay.portal.service.UserIdMapperLocalService getUserIdMapperLocalService() {
3278                    return userIdMapperLocalService;
3279            }
3280    
3281            /**
3282             * Sets the user ID mapper local service.
3283             *
3284             * @param userIdMapperLocalService the user ID mapper local service
3285             */
3286            public void setUserIdMapperLocalService(
3287                    com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService) {
3288                    this.userIdMapperLocalService = userIdMapperLocalService;
3289            }
3290    
3291            /**
3292             * Returns the user ID mapper persistence.
3293             *
3294             * @return the user ID mapper persistence
3295             */
3296            public UserIdMapperPersistence getUserIdMapperPersistence() {
3297                    return userIdMapperPersistence;
3298            }
3299    
3300            /**
3301             * Sets the user ID mapper persistence.
3302             *
3303             * @param userIdMapperPersistence the user ID mapper persistence
3304             */
3305            public void setUserIdMapperPersistence(
3306                    UserIdMapperPersistence userIdMapperPersistence) {
3307                    this.userIdMapperPersistence = userIdMapperPersistence;
3308            }
3309    
3310            /**
3311             * Returns the user notification delivery local service.
3312             *
3313             * @return the user notification delivery local service
3314             */
3315            public com.liferay.portal.service.UserNotificationDeliveryLocalService getUserNotificationDeliveryLocalService() {
3316                    return userNotificationDeliveryLocalService;
3317            }
3318    
3319            /**
3320             * Sets the user notification delivery local service.
3321             *
3322             * @param userNotificationDeliveryLocalService the user notification delivery local service
3323             */
3324            public void setUserNotificationDeliveryLocalService(
3325                    com.liferay.portal.service.UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
3326                    this.userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
3327            }
3328    
3329            /**
3330             * Returns the user notification delivery persistence.
3331             *
3332             * @return the user notification delivery persistence
3333             */
3334            public UserNotificationDeliveryPersistence getUserNotificationDeliveryPersistence() {
3335                    return userNotificationDeliveryPersistence;
3336            }
3337    
3338            /**
3339             * Sets the user notification delivery persistence.
3340             *
3341             * @param userNotificationDeliveryPersistence the user notification delivery persistence
3342             */
3343            public void setUserNotificationDeliveryPersistence(
3344                    UserNotificationDeliveryPersistence userNotificationDeliveryPersistence) {
3345                    this.userNotificationDeliveryPersistence = userNotificationDeliveryPersistence;
3346            }
3347    
3348            /**
3349             * Returns the user notification event local service.
3350             *
3351             * @return the user notification event local service
3352             */
3353            public com.liferay.portal.service.UserNotificationEventLocalService getUserNotificationEventLocalService() {
3354                    return userNotificationEventLocalService;
3355            }
3356    
3357            /**
3358             * Sets the user notification event local service.
3359             *
3360             * @param userNotificationEventLocalService the user notification event local service
3361             */
3362            public void setUserNotificationEventLocalService(
3363                    com.liferay.portal.service.UserNotificationEventLocalService userNotificationEventLocalService) {
3364                    this.userNotificationEventLocalService = userNotificationEventLocalService;
3365            }
3366    
3367            /**
3368             * Returns the user notification event persistence.
3369             *
3370             * @return the user notification event persistence
3371             */
3372            public UserNotificationEventPersistence getUserNotificationEventPersistence() {
3373                    return userNotificationEventPersistence;
3374            }
3375    
3376            /**
3377             * Sets the user notification event persistence.
3378             *
3379             * @param userNotificationEventPersistence the user notification event persistence
3380             */
3381            public void setUserNotificationEventPersistence(
3382                    UserNotificationEventPersistence userNotificationEventPersistence) {
3383                    this.userNotificationEventPersistence = userNotificationEventPersistence;
3384            }
3385    
3386            /**
3387             * Returns the user tracker local service.
3388             *
3389             * @return the user tracker local service
3390             */
3391            public com.liferay.portal.service.UserTrackerLocalService getUserTrackerLocalService() {
3392                    return userTrackerLocalService;
3393            }
3394    
3395            /**
3396             * Sets the user tracker local service.
3397             *
3398             * @param userTrackerLocalService the user tracker local service
3399             */
3400            public void setUserTrackerLocalService(
3401                    com.liferay.portal.service.UserTrackerLocalService userTrackerLocalService) {
3402                    this.userTrackerLocalService = userTrackerLocalService;
3403            }
3404    
3405            /**
3406             * Returns the user tracker persistence.
3407             *
3408             * @return the user tracker persistence
3409             */
3410            public UserTrackerPersistence getUserTrackerPersistence() {
3411                    return userTrackerPersistence;
3412            }
3413    
3414            /**
3415             * Sets the user tracker persistence.
3416             *
3417             * @param userTrackerPersistence the user tracker persistence
3418             */
3419            public void setUserTrackerPersistence(
3420                    UserTrackerPersistence userTrackerPersistence) {
3421                    this.userTrackerPersistence = userTrackerPersistence;
3422            }
3423    
3424            /**
3425             * Returns the user tracker path local service.
3426             *
3427             * @return the user tracker path local service
3428             */
3429            public com.liferay.portal.service.UserTrackerPathLocalService getUserTrackerPathLocalService() {
3430                    return userTrackerPathLocalService;
3431            }
3432    
3433            /**
3434             * Sets the user tracker path local service.
3435             *
3436             * @param userTrackerPathLocalService the user tracker path local service
3437             */
3438            public void setUserTrackerPathLocalService(
3439                    com.liferay.portal.service.UserTrackerPathLocalService userTrackerPathLocalService) {
3440                    this.userTrackerPathLocalService = userTrackerPathLocalService;
3441            }
3442    
3443            /**
3444             * Returns the user tracker path persistence.
3445             *
3446             * @return the user tracker path persistence
3447             */
3448            public UserTrackerPathPersistence getUserTrackerPathPersistence() {
3449                    return userTrackerPathPersistence;
3450            }
3451    
3452            /**
3453             * Sets the user tracker path persistence.
3454             *
3455             * @param userTrackerPathPersistence the user tracker path persistence
3456             */
3457            public void setUserTrackerPathPersistence(
3458                    UserTrackerPathPersistence userTrackerPathPersistence) {
3459                    this.userTrackerPathPersistence = userTrackerPathPersistence;
3460            }
3461    
3462            /**
3463             * Returns the virtual host local service.
3464             *
3465             * @return the virtual host local service
3466             */
3467            public com.liferay.portal.service.VirtualHostLocalService getVirtualHostLocalService() {
3468                    return virtualHostLocalService;
3469            }
3470    
3471            /**
3472             * Sets the virtual host local service.
3473             *
3474             * @param virtualHostLocalService the virtual host local service
3475             */
3476            public void setVirtualHostLocalService(
3477                    com.liferay.portal.service.VirtualHostLocalService virtualHostLocalService) {
3478                    this.virtualHostLocalService = virtualHostLocalService;
3479            }
3480    
3481            /**
3482             * Returns the virtual host persistence.
3483             *
3484             * @return the virtual host persistence
3485             */
3486            public VirtualHostPersistence getVirtualHostPersistence() {
3487                    return virtualHostPersistence;
3488            }
3489    
3490            /**
3491             * Sets the virtual host persistence.
3492             *
3493             * @param virtualHostPersistence the virtual host persistence
3494             */
3495            public void setVirtualHostPersistence(
3496                    VirtualHostPersistence virtualHostPersistence) {
3497                    this.virtualHostPersistence = virtualHostPersistence;
3498            }
3499    
3500            /**
3501             * Returns the web d a v props local service.
3502             *
3503             * @return the web d a v props local service
3504             */
3505            public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
3506                    return webDAVPropsLocalService;
3507            }
3508    
3509            /**
3510             * Sets the web d a v props local service.
3511             *
3512             * @param webDAVPropsLocalService the web d a v props local service
3513             */
3514            public void setWebDAVPropsLocalService(
3515                    com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
3516                    this.webDAVPropsLocalService = webDAVPropsLocalService;
3517            }
3518    
3519            /**
3520             * Returns the web d a v props persistence.
3521             *
3522             * @return the web d a v props persistence
3523             */
3524            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
3525                    return webDAVPropsPersistence;
3526            }
3527    
3528            /**
3529             * Sets the web d a v props persistence.
3530             *
3531             * @param webDAVPropsPersistence the web d a v props persistence
3532             */
3533            public void setWebDAVPropsPersistence(
3534                    WebDAVPropsPersistence webDAVPropsPersistence) {
3535                    this.webDAVPropsPersistence = webDAVPropsPersistence;
3536            }
3537    
3538            /**
3539             * Returns the website local service.
3540             *
3541             * @return the website local service
3542             */
3543            public com.liferay.portal.service.WebsiteLocalService getWebsiteLocalService() {
3544                    return websiteLocalService;
3545            }
3546    
3547            /**
3548             * Sets the website local service.
3549             *
3550             * @param websiteLocalService the website local service
3551             */
3552            public void setWebsiteLocalService(
3553                    com.liferay.portal.service.WebsiteLocalService websiteLocalService) {
3554                    this.websiteLocalService = websiteLocalService;
3555            }
3556    
3557            /**
3558             * Returns the website remote service.
3559             *
3560             * @return the website remote service
3561             */
3562            public com.liferay.portal.service.WebsiteService getWebsiteService() {
3563                    return websiteService;
3564            }
3565    
3566            /**
3567             * Sets the website remote service.
3568             *
3569             * @param websiteService the website remote service
3570             */
3571            public void setWebsiteService(
3572                    com.liferay.portal.service.WebsiteService websiteService) {
3573                    this.websiteService = websiteService;
3574            }
3575    
3576            /**
3577             * Returns the website persistence.
3578             *
3579             * @return the website persistence
3580             */
3581            public WebsitePersistence getWebsitePersistence() {
3582                    return websitePersistence;
3583            }
3584    
3585            /**
3586             * Sets the website persistence.
3587             *
3588             * @param websitePersistence the website persistence
3589             */
3590            public void setWebsitePersistence(WebsitePersistence websitePersistence) {
3591                    this.websitePersistence = websitePersistence;
3592            }
3593    
3594            /**
3595             * Returns the workflow definition link local service.
3596             *
3597             * @return the workflow definition link local service
3598             */
3599            public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
3600                    return workflowDefinitionLinkLocalService;
3601            }
3602    
3603            /**
3604             * Sets the workflow definition link local service.
3605             *
3606             * @param workflowDefinitionLinkLocalService the workflow definition link local service
3607             */
3608            public void setWorkflowDefinitionLinkLocalService(
3609                    com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
3610                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
3611            }
3612    
3613            /**
3614             * Returns the workflow definition link persistence.
3615             *
3616             * @return the workflow definition link persistence
3617             */
3618            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
3619                    return workflowDefinitionLinkPersistence;
3620            }
3621    
3622            /**
3623             * Sets the workflow definition link persistence.
3624             *
3625             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
3626             */
3627            public void setWorkflowDefinitionLinkPersistence(
3628                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
3629                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
3630            }
3631    
3632            /**
3633             * Returns the workflow instance link local service.
3634             *
3635             * @return the workflow instance link local service
3636             */
3637            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
3638                    return workflowInstanceLinkLocalService;
3639            }
3640    
3641            /**
3642             * Sets the workflow instance link local service.
3643             *
3644             * @param workflowInstanceLinkLocalService the workflow instance link local service
3645             */
3646            public void setWorkflowInstanceLinkLocalService(
3647                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
3648                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
3649            }
3650    
3651            /**
3652             * Returns the workflow instance link persistence.
3653             *
3654             * @return the workflow instance link persistence
3655             */
3656            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
3657                    return workflowInstanceLinkPersistence;
3658            }
3659    
3660            /**
3661             * Sets the workflow instance link persistence.
3662             *
3663             * @param workflowInstanceLinkPersistence the workflow instance link persistence
3664             */
3665            public void setWorkflowInstanceLinkPersistence(
3666                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
3667                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
3668            }
3669    
3670            /**
3671             * Returns the counter local service.
3672             *
3673             * @return the counter local service
3674             */
3675            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
3676                    return counterLocalService;
3677            }
3678    
3679            /**
3680             * Sets the counter local service.
3681             *
3682             * @param counterLocalService the counter local service
3683             */
3684            public void setCounterLocalService(
3685                    com.liferay.counter.service.CounterLocalService counterLocalService) {
3686                    this.counterLocalService = counterLocalService;
3687            }
3688    
3689            /**
3690             * Returns the expando row local service.
3691             *
3692             * @return the expando row local service
3693             */
3694            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
3695                    return expandoRowLocalService;
3696            }
3697    
3698            /**
3699             * Sets the expando row local service.
3700             *
3701             * @param expandoRowLocalService the expando row local service
3702             */
3703            public void setExpandoRowLocalService(
3704                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
3705                    this.expandoRowLocalService = expandoRowLocalService;
3706            }
3707    
3708            /**
3709             * Returns the expando row persistence.
3710             *
3711             * @return the expando row persistence
3712             */
3713            public ExpandoRowPersistence getExpandoRowPersistence() {
3714                    return expandoRowPersistence;
3715            }
3716    
3717            /**
3718             * Sets the expando row persistence.
3719             *
3720             * @param expandoRowPersistence the expando row persistence
3721             */
3722            public void setExpandoRowPersistence(
3723                    ExpandoRowPersistence expandoRowPersistence) {
3724                    this.expandoRowPersistence = expandoRowPersistence;
3725            }
3726    
3727            public void afterPropertiesSet() {
3728            }
3729    
3730            public void destroy() {
3731            }
3732    
3733            /**
3734             * Returns the Spring bean ID for this bean.
3735             *
3736             * @return the Spring bean ID for this bean
3737             */
3738            @Override
3739            public String getBeanIdentifier() {
3740                    return _beanIdentifier;
3741            }
3742    
3743            /**
3744             * Sets the Spring bean ID for this bean.
3745             *
3746             * @param beanIdentifier the Spring bean ID for this bean
3747             */
3748            @Override
3749            public void setBeanIdentifier(String beanIdentifier) {
3750                    _beanIdentifier = beanIdentifier;
3751            }
3752    
3753            protected Class<?> getModelClass() {
3754                    return Role.class;
3755            }
3756    
3757            protected String getModelClassName() {
3758                    return Role.class.getName();
3759            }
3760    
3761            /**
3762             * Performs an SQL query.
3763             *
3764             * @param sql the sql query
3765             */
3766            protected void runSQL(String sql) throws SystemException {
3767                    try {
3768                            DataSource dataSource = rolePersistence.getDataSource();
3769    
3770                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
3771                                            sql, new int[0]);
3772    
3773                            sqlUpdate.update();
3774                    }
3775                    catch (Exception e) {
3776                            throw new SystemException(e);
3777                    }
3778            }
3779    
3780            @BeanReference(type = com.liferay.portal.service.AccountLocalService.class)
3781            protected com.liferay.portal.service.AccountLocalService accountLocalService;
3782            @BeanReference(type = com.liferay.portal.service.AccountService.class)
3783            protected com.liferay.portal.service.AccountService accountService;
3784            @BeanReference(type = AccountPersistence.class)
3785            protected AccountPersistence accountPersistence;
3786            @BeanReference(type = com.liferay.portal.service.AddressLocalService.class)
3787            protected com.liferay.portal.service.AddressLocalService addressLocalService;
3788            @BeanReference(type = com.liferay.portal.service.AddressService.class)
3789            protected com.liferay.portal.service.AddressService addressService;
3790            @BeanReference(type = AddressPersistence.class)
3791            protected AddressPersistence addressPersistence;
3792            @BeanReference(type = com.liferay.portal.service.BackgroundTaskLocalService.class)
3793            protected com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService;
3794            @BeanReference(type = com.liferay.portal.service.BackgroundTaskService.class)
3795            protected com.liferay.portal.service.BackgroundTaskService backgroundTaskService;
3796            @BeanReference(type = BackgroundTaskPersistence.class)
3797            protected BackgroundTaskPersistence backgroundTaskPersistence;
3798            @BeanReference(type = com.liferay.portal.service.BrowserTrackerLocalService.class)
3799            protected com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService;
3800            @BeanReference(type = BrowserTrackerPersistence.class)
3801            protected BrowserTrackerPersistence browserTrackerPersistence;
3802            @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
3803            protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
3804            @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
3805            protected com.liferay.portal.service.ClassNameService classNameService;
3806            @BeanReference(type = ClassNamePersistence.class)
3807            protected ClassNamePersistence classNamePersistence;
3808            @BeanReference(type = com.liferay.portal.service.ClusterGroupLocalService.class)
3809            protected com.liferay.portal.service.ClusterGroupLocalService clusterGroupLocalService;
3810            @BeanReference(type = ClusterGroupPersistence.class)
3811            protected ClusterGroupPersistence clusterGroupPersistence;
3812            @BeanReference(type = com.liferay.portal.service.CMISRepositoryLocalService.class)
3813            protected com.liferay.portal.service.CMISRepositoryLocalService cmisRepositoryLocalService;
3814            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
3815            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
3816            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
3817            protected com.liferay.portal.service.CompanyService companyService;
3818            @BeanReference(type = CompanyPersistence.class)
3819            protected CompanyPersistence companyPersistence;
3820            @BeanReference(type = com.liferay.portal.service.ContactLocalService.class)
3821            protected com.liferay.portal.service.ContactLocalService contactLocalService;
3822            @BeanReference(type = com.liferay.portal.service.ContactService.class)
3823            protected com.liferay.portal.service.ContactService contactService;
3824            @BeanReference(type = ContactPersistence.class)
3825            protected ContactPersistence contactPersistence;
3826            @BeanReference(type = com.liferay.portal.service.CountryService.class)
3827            protected com.liferay.portal.service.CountryService countryService;
3828            @BeanReference(type = CountryPersistence.class)
3829            protected CountryPersistence countryPersistence;
3830            @BeanReference(type = com.liferay.portal.service.EmailAddressLocalService.class)
3831            protected com.liferay.portal.service.EmailAddressLocalService emailAddressLocalService;
3832            @BeanReference(type = com.liferay.portal.service.EmailAddressService.class)
3833            protected com.liferay.portal.service.EmailAddressService emailAddressService;
3834            @BeanReference(type = EmailAddressPersistence.class)
3835            protected EmailAddressPersistence emailAddressPersistence;
3836            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
3837            protected com.liferay.portal.service.GroupLocalService groupLocalService;
3838            @BeanReference(type = com.liferay.portal.service.GroupService.class)
3839            protected com.liferay.portal.service.GroupService groupService;
3840            @BeanReference(type = GroupPersistence.class)
3841            protected GroupPersistence groupPersistence;
3842            @BeanReference(type = GroupFinder.class)
3843            protected GroupFinder groupFinder;
3844            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
3845            protected com.liferay.portal.service.ImageLocalService imageLocalService;
3846            @BeanReference(type = com.liferay.portal.service.ImageService.class)
3847            protected com.liferay.portal.service.ImageService imageService;
3848            @BeanReference(type = ImagePersistence.class)
3849            protected ImagePersistence imagePersistence;
3850            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
3851            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
3852            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
3853            protected com.liferay.portal.service.LayoutService layoutService;
3854            @BeanReference(type = LayoutPersistence.class)
3855            protected LayoutPersistence layoutPersistence;
3856            @BeanReference(type = LayoutFinder.class)
3857            protected LayoutFinder layoutFinder;
3858            @BeanReference(type = com.liferay.portal.service.LayoutBranchLocalService.class)
3859            protected com.liferay.portal.service.LayoutBranchLocalService layoutBranchLocalService;
3860            @BeanReference(type = com.liferay.portal.service.LayoutBranchService.class)
3861            protected com.liferay.portal.service.LayoutBranchService layoutBranchService;
3862            @BeanReference(type = LayoutBranchPersistence.class)
3863            protected LayoutBranchPersistence layoutBranchPersistence;
3864            @BeanReference(type = com.liferay.portal.service.LayoutFriendlyURLLocalService.class)
3865            protected com.liferay.portal.service.LayoutFriendlyURLLocalService layoutFriendlyURLLocalService;
3866            @BeanReference(type = LayoutFriendlyURLPersistence.class)
3867            protected LayoutFriendlyURLPersistence layoutFriendlyURLPersistence;
3868            @BeanReference(type = com.liferay.portal.service.LayoutPrototypeLocalService.class)
3869            protected com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService;
3870            @BeanReference(type = com.liferay.portal.service.LayoutPrototypeService.class)
3871            protected com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService;
3872            @BeanReference(type = LayoutPrototypePersistence.class)
3873            protected LayoutPrototypePersistence layoutPrototypePersistence;
3874            @BeanReference(type = com.liferay.portal.service.LayoutRevisionLocalService.class)
3875            protected com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService;
3876            @BeanReference(type = com.liferay.portal.service.LayoutRevisionService.class)
3877            protected com.liferay.portal.service.LayoutRevisionService layoutRevisionService;
3878            @BeanReference(type = LayoutRevisionPersistence.class)
3879            protected LayoutRevisionPersistence layoutRevisionPersistence;
3880            @BeanReference(type = com.liferay.portal.service.LayoutSetLocalService.class)
3881            protected com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService;
3882            @BeanReference(type = com.liferay.portal.service.LayoutSetService.class)
3883            protected com.liferay.portal.service.LayoutSetService layoutSetService;
3884            @BeanReference(type = LayoutSetPersistence.class)
3885            protected LayoutSetPersistence layoutSetPersistence;
3886            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchLocalService.class)
3887            protected com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService;
3888            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchService.class)
3889            protected com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService;
3890            @BeanReference(type = LayoutSetBranchPersistence.class)
3891            protected LayoutSetBranchPersistence layoutSetBranchPersistence;
3892            @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeLocalService.class)
3893            protected com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService;
3894            @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeService.class)
3895            protected com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService;
3896            @BeanReference(type = LayoutSetPrototypePersistence.class)
3897            protected LayoutSetPrototypePersistence layoutSetPrototypePersistence;
3898            @BeanReference(type = com.liferay.portal.service.LayoutTemplateLocalService.class)
3899            protected com.liferay.portal.service.LayoutTemplateLocalService layoutTemplateLocalService;
3900            @BeanReference(type = com.liferay.portal.service.ListTypeService.class)
3901            protected com.liferay.portal.service.ListTypeService listTypeService;
3902            @BeanReference(type = ListTypePersistence.class)
3903            protected ListTypePersistence listTypePersistence;
3904            @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
3905            protected com.liferay.portal.service.LockLocalService lockLocalService;
3906            @BeanReference(type = LockPersistence.class)
3907            protected LockPersistence lockPersistence;
3908            @BeanReference(type = LockFinder.class)
3909            protected LockFinder lockFinder;
3910            @BeanReference(type = com.liferay.portal.service.MembershipRequestLocalService.class)
3911            protected com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService;
3912            @BeanReference(type = com.liferay.portal.service.MembershipRequestService.class)
3913            protected com.liferay.portal.service.MembershipRequestService membershipRequestService;
3914            @BeanReference(type = MembershipRequestPersistence.class)
3915            protected MembershipRequestPersistence membershipRequestPersistence;
3916            @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
3917            protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
3918            @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
3919            protected com.liferay.portal.service.OrganizationService organizationService;
3920            @BeanReference(type = OrganizationPersistence.class)
3921            protected OrganizationPersistence organizationPersistence;
3922            @BeanReference(type = OrganizationFinder.class)
3923            protected OrganizationFinder organizationFinder;
3924            @BeanReference(type = OrgGroupRolePersistence.class)
3925            protected OrgGroupRolePersistence orgGroupRolePersistence;
3926            @BeanReference(type = com.liferay.portal.service.OrgLaborLocalService.class)
3927            protected com.liferay.portal.service.OrgLaborLocalService orgLaborLocalService;
3928            @BeanReference(type = com.liferay.portal.service.OrgLaborService.class)
3929            protected com.liferay.portal.service.OrgLaborService orgLaborService;
3930            @BeanReference(type = OrgLaborPersistence.class)
3931            protected OrgLaborPersistence orgLaborPersistence;
3932            @BeanReference(type = com.liferay.portal.service.PasswordPolicyLocalService.class)
3933            protected com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService;
3934            @BeanReference(type = com.liferay.portal.service.PasswordPolicyService.class)
3935            protected com.liferay.portal.service.PasswordPolicyService passwordPolicyService;
3936            @BeanReference(type = PasswordPolicyPersistence.class)
3937            protected PasswordPolicyPersistence passwordPolicyPersistence;
3938            @BeanReference(type = PasswordPolicyFinder.class)
3939            protected PasswordPolicyFinder passwordPolicyFinder;
3940            @BeanReference(type = com.liferay.portal.service.PasswordPolicyRelLocalService.class)
3941            protected com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService;
3942            @BeanReference(type = PasswordPolicyRelPersistence.class)
3943            protected PasswordPolicyRelPersistence passwordPolicyRelPersistence;
3944            @BeanReference(type = com.liferay.portal.service.PasswordTrackerLocalService.class)
3945            protected com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService;
3946            @BeanReference(type = PasswordTrackerPersistence.class)
3947            protected PasswordTrackerPersistence passwordTrackerPersistence;
3948            @BeanReference(type = com.liferay.portal.service.PermissionService.class)
3949            protected com.liferay.portal.service.PermissionService permissionService;
3950            @BeanReference(type = com.liferay.portal.service.PhoneLocalService.class)
3951            protected com.liferay.portal.service.PhoneLocalService phoneLocalService;
3952            @BeanReference(type = com.liferay.portal.service.PhoneService.class)
3953            protected com.liferay.portal.service.PhoneService phoneService;
3954            @BeanReference(type = PhonePersistence.class)
3955            protected PhonePersistence phonePersistence;
3956            @BeanReference(type = com.liferay.portal.service.PluginSettingLocalService.class)
3957            protected com.liferay.portal.service.PluginSettingLocalService pluginSettingLocalService;
3958            @BeanReference(type = com.liferay.portal.service.PluginSettingService.class)
3959            protected com.liferay.portal.service.PluginSettingService pluginSettingService;
3960            @BeanReference(type = PluginSettingPersistence.class)
3961            protected PluginSettingPersistence pluginSettingPersistence;
3962            @BeanReference(type = com.liferay.portal.service.PortalLocalService.class)
3963            protected com.liferay.portal.service.PortalLocalService portalLocalService;
3964            @BeanReference(type = com.liferay.portal.service.PortalService.class)
3965            protected com.liferay.portal.service.PortalService portalService;
3966            @BeanReference(type = com.liferay.portal.service.PortalPreferencesLocalService.class)
3967            protected com.liferay.portal.service.PortalPreferencesLocalService portalPreferencesLocalService;
3968            @BeanReference(type = PortalPreferencesPersistence.class)
3969            protected PortalPreferencesPersistence portalPreferencesPersistence;
3970            @BeanReference(type = com.liferay.portal.service.PortletLocalService.class)
3971            protected com.liferay.portal.service.PortletLocalService portletLocalService;
3972            @BeanReference(type = com.liferay.portal.service.PortletService.class)
3973            protected com.liferay.portal.service.PortletService portletService;
3974            @BeanReference(type = PortletPersistence.class)
3975            protected PortletPersistence portletPersistence;
3976            @BeanReference(type = com.liferay.portal.service.PortletItemLocalService.class)
3977            protected com.liferay.portal.service.PortletItemLocalService portletItemLocalService;
3978            @BeanReference(type = PortletItemPersistence.class)
3979            protected PortletItemPersistence portletItemPersistence;
3980            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
3981            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
3982            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
3983            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
3984            @BeanReference(type = PortletPreferencesPersistence.class)
3985            protected PortletPreferencesPersistence portletPreferencesPersistence;
3986            @BeanReference(type = PortletPreferencesFinder.class)
3987            protected PortletPreferencesFinder portletPreferencesFinder;
3988            @BeanReference(type = com.liferay.portal.service.QuartzLocalService.class)
3989            protected com.liferay.portal.service.QuartzLocalService quartzLocalService;
3990            @BeanReference(type = com.liferay.portal.service.RegionService.class)
3991            protected com.liferay.portal.service.RegionService regionService;
3992            @BeanReference(type = RegionPersistence.class)
3993            protected RegionPersistence regionPersistence;
3994            @BeanReference(type = com.liferay.portal.service.ReleaseLocalService.class)
3995            protected com.liferay.portal.service.ReleaseLocalService releaseLocalService;
3996            @BeanReference(type = ReleasePersistence.class)
3997            protected ReleasePersistence releasePersistence;
3998            @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
3999            protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
4000            @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
4001            protected com.liferay.portal.service.RepositoryService repositoryService;
4002            @BeanReference(type = RepositoryPersistence.class)
4003            protected RepositoryPersistence repositoryPersistence;
4004            @BeanReference(type = com.liferay.portal.service.RepositoryEntryLocalService.class)
4005            protected com.liferay.portal.service.RepositoryEntryLocalService repositoryEntryLocalService;
4006            @BeanReference(type = RepositoryEntryPersistence.class)
4007            protected RepositoryEntryPersistence repositoryEntryPersistence;
4008            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
4009            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
4010            @BeanReference(type = com.liferay.portal.service.ResourceActionLocalService.class)
4011            protected com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService;
4012            @BeanReference(type = ResourceActionPersistence.class)
4013            protected ResourceActionPersistence resourceActionPersistence;
4014            @BeanReference(type = com.liferay.portal.service.ResourceBlockLocalService.class)
4015            protected com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService;
4016            @BeanReference(type = com.liferay.portal.service.ResourceBlockService.class)
4017            protected com.liferay.portal.service.ResourceBlockService resourceBlockService;
4018            @BeanReference(type = ResourceBlockPersistence.class)
4019            protected ResourceBlockPersistence resourceBlockPersistence;
4020            @BeanReference(type = ResourceBlockFinder.class)
4021            protected ResourceBlockFinder resourceBlockFinder;
4022            @BeanReference(type = com.liferay.portal.service.ResourceBlockPermissionLocalService.class)
4023            protected com.liferay.portal.service.ResourceBlockPermissionLocalService resourceBlockPermissionLocalService;
4024            @BeanReference(type = ResourceBlockPermissionPersistence.class)
4025            protected ResourceBlockPermissionPersistence resourceBlockPermissionPersistence;
4026            @BeanReference(type = com.liferay.portal.service.ResourcePermissionLocalService.class)
4027            protected com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService;
4028            @BeanReference(type = com.liferay.portal.service.ResourcePermissionService.class)
4029            protected com.liferay.portal.service.ResourcePermissionService resourcePermissionService;
4030            @BeanReference(type = ResourcePermissionPersistence.class)
4031            protected ResourcePermissionPersistence resourcePermissionPersistence;
4032            @BeanReference(type = ResourcePermissionFinder.class)
4033            protected ResourcePermissionFinder resourcePermissionFinder;
4034            @BeanReference(type = com.liferay.portal.service.ResourceTypePermissionLocalService.class)
4035            protected com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService;
4036            @BeanReference(type = ResourceTypePermissionPersistence.class)
4037            protected ResourceTypePermissionPersistence resourceTypePermissionPersistence;
4038            @BeanReference(type = ResourceTypePermissionFinder.class)
4039            protected ResourceTypePermissionFinder resourceTypePermissionFinder;
4040            @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
4041            protected com.liferay.portal.service.RoleLocalService roleLocalService;
4042            @BeanReference(type = com.liferay.portal.service.RoleService.class)
4043            protected com.liferay.portal.service.RoleService roleService;
4044            @BeanReference(type = RolePersistence.class)
4045            protected RolePersistence rolePersistence;
4046            @BeanReference(type = RoleFinder.class)
4047            protected RoleFinder roleFinder;
4048            @BeanReference(type = com.liferay.portal.service.ServiceComponentLocalService.class)
4049            protected com.liferay.portal.service.ServiceComponentLocalService serviceComponentLocalService;
4050            @BeanReference(type = ServiceComponentPersistence.class)
4051            protected ServiceComponentPersistence serviceComponentPersistence;
4052            @BeanReference(type = com.liferay.portal.service.ShardLocalService.class)
4053            protected com.liferay.portal.service.ShardLocalService shardLocalService;
4054            @BeanReference(type = ShardPersistence.class)
4055            protected ShardPersistence shardPersistence;
4056            @BeanReference(type = com.liferay.portal.service.StagingLocalService.class)
4057            protected com.liferay.portal.service.StagingLocalService stagingLocalService;
4058            @BeanReference(type = com.liferay.portal.service.StagingService.class)
4059            protected com.liferay.portal.service.StagingService stagingService;
4060            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
4061            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
4062            @BeanReference(type = SubscriptionPersistence.class)
4063            protected SubscriptionPersistence subscriptionPersistence;
4064            @BeanReference(type = com.liferay.portal.service.SystemEventLocalService.class)
4065            protected com.liferay.portal.service.SystemEventLocalService systemEventLocalService;
4066            @BeanReference(type = SystemEventPersistence.class)
4067            protected SystemEventPersistence systemEventPersistence;
4068            @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
4069            protected com.liferay.portal.service.TeamLocalService teamLocalService;
4070            @BeanReference(type = com.liferay.portal.service.TeamService.class)
4071            protected com.liferay.portal.service.TeamService teamService;
4072            @BeanReference(type = TeamPersistence.class)
4073            protected TeamPersistence teamPersistence;
4074            @BeanReference(type = TeamFinder.class)
4075            protected TeamFinder teamFinder;
4076            @BeanReference(type = com.liferay.portal.service.ThemeLocalService.class)
4077            protected com.liferay.portal.service.ThemeLocalService themeLocalService;
4078            @BeanReference(type = com.liferay.portal.service.ThemeService.class)
4079            protected com.liferay.portal.service.ThemeService themeService;
4080            @BeanReference(type = com.liferay.portal.service.TicketLocalService.class)
4081            protected com.liferay.portal.service.TicketLocalService ticketLocalService;
4082            @BeanReference(type = TicketPersistence.class)
4083            protected TicketPersistence ticketPersistence;
4084            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
4085            protected com.liferay.portal.service.UserLocalService userLocalService;
4086            @BeanReference(type = com.liferay.portal.service.UserService.class)
4087            protected com.liferay.portal.service.UserService userService;
4088            @BeanReference(type = UserPersistence.class)
4089            protected UserPersistence userPersistence;
4090            @BeanReference(type = UserFinder.class)
4091            protected UserFinder userFinder;
4092            @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
4093            protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
4094            @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
4095            protected com.liferay.portal.service.UserGroupService userGroupService;
4096            @BeanReference(type = UserGroupPersistence.class)
4097            protected UserGroupPersistence userGroupPersistence;
4098            @BeanReference(type = UserGroupFinder.class)
4099            protected UserGroupFinder userGroupFinder;
4100            @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleLocalService.class)
4101            protected com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService;
4102            @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleService.class)
4103            protected com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService;
4104            @BeanReference(type = UserGroupGroupRolePersistence.class)
4105            protected UserGroupGroupRolePersistence userGroupGroupRolePersistence;
4106            @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
4107            protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
4108            @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
4109            protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
4110            @BeanReference(type = UserGroupRolePersistence.class)
4111            protected UserGroupRolePersistence userGroupRolePersistence;
4112            @BeanReference(type = UserGroupRoleFinder.class)
4113            protected UserGroupRoleFinder userGroupRoleFinder;
4114            @BeanReference(type = com.liferay.portal.service.UserIdMapperLocalService.class)
4115            protected com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService;
4116            @BeanReference(type = UserIdMapperPersistence.class)
4117            protected UserIdMapperPersistence userIdMapperPersistence;
4118            @BeanReference(type = com.liferay.portal.service.UserNotificationDeliveryLocalService.class)
4119            protected com.liferay.portal.service.UserNotificationDeliveryLocalService userNotificationDeliveryLocalService;
4120            @BeanReference(type = UserNotificationDeliveryPersistence.class)
4121            protected UserNotificationDeliveryPersistence userNotificationDeliveryPersistence;
4122            @BeanReference(type = com.liferay.portal.service.UserNotificationEventLocalService.class)
4123            protected com.liferay.portal.service.UserNotificationEventLocalService userNotificationEventLocalService;
4124            @BeanReference(type = UserNotificationEventPersistence.class)
4125            protected UserNotificationEventPersistence userNotificationEventPersistence;
4126            @BeanReference(type = com.liferay.portal.service.UserTrackerLocalService.class)
4127            protected com.liferay.portal.service.UserTrackerLocalService userTrackerLocalService;
4128            @BeanReference(type = UserTrackerPersistence.class)
4129            protected UserTrackerPersistence userTrackerPersistence;
4130            @BeanReference(type = com.liferay.portal.service.UserTrackerPathLocalService.class)
4131            protected com.liferay.portal.service.UserTrackerPathLocalService userTrackerPathLocalService;
4132            @BeanReference(type = UserTrackerPathPersistence.class)
4133            protected UserTrackerPathPersistence userTrackerPathPersistence;
4134            @BeanReference(type = com.liferay.portal.service.VirtualHostLocalService.class)
4135            protected com.liferay.portal.service.VirtualHostLocalService virtualHostLocalService;
4136            @BeanReference(type = VirtualHostPersistence.class)
4137            protected VirtualHostPersistence virtualHostPersistence;
4138            @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
4139            protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
4140            @BeanReference(type = WebDAVPropsPersistence.class)
4141            protected WebDAVPropsPersistence webDAVPropsPersistence;
4142            @BeanReference(type = com.liferay.portal.service.WebsiteLocalService.class)
4143            protected com.liferay.portal.service.WebsiteLocalService websiteLocalService;
4144            @BeanReference(type = com.liferay.portal.service.WebsiteService.class)
4145            protected com.liferay.portal.service.WebsiteService websiteService;
4146            @BeanReference(type = WebsitePersistence.class)
4147            protected WebsitePersistence websitePersistence;
4148            @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
4149            protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
4150            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
4151            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
4152            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
4153            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
4154            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
4155            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
4156            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
4157            protected com.liferay.counter.service.CounterLocalService counterLocalService;
4158            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
4159            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
4160            @BeanReference(type = ExpandoRowPersistence.class)
4161            protected ExpandoRowPersistence expandoRowPersistence;
4162            private String _beanIdentifier;
4163    }