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