001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service.base;
016    
017    import com.liferay.announcements.kernel.service.persistence.AnnouncementsDeliveryPersistence;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.dao.db.DB;
021    import com.liferay.portal.kernel.dao.db.DBManagerUtil;
022    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
023    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
024    import com.liferay.portal.kernel.exception.SystemException;
025    import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService;
026    import com.liferay.portal.model.User;
027    import com.liferay.portal.service.BaseServiceImpl;
028    import com.liferay.portal.service.UserService;
029    import com.liferay.portal.service.persistence.BrowserTrackerPersistence;
030    import com.liferay.portal.service.persistence.CompanyPersistence;
031    import com.liferay.portal.service.persistence.ContactPersistence;
032    import com.liferay.portal.service.persistence.GroupFinder;
033    import com.liferay.portal.service.persistence.GroupPersistence;
034    import com.liferay.portal.service.persistence.ImagePersistence;
035    import com.liferay.portal.service.persistence.LayoutFinder;
036    import com.liferay.portal.service.persistence.LayoutPersistence;
037    import com.liferay.portal.service.persistence.MembershipRequestPersistence;
038    import com.liferay.portal.service.persistence.OrganizationFinder;
039    import com.liferay.portal.service.persistence.OrganizationPersistence;
040    import com.liferay.portal.service.persistence.PasswordPolicyFinder;
041    import com.liferay.portal.service.persistence.PasswordPolicyPersistence;
042    import com.liferay.portal.service.persistence.PasswordPolicyRelPersistence;
043    import com.liferay.portal.service.persistence.PasswordTrackerPersistence;
044    import com.liferay.portal.service.persistence.RecentLayoutBranchPersistence;
045    import com.liferay.portal.service.persistence.RecentLayoutRevisionPersistence;
046    import com.liferay.portal.service.persistence.RecentLayoutSetBranchPersistence;
047    import com.liferay.portal.service.persistence.RoleFinder;
048    import com.liferay.portal.service.persistence.RolePersistence;
049    import com.liferay.portal.service.persistence.SubscriptionPersistence;
050    import com.liferay.portal.service.persistence.TeamFinder;
051    import com.liferay.portal.service.persistence.TeamPersistence;
052    import com.liferay.portal.service.persistence.TicketPersistence;
053    import com.liferay.portal.service.persistence.UserFinder;
054    import com.liferay.portal.service.persistence.UserGroupFinder;
055    import com.liferay.portal.service.persistence.UserGroupPersistence;
056    import com.liferay.portal.service.persistence.UserGroupRoleFinder;
057    import com.liferay.portal.service.persistence.UserGroupRolePersistence;
058    import com.liferay.portal.service.persistence.UserIdMapperPersistence;
059    import com.liferay.portal.service.persistence.UserPersistence;
060    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
061    import com.liferay.portal.util.PortalUtil;
062    
063    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
064    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
065    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
066    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
067    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
068    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
069    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
070    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
071    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
072    import com.liferay.portlet.messageboards.service.persistence.MBBanPersistence;
073    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
074    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
075    import com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence;
076    import com.liferay.portlet.messageboards.service.persistence.MBThreadFlagPersistence;
077    import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
078    import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
079    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
080    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
081    import com.liferay.portlet.social.service.persistence.SocialRelationPersistence;
082    import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
083    
084    import javax.sql.DataSource;
085    
086    /**
087     * Provides the base implementation for the user remote service.
088     *
089     * <p>
090     * This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.portal.service.impl.UserServiceImpl}.
091     * </p>
092     *
093     * @author Brian Wing Shun Chan
094     * @see com.liferay.portal.service.impl.UserServiceImpl
095     * @see com.liferay.portal.service.UserServiceUtil
096     * @generated
097     */
098    public abstract class UserServiceBaseImpl extends BaseServiceImpl
099            implements UserService, IdentifiableOSGiService {
100            /*
101             * NOTE FOR DEVELOPERS:
102             *
103             * Never modify or reference this class directly. Always use {@link com.liferay.portal.service.UserServiceUtil} to access the user remote service.
104             */
105    
106            /**
107             * Returns the user local service.
108             *
109             * @return the user local service
110             */
111            public com.liferay.portal.service.UserLocalService getUserLocalService() {
112                    return userLocalService;
113            }
114    
115            /**
116             * Sets the user local service.
117             *
118             * @param userLocalService the user local service
119             */
120            public void setUserLocalService(
121                    com.liferay.portal.service.UserLocalService userLocalService) {
122                    this.userLocalService = userLocalService;
123            }
124    
125            /**
126             * Returns the user remote service.
127             *
128             * @return the user remote service
129             */
130            public UserService getUserService() {
131                    return userService;
132            }
133    
134            /**
135             * Sets the user remote service.
136             *
137             * @param userService the user remote service
138             */
139            public void setUserService(UserService userService) {
140                    this.userService = userService;
141            }
142    
143            /**
144             * Returns the user persistence.
145             *
146             * @return the user persistence
147             */
148            public UserPersistence getUserPersistence() {
149                    return userPersistence;
150            }
151    
152            /**
153             * Sets the user persistence.
154             *
155             * @param userPersistence the user persistence
156             */
157            public void setUserPersistence(UserPersistence userPersistence) {
158                    this.userPersistence = userPersistence;
159            }
160    
161            /**
162             * Returns the user finder.
163             *
164             * @return the user finder
165             */
166            public UserFinder getUserFinder() {
167                    return userFinder;
168            }
169    
170            /**
171             * Sets the user finder.
172             *
173             * @param userFinder the user finder
174             */
175            public void setUserFinder(UserFinder userFinder) {
176                    this.userFinder = userFinder;
177            }
178    
179            /**
180             * Returns the counter local service.
181             *
182             * @return the counter local service
183             */
184            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
185                    return counterLocalService;
186            }
187    
188            /**
189             * Sets the counter local service.
190             *
191             * @param counterLocalService the counter local service
192             */
193            public void setCounterLocalService(
194                    com.liferay.counter.service.CounterLocalService counterLocalService) {
195                    this.counterLocalService = counterLocalService;
196            }
197    
198            /**
199             * Returns the mail remote service.
200             *
201             * @return the mail remote service
202             */
203            public com.liferay.mail.service.MailService getMailService() {
204                    return mailService;
205            }
206    
207            /**
208             * Sets the mail remote service.
209             *
210             * @param mailService the mail remote service
211             */
212            public void setMailService(com.liferay.mail.service.MailService mailService) {
213                    this.mailService = mailService;
214            }
215    
216            /**
217             * Returns the browser tracker local service.
218             *
219             * @return the browser tracker local service
220             */
221            public com.liferay.portal.service.BrowserTrackerLocalService getBrowserTrackerLocalService() {
222                    return browserTrackerLocalService;
223            }
224    
225            /**
226             * Sets the browser tracker local service.
227             *
228             * @param browserTrackerLocalService the browser tracker local service
229             */
230            public void setBrowserTrackerLocalService(
231                    com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService) {
232                    this.browserTrackerLocalService = browserTrackerLocalService;
233            }
234    
235            /**
236             * Returns the browser tracker persistence.
237             *
238             * @return the browser tracker persistence
239             */
240            public BrowserTrackerPersistence getBrowserTrackerPersistence() {
241                    return browserTrackerPersistence;
242            }
243    
244            /**
245             * Sets the browser tracker persistence.
246             *
247             * @param browserTrackerPersistence the browser tracker persistence
248             */
249            public void setBrowserTrackerPersistence(
250                    BrowserTrackerPersistence browserTrackerPersistence) {
251                    this.browserTrackerPersistence = browserTrackerPersistence;
252            }
253    
254            /**
255             * Returns the company local service.
256             *
257             * @return the company local service
258             */
259            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
260                    return companyLocalService;
261            }
262    
263            /**
264             * Sets the company local service.
265             *
266             * @param companyLocalService the company local service
267             */
268            public void setCompanyLocalService(
269                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
270                    this.companyLocalService = companyLocalService;
271            }
272    
273            /**
274             * Returns the company remote service.
275             *
276             * @return the company remote service
277             */
278            public com.liferay.portal.service.CompanyService getCompanyService() {
279                    return companyService;
280            }
281    
282            /**
283             * Sets the company remote service.
284             *
285             * @param companyService the company remote service
286             */
287            public void setCompanyService(
288                    com.liferay.portal.service.CompanyService companyService) {
289                    this.companyService = companyService;
290            }
291    
292            /**
293             * Returns the company persistence.
294             *
295             * @return the company persistence
296             */
297            public CompanyPersistence getCompanyPersistence() {
298                    return companyPersistence;
299            }
300    
301            /**
302             * Sets the company persistence.
303             *
304             * @param companyPersistence the company persistence
305             */
306            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
307                    this.companyPersistence = companyPersistence;
308            }
309    
310            /**
311             * Returns the contact local service.
312             *
313             * @return the contact local service
314             */
315            public com.liferay.portal.service.ContactLocalService getContactLocalService() {
316                    return contactLocalService;
317            }
318    
319            /**
320             * Sets the contact local service.
321             *
322             * @param contactLocalService the contact local service
323             */
324            public void setContactLocalService(
325                    com.liferay.portal.service.ContactLocalService contactLocalService) {
326                    this.contactLocalService = contactLocalService;
327            }
328    
329            /**
330             * Returns the contact remote service.
331             *
332             * @return the contact remote service
333             */
334            public com.liferay.portal.service.ContactService getContactService() {
335                    return contactService;
336            }
337    
338            /**
339             * Sets the contact remote service.
340             *
341             * @param contactService the contact remote service
342             */
343            public void setContactService(
344                    com.liferay.portal.service.ContactService contactService) {
345                    this.contactService = contactService;
346            }
347    
348            /**
349             * Returns the contact persistence.
350             *
351             * @return the contact persistence
352             */
353            public ContactPersistence getContactPersistence() {
354                    return contactPersistence;
355            }
356    
357            /**
358             * Sets the contact persistence.
359             *
360             * @param contactPersistence the contact persistence
361             */
362            public void setContactPersistence(ContactPersistence contactPersistence) {
363                    this.contactPersistence = contactPersistence;
364            }
365    
366            /**
367             * Returns the group local service.
368             *
369             * @return the group local service
370             */
371            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
372                    return groupLocalService;
373            }
374    
375            /**
376             * Sets the group local service.
377             *
378             * @param groupLocalService the group local service
379             */
380            public void setGroupLocalService(
381                    com.liferay.portal.service.GroupLocalService groupLocalService) {
382                    this.groupLocalService = groupLocalService;
383            }
384    
385            /**
386             * Returns the group remote service.
387             *
388             * @return the group remote service
389             */
390            public com.liferay.portal.service.GroupService getGroupService() {
391                    return groupService;
392            }
393    
394            /**
395             * Sets the group remote service.
396             *
397             * @param groupService the group remote service
398             */
399            public void setGroupService(
400                    com.liferay.portal.service.GroupService groupService) {
401                    this.groupService = groupService;
402            }
403    
404            /**
405             * Returns the group persistence.
406             *
407             * @return the group persistence
408             */
409            public GroupPersistence getGroupPersistence() {
410                    return groupPersistence;
411            }
412    
413            /**
414             * Sets the group persistence.
415             *
416             * @param groupPersistence the group persistence
417             */
418            public void setGroupPersistence(GroupPersistence groupPersistence) {
419                    this.groupPersistence = groupPersistence;
420            }
421    
422            /**
423             * Returns the group finder.
424             *
425             * @return the group finder
426             */
427            public GroupFinder getGroupFinder() {
428                    return groupFinder;
429            }
430    
431            /**
432             * Sets the group finder.
433             *
434             * @param groupFinder the group finder
435             */
436            public void setGroupFinder(GroupFinder groupFinder) {
437                    this.groupFinder = groupFinder;
438            }
439    
440            /**
441             * Returns the image local service.
442             *
443             * @return the image local service
444             */
445            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
446                    return imageLocalService;
447            }
448    
449            /**
450             * Sets the image local service.
451             *
452             * @param imageLocalService the image local service
453             */
454            public void setImageLocalService(
455                    com.liferay.portal.service.ImageLocalService imageLocalService) {
456                    this.imageLocalService = imageLocalService;
457            }
458    
459            /**
460             * Returns the image remote service.
461             *
462             * @return the image remote service
463             */
464            public com.liferay.portal.service.ImageService getImageService() {
465                    return imageService;
466            }
467    
468            /**
469             * Sets the image remote service.
470             *
471             * @param imageService the image remote service
472             */
473            public void setImageService(
474                    com.liferay.portal.service.ImageService imageService) {
475                    this.imageService = imageService;
476            }
477    
478            /**
479             * Returns the image persistence.
480             *
481             * @return the image persistence
482             */
483            public ImagePersistence getImagePersistence() {
484                    return imagePersistence;
485            }
486    
487            /**
488             * Sets the image persistence.
489             *
490             * @param imagePersistence the image persistence
491             */
492            public void setImagePersistence(ImagePersistence imagePersistence) {
493                    this.imagePersistence = imagePersistence;
494            }
495    
496            /**
497             * Returns the layout local service.
498             *
499             * @return the layout local service
500             */
501            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
502                    return layoutLocalService;
503            }
504    
505            /**
506             * Sets the layout local service.
507             *
508             * @param layoutLocalService the layout local service
509             */
510            public void setLayoutLocalService(
511                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
512                    this.layoutLocalService = layoutLocalService;
513            }
514    
515            /**
516             * Returns the layout remote service.
517             *
518             * @return the layout remote service
519             */
520            public com.liferay.portal.service.LayoutService getLayoutService() {
521                    return layoutService;
522            }
523    
524            /**
525             * Sets the layout remote service.
526             *
527             * @param layoutService the layout remote service
528             */
529            public void setLayoutService(
530                    com.liferay.portal.service.LayoutService layoutService) {
531                    this.layoutService = layoutService;
532            }
533    
534            /**
535             * Returns the layout persistence.
536             *
537             * @return the layout persistence
538             */
539            public LayoutPersistence getLayoutPersistence() {
540                    return layoutPersistence;
541            }
542    
543            /**
544             * Sets the layout persistence.
545             *
546             * @param layoutPersistence the layout persistence
547             */
548            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
549                    this.layoutPersistence = layoutPersistence;
550            }
551    
552            /**
553             * Returns the layout finder.
554             *
555             * @return the layout finder
556             */
557            public LayoutFinder getLayoutFinder() {
558                    return layoutFinder;
559            }
560    
561            /**
562             * Sets the layout finder.
563             *
564             * @param layoutFinder the layout finder
565             */
566            public void setLayoutFinder(LayoutFinder layoutFinder) {
567                    this.layoutFinder = layoutFinder;
568            }
569    
570            /**
571             * Returns the membership request local service.
572             *
573             * @return the membership request local service
574             */
575            public com.liferay.portal.service.MembershipRequestLocalService getMembershipRequestLocalService() {
576                    return membershipRequestLocalService;
577            }
578    
579            /**
580             * Sets the membership request local service.
581             *
582             * @param membershipRequestLocalService the membership request local service
583             */
584            public void setMembershipRequestLocalService(
585                    com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService) {
586                    this.membershipRequestLocalService = membershipRequestLocalService;
587            }
588    
589            /**
590             * Returns the membership request remote service.
591             *
592             * @return the membership request remote service
593             */
594            public com.liferay.portal.service.MembershipRequestService getMembershipRequestService() {
595                    return membershipRequestService;
596            }
597    
598            /**
599             * Sets the membership request remote service.
600             *
601             * @param membershipRequestService the membership request remote service
602             */
603            public void setMembershipRequestService(
604                    com.liferay.portal.service.MembershipRequestService membershipRequestService) {
605                    this.membershipRequestService = membershipRequestService;
606            }
607    
608            /**
609             * Returns the membership request persistence.
610             *
611             * @return the membership request persistence
612             */
613            public MembershipRequestPersistence getMembershipRequestPersistence() {
614                    return membershipRequestPersistence;
615            }
616    
617            /**
618             * Sets the membership request persistence.
619             *
620             * @param membershipRequestPersistence the membership request persistence
621             */
622            public void setMembershipRequestPersistence(
623                    MembershipRequestPersistence membershipRequestPersistence) {
624                    this.membershipRequestPersistence = membershipRequestPersistence;
625            }
626    
627            /**
628             * Returns the organization local service.
629             *
630             * @return the organization local service
631             */
632            public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
633                    return organizationLocalService;
634            }
635    
636            /**
637             * Sets the organization local service.
638             *
639             * @param organizationLocalService the organization local service
640             */
641            public void setOrganizationLocalService(
642                    com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
643                    this.organizationLocalService = organizationLocalService;
644            }
645    
646            /**
647             * Returns the organization remote service.
648             *
649             * @return the organization remote service
650             */
651            public com.liferay.portal.service.OrganizationService getOrganizationService() {
652                    return organizationService;
653            }
654    
655            /**
656             * Sets the organization remote service.
657             *
658             * @param organizationService the organization remote service
659             */
660            public void setOrganizationService(
661                    com.liferay.portal.service.OrganizationService organizationService) {
662                    this.organizationService = organizationService;
663            }
664    
665            /**
666             * Returns the organization persistence.
667             *
668             * @return the organization persistence
669             */
670            public OrganizationPersistence getOrganizationPersistence() {
671                    return organizationPersistence;
672            }
673    
674            /**
675             * Sets the organization persistence.
676             *
677             * @param organizationPersistence the organization persistence
678             */
679            public void setOrganizationPersistence(
680                    OrganizationPersistence organizationPersistence) {
681                    this.organizationPersistence = organizationPersistence;
682            }
683    
684            /**
685             * Returns the organization finder.
686             *
687             * @return the organization finder
688             */
689            public OrganizationFinder getOrganizationFinder() {
690                    return organizationFinder;
691            }
692    
693            /**
694             * Sets the organization finder.
695             *
696             * @param organizationFinder the organization finder
697             */
698            public void setOrganizationFinder(OrganizationFinder organizationFinder) {
699                    this.organizationFinder = organizationFinder;
700            }
701    
702            /**
703             * Returns the password policy local service.
704             *
705             * @return the password policy local service
706             */
707            public com.liferay.portal.service.PasswordPolicyLocalService getPasswordPolicyLocalService() {
708                    return passwordPolicyLocalService;
709            }
710    
711            /**
712             * Sets the password policy local service.
713             *
714             * @param passwordPolicyLocalService the password policy local service
715             */
716            public void setPasswordPolicyLocalService(
717                    com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService) {
718                    this.passwordPolicyLocalService = passwordPolicyLocalService;
719            }
720    
721            /**
722             * Returns the password policy remote service.
723             *
724             * @return the password policy remote service
725             */
726            public com.liferay.portal.service.PasswordPolicyService getPasswordPolicyService() {
727                    return passwordPolicyService;
728            }
729    
730            /**
731             * Sets the password policy remote service.
732             *
733             * @param passwordPolicyService the password policy remote service
734             */
735            public void setPasswordPolicyService(
736                    com.liferay.portal.service.PasswordPolicyService passwordPolicyService) {
737                    this.passwordPolicyService = passwordPolicyService;
738            }
739    
740            /**
741             * Returns the password policy persistence.
742             *
743             * @return the password policy persistence
744             */
745            public PasswordPolicyPersistence getPasswordPolicyPersistence() {
746                    return passwordPolicyPersistence;
747            }
748    
749            /**
750             * Sets the password policy persistence.
751             *
752             * @param passwordPolicyPersistence the password policy persistence
753             */
754            public void setPasswordPolicyPersistence(
755                    PasswordPolicyPersistence passwordPolicyPersistence) {
756                    this.passwordPolicyPersistence = passwordPolicyPersistence;
757            }
758    
759            /**
760             * Returns the password policy finder.
761             *
762             * @return the password policy finder
763             */
764            public PasswordPolicyFinder getPasswordPolicyFinder() {
765                    return passwordPolicyFinder;
766            }
767    
768            /**
769             * Sets the password policy finder.
770             *
771             * @param passwordPolicyFinder the password policy finder
772             */
773            public void setPasswordPolicyFinder(
774                    PasswordPolicyFinder passwordPolicyFinder) {
775                    this.passwordPolicyFinder = passwordPolicyFinder;
776            }
777    
778            /**
779             * Returns the password policy rel local service.
780             *
781             * @return the password policy rel local service
782             */
783            public com.liferay.portal.service.PasswordPolicyRelLocalService getPasswordPolicyRelLocalService() {
784                    return passwordPolicyRelLocalService;
785            }
786    
787            /**
788             * Sets the password policy rel local service.
789             *
790             * @param passwordPolicyRelLocalService the password policy rel local service
791             */
792            public void setPasswordPolicyRelLocalService(
793                    com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService) {
794                    this.passwordPolicyRelLocalService = passwordPolicyRelLocalService;
795            }
796    
797            /**
798             * Returns the password policy rel persistence.
799             *
800             * @return the password policy rel persistence
801             */
802            public PasswordPolicyRelPersistence getPasswordPolicyRelPersistence() {
803                    return passwordPolicyRelPersistence;
804            }
805    
806            /**
807             * Sets the password policy rel persistence.
808             *
809             * @param passwordPolicyRelPersistence the password policy rel persistence
810             */
811            public void setPasswordPolicyRelPersistence(
812                    PasswordPolicyRelPersistence passwordPolicyRelPersistence) {
813                    this.passwordPolicyRelPersistence = passwordPolicyRelPersistence;
814            }
815    
816            /**
817             * Returns the password tracker local service.
818             *
819             * @return the password tracker local service
820             */
821            public com.liferay.portal.service.PasswordTrackerLocalService getPasswordTrackerLocalService() {
822                    return passwordTrackerLocalService;
823            }
824    
825            /**
826             * Sets the password tracker local service.
827             *
828             * @param passwordTrackerLocalService the password tracker local service
829             */
830            public void setPasswordTrackerLocalService(
831                    com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService) {
832                    this.passwordTrackerLocalService = passwordTrackerLocalService;
833            }
834    
835            /**
836             * Returns the password tracker persistence.
837             *
838             * @return the password tracker persistence
839             */
840            public PasswordTrackerPersistence getPasswordTrackerPersistence() {
841                    return passwordTrackerPersistence;
842            }
843    
844            /**
845             * Sets the password tracker persistence.
846             *
847             * @param passwordTrackerPersistence the password tracker persistence
848             */
849            public void setPasswordTrackerPersistence(
850                    PasswordTrackerPersistence passwordTrackerPersistence) {
851                    this.passwordTrackerPersistence = passwordTrackerPersistence;
852            }
853    
854            /**
855             * Returns the recent layout branch local service.
856             *
857             * @return the recent layout branch local service
858             */
859            public com.liferay.portal.service.RecentLayoutBranchLocalService getRecentLayoutBranchLocalService() {
860                    return recentLayoutBranchLocalService;
861            }
862    
863            /**
864             * Sets the recent layout branch local service.
865             *
866             * @param recentLayoutBranchLocalService the recent layout branch local service
867             */
868            public void setRecentLayoutBranchLocalService(
869                    com.liferay.portal.service.RecentLayoutBranchLocalService recentLayoutBranchLocalService) {
870                    this.recentLayoutBranchLocalService = recentLayoutBranchLocalService;
871            }
872    
873            /**
874             * Returns the recent layout branch persistence.
875             *
876             * @return the recent layout branch persistence
877             */
878            public RecentLayoutBranchPersistence getRecentLayoutBranchPersistence() {
879                    return recentLayoutBranchPersistence;
880            }
881    
882            /**
883             * Sets the recent layout branch persistence.
884             *
885             * @param recentLayoutBranchPersistence the recent layout branch persistence
886             */
887            public void setRecentLayoutBranchPersistence(
888                    RecentLayoutBranchPersistence recentLayoutBranchPersistence) {
889                    this.recentLayoutBranchPersistence = recentLayoutBranchPersistence;
890            }
891    
892            /**
893             * Returns the recent layout revision local service.
894             *
895             * @return the recent layout revision local service
896             */
897            public com.liferay.portal.service.RecentLayoutRevisionLocalService getRecentLayoutRevisionLocalService() {
898                    return recentLayoutRevisionLocalService;
899            }
900    
901            /**
902             * Sets the recent layout revision local service.
903             *
904             * @param recentLayoutRevisionLocalService the recent layout revision local service
905             */
906            public void setRecentLayoutRevisionLocalService(
907                    com.liferay.portal.service.RecentLayoutRevisionLocalService recentLayoutRevisionLocalService) {
908                    this.recentLayoutRevisionLocalService = recentLayoutRevisionLocalService;
909            }
910    
911            /**
912             * Returns the recent layout revision persistence.
913             *
914             * @return the recent layout revision persistence
915             */
916            public RecentLayoutRevisionPersistence getRecentLayoutRevisionPersistence() {
917                    return recentLayoutRevisionPersistence;
918            }
919    
920            /**
921             * Sets the recent layout revision persistence.
922             *
923             * @param recentLayoutRevisionPersistence the recent layout revision persistence
924             */
925            public void setRecentLayoutRevisionPersistence(
926                    RecentLayoutRevisionPersistence recentLayoutRevisionPersistence) {
927                    this.recentLayoutRevisionPersistence = recentLayoutRevisionPersistence;
928            }
929    
930            /**
931             * Returns the recent layout set branch local service.
932             *
933             * @return the recent layout set branch local service
934             */
935            public com.liferay.portal.service.RecentLayoutSetBranchLocalService getRecentLayoutSetBranchLocalService() {
936                    return recentLayoutSetBranchLocalService;
937            }
938    
939            /**
940             * Sets the recent layout set branch local service.
941             *
942             * @param recentLayoutSetBranchLocalService the recent layout set branch local service
943             */
944            public void setRecentLayoutSetBranchLocalService(
945                    com.liferay.portal.service.RecentLayoutSetBranchLocalService recentLayoutSetBranchLocalService) {
946                    this.recentLayoutSetBranchLocalService = recentLayoutSetBranchLocalService;
947            }
948    
949            /**
950             * Returns the recent layout set branch persistence.
951             *
952             * @return the recent layout set branch persistence
953             */
954            public RecentLayoutSetBranchPersistence getRecentLayoutSetBranchPersistence() {
955                    return recentLayoutSetBranchPersistence;
956            }
957    
958            /**
959             * Sets the recent layout set branch persistence.
960             *
961             * @param recentLayoutSetBranchPersistence the recent layout set branch persistence
962             */
963            public void setRecentLayoutSetBranchPersistence(
964                    RecentLayoutSetBranchPersistence recentLayoutSetBranchPersistence) {
965                    this.recentLayoutSetBranchPersistence = recentLayoutSetBranchPersistence;
966            }
967    
968            /**
969             * Returns the resource local service.
970             *
971             * @return the resource local service
972             */
973            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
974                    return resourceLocalService;
975            }
976    
977            /**
978             * Sets the resource local service.
979             *
980             * @param resourceLocalService the resource local service
981             */
982            public void setResourceLocalService(
983                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
984                    this.resourceLocalService = resourceLocalService;
985            }
986    
987            /**
988             * Returns the role local service.
989             *
990             * @return the role local service
991             */
992            public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
993                    return roleLocalService;
994            }
995    
996            /**
997             * Sets the role local service.
998             *
999             * @param roleLocalService the role local service
1000             */
1001            public void setRoleLocalService(
1002                    com.liferay.portal.service.RoleLocalService roleLocalService) {
1003                    this.roleLocalService = roleLocalService;
1004            }
1005    
1006            /**
1007             * Returns the role remote service.
1008             *
1009             * @return the role remote service
1010             */
1011            public com.liferay.portal.service.RoleService getRoleService() {
1012                    return roleService;
1013            }
1014    
1015            /**
1016             * Sets the role remote service.
1017             *
1018             * @param roleService the role remote service
1019             */
1020            public void setRoleService(
1021                    com.liferay.portal.service.RoleService roleService) {
1022                    this.roleService = roleService;
1023            }
1024    
1025            /**
1026             * Returns the role persistence.
1027             *
1028             * @return the role persistence
1029             */
1030            public RolePersistence getRolePersistence() {
1031                    return rolePersistence;
1032            }
1033    
1034            /**
1035             * Sets the role persistence.
1036             *
1037             * @param rolePersistence the role persistence
1038             */
1039            public void setRolePersistence(RolePersistence rolePersistence) {
1040                    this.rolePersistence = rolePersistence;
1041            }
1042    
1043            /**
1044             * Returns the role finder.
1045             *
1046             * @return the role finder
1047             */
1048            public RoleFinder getRoleFinder() {
1049                    return roleFinder;
1050            }
1051    
1052            /**
1053             * Sets the role finder.
1054             *
1055             * @param roleFinder the role finder
1056             */
1057            public void setRoleFinder(RoleFinder roleFinder) {
1058                    this.roleFinder = roleFinder;
1059            }
1060    
1061            /**
1062             * Returns the subscription local service.
1063             *
1064             * @return the subscription local service
1065             */
1066            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
1067                    return subscriptionLocalService;
1068            }
1069    
1070            /**
1071             * Sets the subscription local service.
1072             *
1073             * @param subscriptionLocalService the subscription local service
1074             */
1075            public void setSubscriptionLocalService(
1076                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
1077                    this.subscriptionLocalService = subscriptionLocalService;
1078            }
1079    
1080            /**
1081             * Returns the subscription persistence.
1082             *
1083             * @return the subscription persistence
1084             */
1085            public SubscriptionPersistence getSubscriptionPersistence() {
1086                    return subscriptionPersistence;
1087            }
1088    
1089            /**
1090             * Sets the subscription persistence.
1091             *
1092             * @param subscriptionPersistence the subscription persistence
1093             */
1094            public void setSubscriptionPersistence(
1095                    SubscriptionPersistence subscriptionPersistence) {
1096                    this.subscriptionPersistence = subscriptionPersistence;
1097            }
1098    
1099            /**
1100             * Returns the team local service.
1101             *
1102             * @return the team local service
1103             */
1104            public com.liferay.portal.service.TeamLocalService getTeamLocalService() {
1105                    return teamLocalService;
1106            }
1107    
1108            /**
1109             * Sets the team local service.
1110             *
1111             * @param teamLocalService the team local service
1112             */
1113            public void setTeamLocalService(
1114                    com.liferay.portal.service.TeamLocalService teamLocalService) {
1115                    this.teamLocalService = teamLocalService;
1116            }
1117    
1118            /**
1119             * Returns the team remote service.
1120             *
1121             * @return the team remote service
1122             */
1123            public com.liferay.portal.service.TeamService getTeamService() {
1124                    return teamService;
1125            }
1126    
1127            /**
1128             * Sets the team remote service.
1129             *
1130             * @param teamService the team remote service
1131             */
1132            public void setTeamService(
1133                    com.liferay.portal.service.TeamService teamService) {
1134                    this.teamService = teamService;
1135            }
1136    
1137            /**
1138             * Returns the team persistence.
1139             *
1140             * @return the team persistence
1141             */
1142            public TeamPersistence getTeamPersistence() {
1143                    return teamPersistence;
1144            }
1145    
1146            /**
1147             * Sets the team persistence.
1148             *
1149             * @param teamPersistence the team persistence
1150             */
1151            public void setTeamPersistence(TeamPersistence teamPersistence) {
1152                    this.teamPersistence = teamPersistence;
1153            }
1154    
1155            /**
1156             * Returns the team finder.
1157             *
1158             * @return the team finder
1159             */
1160            public TeamFinder getTeamFinder() {
1161                    return teamFinder;
1162            }
1163    
1164            /**
1165             * Sets the team finder.
1166             *
1167             * @param teamFinder the team finder
1168             */
1169            public void setTeamFinder(TeamFinder teamFinder) {
1170                    this.teamFinder = teamFinder;
1171            }
1172    
1173            /**
1174             * Returns the ticket local service.
1175             *
1176             * @return the ticket local service
1177             */
1178            public com.liferay.portal.service.TicketLocalService getTicketLocalService() {
1179                    return ticketLocalService;
1180            }
1181    
1182            /**
1183             * Sets the ticket local service.
1184             *
1185             * @param ticketLocalService the ticket local service
1186             */
1187            public void setTicketLocalService(
1188                    com.liferay.portal.service.TicketLocalService ticketLocalService) {
1189                    this.ticketLocalService = ticketLocalService;
1190            }
1191    
1192            /**
1193             * Returns the ticket persistence.
1194             *
1195             * @return the ticket persistence
1196             */
1197            public TicketPersistence getTicketPersistence() {
1198                    return ticketPersistence;
1199            }
1200    
1201            /**
1202             * Sets the ticket persistence.
1203             *
1204             * @param ticketPersistence the ticket persistence
1205             */
1206            public void setTicketPersistence(TicketPersistence ticketPersistence) {
1207                    this.ticketPersistence = ticketPersistence;
1208            }
1209    
1210            /**
1211             * Returns the announcements delivery local service.
1212             *
1213             * @return the announcements delivery local service
1214             */
1215            public com.liferay.announcements.kernel.service.AnnouncementsDeliveryLocalService getAnnouncementsDeliveryLocalService() {
1216                    return announcementsDeliveryLocalService;
1217            }
1218    
1219            /**
1220             * Sets the announcements delivery local service.
1221             *
1222             * @param announcementsDeliveryLocalService the announcements delivery local service
1223             */
1224            public void setAnnouncementsDeliveryLocalService(
1225                    com.liferay.announcements.kernel.service.AnnouncementsDeliveryLocalService announcementsDeliveryLocalService) {
1226                    this.announcementsDeliveryLocalService = announcementsDeliveryLocalService;
1227            }
1228    
1229            /**
1230             * Returns the announcements delivery remote service.
1231             *
1232             * @return the announcements delivery remote service
1233             */
1234            public com.liferay.announcements.kernel.service.AnnouncementsDeliveryService getAnnouncementsDeliveryService() {
1235                    return announcementsDeliveryService;
1236            }
1237    
1238            /**
1239             * Sets the announcements delivery remote service.
1240             *
1241             * @param announcementsDeliveryService the announcements delivery remote service
1242             */
1243            public void setAnnouncementsDeliveryService(
1244                    com.liferay.announcements.kernel.service.AnnouncementsDeliveryService announcementsDeliveryService) {
1245                    this.announcementsDeliveryService = announcementsDeliveryService;
1246            }
1247    
1248            /**
1249             * Returns the announcements delivery persistence.
1250             *
1251             * @return the announcements delivery persistence
1252             */
1253            public AnnouncementsDeliveryPersistence getAnnouncementsDeliveryPersistence() {
1254                    return announcementsDeliveryPersistence;
1255            }
1256    
1257            /**
1258             * Sets the announcements delivery persistence.
1259             *
1260             * @param announcementsDeliveryPersistence the announcements delivery persistence
1261             */
1262            public void setAnnouncementsDeliveryPersistence(
1263                    AnnouncementsDeliveryPersistence announcementsDeliveryPersistence) {
1264                    this.announcementsDeliveryPersistence = announcementsDeliveryPersistence;
1265            }
1266    
1267            /**
1268             * Returns the asset entry local service.
1269             *
1270             * @return the asset entry local service
1271             */
1272            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1273                    return assetEntryLocalService;
1274            }
1275    
1276            /**
1277             * Sets the asset entry local service.
1278             *
1279             * @param assetEntryLocalService the asset entry local service
1280             */
1281            public void setAssetEntryLocalService(
1282                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1283                    this.assetEntryLocalService = assetEntryLocalService;
1284            }
1285    
1286            /**
1287             * Returns the asset entry remote service.
1288             *
1289             * @return the asset entry remote service
1290             */
1291            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1292                    return assetEntryService;
1293            }
1294    
1295            /**
1296             * Sets the asset entry remote service.
1297             *
1298             * @param assetEntryService the asset entry remote service
1299             */
1300            public void setAssetEntryService(
1301                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1302                    this.assetEntryService = assetEntryService;
1303            }
1304    
1305            /**
1306             * Returns the asset entry persistence.
1307             *
1308             * @return the asset entry persistence
1309             */
1310            public AssetEntryPersistence getAssetEntryPersistence() {
1311                    return assetEntryPersistence;
1312            }
1313    
1314            /**
1315             * Sets the asset entry persistence.
1316             *
1317             * @param assetEntryPersistence the asset entry persistence
1318             */
1319            public void setAssetEntryPersistence(
1320                    AssetEntryPersistence assetEntryPersistence) {
1321                    this.assetEntryPersistence = assetEntryPersistence;
1322            }
1323    
1324            /**
1325             * Returns the asset entry finder.
1326             *
1327             * @return the asset entry finder
1328             */
1329            public AssetEntryFinder getAssetEntryFinder() {
1330                    return assetEntryFinder;
1331            }
1332    
1333            /**
1334             * Sets the asset entry finder.
1335             *
1336             * @param assetEntryFinder the asset entry finder
1337             */
1338            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1339                    this.assetEntryFinder = assetEntryFinder;
1340            }
1341    
1342            /**
1343             * Returns the blogs stats user local service.
1344             *
1345             * @return the blogs stats user local service
1346             */
1347            public com.liferay.portlet.blogs.service.BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
1348                    return blogsStatsUserLocalService;
1349            }
1350    
1351            /**
1352             * Sets the blogs stats user local service.
1353             *
1354             * @param blogsStatsUserLocalService the blogs stats user local service
1355             */
1356            public void setBlogsStatsUserLocalService(
1357                    com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService) {
1358                    this.blogsStatsUserLocalService = blogsStatsUserLocalService;
1359            }
1360    
1361            /**
1362             * Returns the blogs stats user persistence.
1363             *
1364             * @return the blogs stats user persistence
1365             */
1366            public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
1367                    return blogsStatsUserPersistence;
1368            }
1369    
1370            /**
1371             * Sets the blogs stats user persistence.
1372             *
1373             * @param blogsStatsUserPersistence the blogs stats user persistence
1374             */
1375            public void setBlogsStatsUserPersistence(
1376                    BlogsStatsUserPersistence blogsStatsUserPersistence) {
1377                    this.blogsStatsUserPersistence = blogsStatsUserPersistence;
1378            }
1379    
1380            /**
1381             * Returns the blogs stats user finder.
1382             *
1383             * @return the blogs stats user finder
1384             */
1385            public BlogsStatsUserFinder getBlogsStatsUserFinder() {
1386                    return blogsStatsUserFinder;
1387            }
1388    
1389            /**
1390             * Sets the blogs stats user finder.
1391             *
1392             * @param blogsStatsUserFinder the blogs stats user finder
1393             */
1394            public void setBlogsStatsUserFinder(
1395                    BlogsStatsUserFinder blogsStatsUserFinder) {
1396                    this.blogsStatsUserFinder = blogsStatsUserFinder;
1397            }
1398    
1399            /**
1400             * Returns the document library file entry local service.
1401             *
1402             * @return the document library file entry local service
1403             */
1404            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
1405                    return dlFileEntryLocalService;
1406            }
1407    
1408            /**
1409             * Sets the document library file entry local service.
1410             *
1411             * @param dlFileEntryLocalService the document library file entry local service
1412             */
1413            public void setDLFileEntryLocalService(
1414                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
1415                    this.dlFileEntryLocalService = dlFileEntryLocalService;
1416            }
1417    
1418            /**
1419             * Returns the document library file entry remote service.
1420             *
1421             * @return the document library file entry remote service
1422             */
1423            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
1424                    return dlFileEntryService;
1425            }
1426    
1427            /**
1428             * Sets the document library file entry remote service.
1429             *
1430             * @param dlFileEntryService the document library file entry remote service
1431             */
1432            public void setDLFileEntryService(
1433                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
1434                    this.dlFileEntryService = dlFileEntryService;
1435            }
1436    
1437            /**
1438             * Returns the document library file entry persistence.
1439             *
1440             * @return the document library file entry persistence
1441             */
1442            public DLFileEntryPersistence getDLFileEntryPersistence() {
1443                    return dlFileEntryPersistence;
1444            }
1445    
1446            /**
1447             * Sets the document library file entry persistence.
1448             *
1449             * @param dlFileEntryPersistence the document library file entry persistence
1450             */
1451            public void setDLFileEntryPersistence(
1452                    DLFileEntryPersistence dlFileEntryPersistence) {
1453                    this.dlFileEntryPersistence = dlFileEntryPersistence;
1454            }
1455    
1456            /**
1457             * Returns the document library file entry finder.
1458             *
1459             * @return the document library file entry finder
1460             */
1461            public DLFileEntryFinder getDLFileEntryFinder() {
1462                    return dlFileEntryFinder;
1463            }
1464    
1465            /**
1466             * Sets the document library file entry finder.
1467             *
1468             * @param dlFileEntryFinder the document library file entry finder
1469             */
1470            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
1471                    this.dlFileEntryFinder = dlFileEntryFinder;
1472            }
1473    
1474            /**
1475             * Returns the document library file rank local service.
1476             *
1477             * @return the document library file rank local service
1478             */
1479            public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
1480                    return dlFileRankLocalService;
1481            }
1482    
1483            /**
1484             * Sets the document library file rank local service.
1485             *
1486             * @param dlFileRankLocalService the document library file rank local service
1487             */
1488            public void setDLFileRankLocalService(
1489                    com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
1490                    this.dlFileRankLocalService = dlFileRankLocalService;
1491            }
1492    
1493            /**
1494             * Returns the document library file rank persistence.
1495             *
1496             * @return the document library file rank persistence
1497             */
1498            public DLFileRankPersistence getDLFileRankPersistence() {
1499                    return dlFileRankPersistence;
1500            }
1501    
1502            /**
1503             * Sets the document library file rank persistence.
1504             *
1505             * @param dlFileRankPersistence the document library file rank persistence
1506             */
1507            public void setDLFileRankPersistence(
1508                    DLFileRankPersistence dlFileRankPersistence) {
1509                    this.dlFileRankPersistence = dlFileRankPersistence;
1510            }
1511    
1512            /**
1513             * Returns the document library file rank finder.
1514             *
1515             * @return the document library file rank finder
1516             */
1517            public DLFileRankFinder getDLFileRankFinder() {
1518                    return dlFileRankFinder;
1519            }
1520    
1521            /**
1522             * Sets the document library file rank finder.
1523             *
1524             * @param dlFileRankFinder the document library file rank finder
1525             */
1526            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
1527                    this.dlFileRankFinder = dlFileRankFinder;
1528            }
1529    
1530            /**
1531             * Returns the expando row local service.
1532             *
1533             * @return the expando row local service
1534             */
1535            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1536                    return expandoRowLocalService;
1537            }
1538    
1539            /**
1540             * Sets the expando row local service.
1541             *
1542             * @param expandoRowLocalService the expando row local service
1543             */
1544            public void setExpandoRowLocalService(
1545                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1546                    this.expandoRowLocalService = expandoRowLocalService;
1547            }
1548    
1549            /**
1550             * Returns the expando row persistence.
1551             *
1552             * @return the expando row persistence
1553             */
1554            public ExpandoRowPersistence getExpandoRowPersistence() {
1555                    return expandoRowPersistence;
1556            }
1557    
1558            /**
1559             * Sets the expando row persistence.
1560             *
1561             * @param expandoRowPersistence the expando row persistence
1562             */
1563            public void setExpandoRowPersistence(
1564                    ExpandoRowPersistence expandoRowPersistence) {
1565                    this.expandoRowPersistence = expandoRowPersistence;
1566            }
1567    
1568            /**
1569             * Returns the message boards ban local service.
1570             *
1571             * @return the message boards ban local service
1572             */
1573            public com.liferay.portlet.messageboards.service.MBBanLocalService getMBBanLocalService() {
1574                    return mbBanLocalService;
1575            }
1576    
1577            /**
1578             * Sets the message boards ban local service.
1579             *
1580             * @param mbBanLocalService the message boards ban local service
1581             */
1582            public void setMBBanLocalService(
1583                    com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService) {
1584                    this.mbBanLocalService = mbBanLocalService;
1585            }
1586    
1587            /**
1588             * Returns the message boards ban remote service.
1589             *
1590             * @return the message boards ban remote service
1591             */
1592            public com.liferay.portlet.messageboards.service.MBBanService getMBBanService() {
1593                    return mbBanService;
1594            }
1595    
1596            /**
1597             * Sets the message boards ban remote service.
1598             *
1599             * @param mbBanService the message boards ban remote service
1600             */
1601            public void setMBBanService(
1602                    com.liferay.portlet.messageboards.service.MBBanService mbBanService) {
1603                    this.mbBanService = mbBanService;
1604            }
1605    
1606            /**
1607             * Returns the message boards ban persistence.
1608             *
1609             * @return the message boards ban persistence
1610             */
1611            public MBBanPersistence getMBBanPersistence() {
1612                    return mbBanPersistence;
1613            }
1614    
1615            /**
1616             * Sets the message boards ban persistence.
1617             *
1618             * @param mbBanPersistence the message boards ban persistence
1619             */
1620            public void setMBBanPersistence(MBBanPersistence mbBanPersistence) {
1621                    this.mbBanPersistence = mbBanPersistence;
1622            }
1623    
1624            /**
1625             * Returns the message-boards message local service.
1626             *
1627             * @return the message-boards message local service
1628             */
1629            public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
1630                    return mbMessageLocalService;
1631            }
1632    
1633            /**
1634             * Sets the message-boards message local service.
1635             *
1636             * @param mbMessageLocalService the message-boards message local service
1637             */
1638            public void setMBMessageLocalService(
1639                    com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
1640                    this.mbMessageLocalService = mbMessageLocalService;
1641            }
1642    
1643            /**
1644             * Returns the message-boards message remote service.
1645             *
1646             * @return the message-boards message remote service
1647             */
1648            public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
1649                    return mbMessageService;
1650            }
1651    
1652            /**
1653             * Sets the message-boards message remote service.
1654             *
1655             * @param mbMessageService the message-boards message remote service
1656             */
1657            public void setMBMessageService(
1658                    com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
1659                    this.mbMessageService = mbMessageService;
1660            }
1661    
1662            /**
1663             * Returns the message-boards message persistence.
1664             *
1665             * @return the message-boards message persistence
1666             */
1667            public MBMessagePersistence getMBMessagePersistence() {
1668                    return mbMessagePersistence;
1669            }
1670    
1671            /**
1672             * Sets the message-boards message persistence.
1673             *
1674             * @param mbMessagePersistence the message-boards message persistence
1675             */
1676            public void setMBMessagePersistence(
1677                    MBMessagePersistence mbMessagePersistence) {
1678                    this.mbMessagePersistence = mbMessagePersistence;
1679            }
1680    
1681            /**
1682             * Returns the message-boards message finder.
1683             *
1684             * @return the message-boards message finder
1685             */
1686            public MBMessageFinder getMBMessageFinder() {
1687                    return mbMessageFinder;
1688            }
1689    
1690            /**
1691             * Sets the message-boards message finder.
1692             *
1693             * @param mbMessageFinder the message-boards message finder
1694             */
1695            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1696                    this.mbMessageFinder = mbMessageFinder;
1697            }
1698    
1699            /**
1700             * Returns the message boards stats user local service.
1701             *
1702             * @return the message boards stats user local service
1703             */
1704            public com.liferay.portlet.messageboards.service.MBStatsUserLocalService getMBStatsUserLocalService() {
1705                    return mbStatsUserLocalService;
1706            }
1707    
1708            /**
1709             * Sets the message boards stats user local service.
1710             *
1711             * @param mbStatsUserLocalService the message boards stats user local service
1712             */
1713            public void setMBStatsUserLocalService(
1714                    com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService) {
1715                    this.mbStatsUserLocalService = mbStatsUserLocalService;
1716            }
1717    
1718            /**
1719             * Returns the message boards stats user persistence.
1720             *
1721             * @return the message boards stats user persistence
1722             */
1723            public MBStatsUserPersistence getMBStatsUserPersistence() {
1724                    return mbStatsUserPersistence;
1725            }
1726    
1727            /**
1728             * Sets the message boards stats user persistence.
1729             *
1730             * @param mbStatsUserPersistence the message boards stats user persistence
1731             */
1732            public void setMBStatsUserPersistence(
1733                    MBStatsUserPersistence mbStatsUserPersistence) {
1734                    this.mbStatsUserPersistence = mbStatsUserPersistence;
1735            }
1736    
1737            /**
1738             * Returns the message boards thread flag local service.
1739             *
1740             * @return the message boards thread flag local service
1741             */
1742            public com.liferay.portlet.messageboards.service.MBThreadFlagLocalService getMBThreadFlagLocalService() {
1743                    return mbThreadFlagLocalService;
1744            }
1745    
1746            /**
1747             * Sets the message boards thread flag local service.
1748             *
1749             * @param mbThreadFlagLocalService the message boards thread flag local service
1750             */
1751            public void setMBThreadFlagLocalService(
1752                    com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService) {
1753                    this.mbThreadFlagLocalService = mbThreadFlagLocalService;
1754            }
1755    
1756            /**
1757             * Returns the message boards thread flag persistence.
1758             *
1759             * @return the message boards thread flag persistence
1760             */
1761            public MBThreadFlagPersistence getMBThreadFlagPersistence() {
1762                    return mbThreadFlagPersistence;
1763            }
1764    
1765            /**
1766             * Sets the message boards thread flag persistence.
1767             *
1768             * @param mbThreadFlagPersistence the message boards thread flag persistence
1769             */
1770            public void setMBThreadFlagPersistence(
1771                    MBThreadFlagPersistence mbThreadFlagPersistence) {
1772                    this.mbThreadFlagPersistence = mbThreadFlagPersistence;
1773            }
1774    
1775            /**
1776             * Returns the ratings stats local service.
1777             *
1778             * @return the ratings stats local service
1779             */
1780            public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
1781                    return ratingsStatsLocalService;
1782            }
1783    
1784            /**
1785             * Sets the ratings stats local service.
1786             *
1787             * @param ratingsStatsLocalService the ratings stats local service
1788             */
1789            public void setRatingsStatsLocalService(
1790                    com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
1791                    this.ratingsStatsLocalService = ratingsStatsLocalService;
1792            }
1793    
1794            /**
1795             * Returns the ratings stats persistence.
1796             *
1797             * @return the ratings stats persistence
1798             */
1799            public RatingsStatsPersistence getRatingsStatsPersistence() {
1800                    return ratingsStatsPersistence;
1801            }
1802    
1803            /**
1804             * Sets the ratings stats persistence.
1805             *
1806             * @param ratingsStatsPersistence the ratings stats persistence
1807             */
1808            public void setRatingsStatsPersistence(
1809                    RatingsStatsPersistence ratingsStatsPersistence) {
1810                    this.ratingsStatsPersistence = ratingsStatsPersistence;
1811            }
1812    
1813            /**
1814             * Returns the ratings stats finder.
1815             *
1816             * @return the ratings stats finder
1817             */
1818            public RatingsStatsFinder getRatingsStatsFinder() {
1819                    return ratingsStatsFinder;
1820            }
1821    
1822            /**
1823             * Sets the ratings stats finder.
1824             *
1825             * @param ratingsStatsFinder the ratings stats finder
1826             */
1827            public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1828                    this.ratingsStatsFinder = ratingsStatsFinder;
1829            }
1830    
1831            /**
1832             * Returns the social activity local service.
1833             *
1834             * @return the social activity local service
1835             */
1836            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1837                    return socialActivityLocalService;
1838            }
1839    
1840            /**
1841             * Sets the social activity local service.
1842             *
1843             * @param socialActivityLocalService the social activity local service
1844             */
1845            public void setSocialActivityLocalService(
1846                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1847                    this.socialActivityLocalService = socialActivityLocalService;
1848            }
1849    
1850            /**
1851             * Returns the social activity remote service.
1852             *
1853             * @return the social activity remote service
1854             */
1855            public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1856                    return socialActivityService;
1857            }
1858    
1859            /**
1860             * Sets the social activity remote service.
1861             *
1862             * @param socialActivityService the social activity remote service
1863             */
1864            public void setSocialActivityService(
1865                    com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1866                    this.socialActivityService = socialActivityService;
1867            }
1868    
1869            /**
1870             * Returns the social activity persistence.
1871             *
1872             * @return the social activity persistence
1873             */
1874            public SocialActivityPersistence getSocialActivityPersistence() {
1875                    return socialActivityPersistence;
1876            }
1877    
1878            /**
1879             * Sets the social activity persistence.
1880             *
1881             * @param socialActivityPersistence the social activity persistence
1882             */
1883            public void setSocialActivityPersistence(
1884                    SocialActivityPersistence socialActivityPersistence) {
1885                    this.socialActivityPersistence = socialActivityPersistence;
1886            }
1887    
1888            /**
1889             * Returns the social activity finder.
1890             *
1891             * @return the social activity finder
1892             */
1893            public SocialActivityFinder getSocialActivityFinder() {
1894                    return socialActivityFinder;
1895            }
1896    
1897            /**
1898             * Sets the social activity finder.
1899             *
1900             * @param socialActivityFinder the social activity finder
1901             */
1902            public void setSocialActivityFinder(
1903                    SocialActivityFinder socialActivityFinder) {
1904                    this.socialActivityFinder = socialActivityFinder;
1905            }
1906    
1907            /**
1908             * Returns the social relation local service.
1909             *
1910             * @return the social relation local service
1911             */
1912            public com.liferay.portlet.social.service.SocialRelationLocalService getSocialRelationLocalService() {
1913                    return socialRelationLocalService;
1914            }
1915    
1916            /**
1917             * Sets the social relation local service.
1918             *
1919             * @param socialRelationLocalService the social relation local service
1920             */
1921            public void setSocialRelationLocalService(
1922                    com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService) {
1923                    this.socialRelationLocalService = socialRelationLocalService;
1924            }
1925    
1926            /**
1927             * Returns the social relation persistence.
1928             *
1929             * @return the social relation persistence
1930             */
1931            public SocialRelationPersistence getSocialRelationPersistence() {
1932                    return socialRelationPersistence;
1933            }
1934    
1935            /**
1936             * Sets the social relation persistence.
1937             *
1938             * @param socialRelationPersistence the social relation persistence
1939             */
1940            public void setSocialRelationPersistence(
1941                    SocialRelationPersistence socialRelationPersistence) {
1942                    this.socialRelationPersistence = socialRelationPersistence;
1943            }
1944    
1945            /**
1946             * Returns the social request local service.
1947             *
1948             * @return the social request local service
1949             */
1950            public com.liferay.portlet.social.service.SocialRequestLocalService getSocialRequestLocalService() {
1951                    return socialRequestLocalService;
1952            }
1953    
1954            /**
1955             * Sets the social request local service.
1956             *
1957             * @param socialRequestLocalService the social request local service
1958             */
1959            public void setSocialRequestLocalService(
1960                    com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService) {
1961                    this.socialRequestLocalService = socialRequestLocalService;
1962            }
1963    
1964            /**
1965             * Returns the social request remote service.
1966             *
1967             * @return the social request remote service
1968             */
1969            public com.liferay.portlet.social.service.SocialRequestService getSocialRequestService() {
1970                    return socialRequestService;
1971            }
1972    
1973            /**
1974             * Sets the social request remote service.
1975             *
1976             * @param socialRequestService the social request remote service
1977             */
1978            public void setSocialRequestService(
1979                    com.liferay.portlet.social.service.SocialRequestService socialRequestService) {
1980                    this.socialRequestService = socialRequestService;
1981            }
1982    
1983            /**
1984             * Returns the social request persistence.
1985             *
1986             * @return the social request persistence
1987             */
1988            public SocialRequestPersistence getSocialRequestPersistence() {
1989                    return socialRequestPersistence;
1990            }
1991    
1992            /**
1993             * Sets the social request persistence.
1994             *
1995             * @param socialRequestPersistence the social request persistence
1996             */
1997            public void setSocialRequestPersistence(
1998                    SocialRequestPersistence socialRequestPersistence) {
1999                    this.socialRequestPersistence = socialRequestPersistence;
2000            }
2001    
2002            /**
2003             * Returns the user group local service.
2004             *
2005             * @return the user group local service
2006             */
2007            public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
2008                    return userGroupLocalService;
2009            }
2010    
2011            /**
2012             * Sets the user group local service.
2013             *
2014             * @param userGroupLocalService the user group local service
2015             */
2016            public void setUserGroupLocalService(
2017                    com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
2018                    this.userGroupLocalService = userGroupLocalService;
2019            }
2020    
2021            /**
2022             * Returns the user group remote service.
2023             *
2024             * @return the user group remote service
2025             */
2026            public com.liferay.portal.service.UserGroupService getUserGroupService() {
2027                    return userGroupService;
2028            }
2029    
2030            /**
2031             * Sets the user group remote service.
2032             *
2033             * @param userGroupService the user group remote service
2034             */
2035            public void setUserGroupService(
2036                    com.liferay.portal.service.UserGroupService userGroupService) {
2037                    this.userGroupService = userGroupService;
2038            }
2039    
2040            /**
2041             * Returns the user group persistence.
2042             *
2043             * @return the user group persistence
2044             */
2045            public UserGroupPersistence getUserGroupPersistence() {
2046                    return userGroupPersistence;
2047            }
2048    
2049            /**
2050             * Sets the user group persistence.
2051             *
2052             * @param userGroupPersistence the user group persistence
2053             */
2054            public void setUserGroupPersistence(
2055                    UserGroupPersistence userGroupPersistence) {
2056                    this.userGroupPersistence = userGroupPersistence;
2057            }
2058    
2059            /**
2060             * Returns the user group finder.
2061             *
2062             * @return the user group finder
2063             */
2064            public UserGroupFinder getUserGroupFinder() {
2065                    return userGroupFinder;
2066            }
2067    
2068            /**
2069             * Sets the user group finder.
2070             *
2071             * @param userGroupFinder the user group finder
2072             */
2073            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
2074                    this.userGroupFinder = userGroupFinder;
2075            }
2076    
2077            /**
2078             * Returns the user group role local service.
2079             *
2080             * @return the user group role local service
2081             */
2082            public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
2083                    return userGroupRoleLocalService;
2084            }
2085    
2086            /**
2087             * Sets the user group role local service.
2088             *
2089             * @param userGroupRoleLocalService the user group role local service
2090             */
2091            public void setUserGroupRoleLocalService(
2092                    com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
2093                    this.userGroupRoleLocalService = userGroupRoleLocalService;
2094            }
2095    
2096            /**
2097             * Returns the user group role remote service.
2098             *
2099             * @return the user group role remote service
2100             */
2101            public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
2102                    return userGroupRoleService;
2103            }
2104    
2105            /**
2106             * Sets the user group role remote service.
2107             *
2108             * @param userGroupRoleService the user group role remote service
2109             */
2110            public void setUserGroupRoleService(
2111                    com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
2112                    this.userGroupRoleService = userGroupRoleService;
2113            }
2114    
2115            /**
2116             * Returns the user group role persistence.
2117             *
2118             * @return the user group role persistence
2119             */
2120            public UserGroupRolePersistence getUserGroupRolePersistence() {
2121                    return userGroupRolePersistence;
2122            }
2123    
2124            /**
2125             * Sets the user group role persistence.
2126             *
2127             * @param userGroupRolePersistence the user group role persistence
2128             */
2129            public void setUserGroupRolePersistence(
2130                    UserGroupRolePersistence userGroupRolePersistence) {
2131                    this.userGroupRolePersistence = userGroupRolePersistence;
2132            }
2133    
2134            /**
2135             * Returns the user group role finder.
2136             *
2137             * @return the user group role finder
2138             */
2139            public UserGroupRoleFinder getUserGroupRoleFinder() {
2140                    return userGroupRoleFinder;
2141            }
2142    
2143            /**
2144             * Sets the user group role finder.
2145             *
2146             * @param userGroupRoleFinder the user group role finder
2147             */
2148            public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
2149                    this.userGroupRoleFinder = userGroupRoleFinder;
2150            }
2151    
2152            /**
2153             * Returns the user ID mapper local service.
2154             *
2155             * @return the user ID mapper local service
2156             */
2157            public com.liferay.portal.service.UserIdMapperLocalService getUserIdMapperLocalService() {
2158                    return userIdMapperLocalService;
2159            }
2160    
2161            /**
2162             * Sets the user ID mapper local service.
2163             *
2164             * @param userIdMapperLocalService the user ID mapper local service
2165             */
2166            public void setUserIdMapperLocalService(
2167                    com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService) {
2168                    this.userIdMapperLocalService = userIdMapperLocalService;
2169            }
2170    
2171            /**
2172             * Returns the user ID mapper persistence.
2173             *
2174             * @return the user ID mapper persistence
2175             */
2176            public UserIdMapperPersistence getUserIdMapperPersistence() {
2177                    return userIdMapperPersistence;
2178            }
2179    
2180            /**
2181             * Sets the user ID mapper persistence.
2182             *
2183             * @param userIdMapperPersistence the user ID mapper persistence
2184             */
2185            public void setUserIdMapperPersistence(
2186                    UserIdMapperPersistence userIdMapperPersistence) {
2187                    this.userIdMapperPersistence = userIdMapperPersistence;
2188            }
2189    
2190            /**
2191             * Returns the workflow instance link local service.
2192             *
2193             * @return the workflow instance link local service
2194             */
2195            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
2196                    return workflowInstanceLinkLocalService;
2197            }
2198    
2199            /**
2200             * Sets the workflow instance link local service.
2201             *
2202             * @param workflowInstanceLinkLocalService the workflow instance link local service
2203             */
2204            public void setWorkflowInstanceLinkLocalService(
2205                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
2206                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
2207            }
2208    
2209            /**
2210             * Returns the workflow instance link persistence.
2211             *
2212             * @return the workflow instance link persistence
2213             */
2214            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
2215                    return workflowInstanceLinkPersistence;
2216            }
2217    
2218            /**
2219             * Sets the workflow instance link persistence.
2220             *
2221             * @param workflowInstanceLinkPersistence the workflow instance link persistence
2222             */
2223            public void setWorkflowInstanceLinkPersistence(
2224                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
2225                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
2226            }
2227    
2228            public void afterPropertiesSet() {
2229            }
2230    
2231            public void destroy() {
2232            }
2233    
2234            /**
2235             * Returns the OSGi service identifier.
2236             *
2237             * @return the OSGi service identifier
2238             */
2239            @Override
2240            public String getOSGiServiceIdentifier() {
2241                    return UserService.class.getName();
2242            }
2243    
2244            protected Class<?> getModelClass() {
2245                    return User.class;
2246            }
2247    
2248            protected String getModelClassName() {
2249                    return User.class.getName();
2250            }
2251    
2252            /**
2253             * Performs a SQL query.
2254             *
2255             * @param sql the sql query
2256             */
2257            protected void runSQL(String sql) {
2258                    try {
2259                            DataSource dataSource = userPersistence.getDataSource();
2260    
2261                            DB db = DBManagerUtil.getDB();
2262    
2263                            sql = db.buildSQL(sql);
2264                            sql = PortalUtil.transformSQL(sql);
2265    
2266                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
2267                                            sql, new int[0]);
2268    
2269                            sqlUpdate.update();
2270                    }
2271                    catch (Exception e) {
2272                            throw new SystemException(e);
2273                    }
2274            }
2275    
2276            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
2277            protected com.liferay.portal.service.UserLocalService userLocalService;
2278            @BeanReference(type = com.liferay.portal.service.UserService.class)
2279            protected UserService userService;
2280            @BeanReference(type = UserPersistence.class)
2281            protected UserPersistence userPersistence;
2282            @BeanReference(type = UserFinder.class)
2283            protected UserFinder userFinder;
2284            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
2285            protected com.liferay.counter.service.CounterLocalService counterLocalService;
2286            @BeanReference(type = com.liferay.mail.service.MailService.class)
2287            protected com.liferay.mail.service.MailService mailService;
2288            @BeanReference(type = com.liferay.portal.service.BrowserTrackerLocalService.class)
2289            protected com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService;
2290            @BeanReference(type = BrowserTrackerPersistence.class)
2291            protected BrowserTrackerPersistence browserTrackerPersistence;
2292            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
2293            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
2294            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
2295            protected com.liferay.portal.service.CompanyService companyService;
2296            @BeanReference(type = CompanyPersistence.class)
2297            protected CompanyPersistence companyPersistence;
2298            @BeanReference(type = com.liferay.portal.service.ContactLocalService.class)
2299            protected com.liferay.portal.service.ContactLocalService contactLocalService;
2300            @BeanReference(type = com.liferay.portal.service.ContactService.class)
2301            protected com.liferay.portal.service.ContactService contactService;
2302            @BeanReference(type = ContactPersistence.class)
2303            protected ContactPersistence contactPersistence;
2304            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
2305            protected com.liferay.portal.service.GroupLocalService groupLocalService;
2306            @BeanReference(type = com.liferay.portal.service.GroupService.class)
2307            protected com.liferay.portal.service.GroupService groupService;
2308            @BeanReference(type = GroupPersistence.class)
2309            protected GroupPersistence groupPersistence;
2310            @BeanReference(type = GroupFinder.class)
2311            protected GroupFinder groupFinder;
2312            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
2313            protected com.liferay.portal.service.ImageLocalService imageLocalService;
2314            @BeanReference(type = com.liferay.portal.service.ImageService.class)
2315            protected com.liferay.portal.service.ImageService imageService;
2316            @BeanReference(type = ImagePersistence.class)
2317            protected ImagePersistence imagePersistence;
2318            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
2319            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
2320            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
2321            protected com.liferay.portal.service.LayoutService layoutService;
2322            @BeanReference(type = LayoutPersistence.class)
2323            protected LayoutPersistence layoutPersistence;
2324            @BeanReference(type = LayoutFinder.class)
2325            protected LayoutFinder layoutFinder;
2326            @BeanReference(type = com.liferay.portal.service.MembershipRequestLocalService.class)
2327            protected com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService;
2328            @BeanReference(type = com.liferay.portal.service.MembershipRequestService.class)
2329            protected com.liferay.portal.service.MembershipRequestService membershipRequestService;
2330            @BeanReference(type = MembershipRequestPersistence.class)
2331            protected MembershipRequestPersistence membershipRequestPersistence;
2332            @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
2333            protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
2334            @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
2335            protected com.liferay.portal.service.OrganizationService organizationService;
2336            @BeanReference(type = OrganizationPersistence.class)
2337            protected OrganizationPersistence organizationPersistence;
2338            @BeanReference(type = OrganizationFinder.class)
2339            protected OrganizationFinder organizationFinder;
2340            @BeanReference(type = com.liferay.portal.service.PasswordPolicyLocalService.class)
2341            protected com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService;
2342            @BeanReference(type = com.liferay.portal.service.PasswordPolicyService.class)
2343            protected com.liferay.portal.service.PasswordPolicyService passwordPolicyService;
2344            @BeanReference(type = PasswordPolicyPersistence.class)
2345            protected PasswordPolicyPersistence passwordPolicyPersistence;
2346            @BeanReference(type = PasswordPolicyFinder.class)
2347            protected PasswordPolicyFinder passwordPolicyFinder;
2348            @BeanReference(type = com.liferay.portal.service.PasswordPolicyRelLocalService.class)
2349            protected com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService;
2350            @BeanReference(type = PasswordPolicyRelPersistence.class)
2351            protected PasswordPolicyRelPersistence passwordPolicyRelPersistence;
2352            @BeanReference(type = com.liferay.portal.service.PasswordTrackerLocalService.class)
2353            protected com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService;
2354            @BeanReference(type = PasswordTrackerPersistence.class)
2355            protected PasswordTrackerPersistence passwordTrackerPersistence;
2356            @BeanReference(type = com.liferay.portal.service.RecentLayoutBranchLocalService.class)
2357            protected com.liferay.portal.service.RecentLayoutBranchLocalService recentLayoutBranchLocalService;
2358            @BeanReference(type = RecentLayoutBranchPersistence.class)
2359            protected RecentLayoutBranchPersistence recentLayoutBranchPersistence;
2360            @BeanReference(type = com.liferay.portal.service.RecentLayoutRevisionLocalService.class)
2361            protected com.liferay.portal.service.RecentLayoutRevisionLocalService recentLayoutRevisionLocalService;
2362            @BeanReference(type = RecentLayoutRevisionPersistence.class)
2363            protected RecentLayoutRevisionPersistence recentLayoutRevisionPersistence;
2364            @BeanReference(type = com.liferay.portal.service.RecentLayoutSetBranchLocalService.class)
2365            protected com.liferay.portal.service.RecentLayoutSetBranchLocalService recentLayoutSetBranchLocalService;
2366            @BeanReference(type = RecentLayoutSetBranchPersistence.class)
2367            protected RecentLayoutSetBranchPersistence recentLayoutSetBranchPersistence;
2368            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
2369            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
2370            @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
2371            protected com.liferay.portal.service.RoleLocalService roleLocalService;
2372            @BeanReference(type = com.liferay.portal.service.RoleService.class)
2373            protected com.liferay.portal.service.RoleService roleService;
2374            @BeanReference(type = RolePersistence.class)
2375            protected RolePersistence rolePersistence;
2376            @BeanReference(type = RoleFinder.class)
2377            protected RoleFinder roleFinder;
2378            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
2379            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
2380            @BeanReference(type = SubscriptionPersistence.class)
2381            protected SubscriptionPersistence subscriptionPersistence;
2382            @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
2383            protected com.liferay.portal.service.TeamLocalService teamLocalService;
2384            @BeanReference(type = com.liferay.portal.service.TeamService.class)
2385            protected com.liferay.portal.service.TeamService teamService;
2386            @BeanReference(type = TeamPersistence.class)
2387            protected TeamPersistence teamPersistence;
2388            @BeanReference(type = TeamFinder.class)
2389            protected TeamFinder teamFinder;
2390            @BeanReference(type = com.liferay.portal.service.TicketLocalService.class)
2391            protected com.liferay.portal.service.TicketLocalService ticketLocalService;
2392            @BeanReference(type = TicketPersistence.class)
2393            protected TicketPersistence ticketPersistence;
2394            @BeanReference(type = com.liferay.announcements.kernel.service.AnnouncementsDeliveryLocalService.class)
2395            protected com.liferay.announcements.kernel.service.AnnouncementsDeliveryLocalService announcementsDeliveryLocalService;
2396            @BeanReference(type = com.liferay.announcements.kernel.service.AnnouncementsDeliveryService.class)
2397            protected com.liferay.announcements.kernel.service.AnnouncementsDeliveryService announcementsDeliveryService;
2398            @BeanReference(type = AnnouncementsDeliveryPersistence.class)
2399            protected AnnouncementsDeliveryPersistence announcementsDeliveryPersistence;
2400            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
2401            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
2402            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
2403            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
2404            @BeanReference(type = AssetEntryPersistence.class)
2405            protected AssetEntryPersistence assetEntryPersistence;
2406            @BeanReference(type = AssetEntryFinder.class)
2407            protected AssetEntryFinder assetEntryFinder;
2408            @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
2409            protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
2410            @BeanReference(type = BlogsStatsUserPersistence.class)
2411            protected BlogsStatsUserPersistence blogsStatsUserPersistence;
2412            @BeanReference(type = BlogsStatsUserFinder.class)
2413            protected BlogsStatsUserFinder blogsStatsUserFinder;
2414            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
2415            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
2416            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
2417            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
2418            @BeanReference(type = DLFileEntryPersistence.class)
2419            protected DLFileEntryPersistence dlFileEntryPersistence;
2420            @BeanReference(type = DLFileEntryFinder.class)
2421            protected DLFileEntryFinder dlFileEntryFinder;
2422            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
2423            protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
2424            @BeanReference(type = DLFileRankPersistence.class)
2425            protected DLFileRankPersistence dlFileRankPersistence;
2426            @BeanReference(type = DLFileRankFinder.class)
2427            protected DLFileRankFinder dlFileRankFinder;
2428            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
2429            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
2430            @BeanReference(type = ExpandoRowPersistence.class)
2431            protected ExpandoRowPersistence expandoRowPersistence;
2432            @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanLocalService.class)
2433            protected com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService;
2434            @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanService.class)
2435            protected com.liferay.portlet.messageboards.service.MBBanService mbBanService;
2436            @BeanReference(type = MBBanPersistence.class)
2437            protected MBBanPersistence mbBanPersistence;
2438            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
2439            protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
2440            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
2441            protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
2442            @BeanReference(type = MBMessagePersistence.class)
2443            protected MBMessagePersistence mbMessagePersistence;
2444            @BeanReference(type = MBMessageFinder.class)
2445            protected MBMessageFinder mbMessageFinder;
2446            @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
2447            protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
2448            @BeanReference(type = MBStatsUserPersistence.class)
2449            protected MBStatsUserPersistence mbStatsUserPersistence;
2450            @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
2451            protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
2452            @BeanReference(type = MBThreadFlagPersistence.class)
2453            protected MBThreadFlagPersistence mbThreadFlagPersistence;
2454            @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
2455            protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
2456            @BeanReference(type = RatingsStatsPersistence.class)
2457            protected RatingsStatsPersistence ratingsStatsPersistence;
2458            @BeanReference(type = RatingsStatsFinder.class)
2459            protected RatingsStatsFinder ratingsStatsFinder;
2460            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
2461            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
2462            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
2463            protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
2464            @BeanReference(type = SocialActivityPersistence.class)
2465            protected SocialActivityPersistence socialActivityPersistence;
2466            @BeanReference(type = SocialActivityFinder.class)
2467            protected SocialActivityFinder socialActivityFinder;
2468            @BeanReference(type = com.liferay.portlet.social.service.SocialRelationLocalService.class)
2469            protected com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService;
2470            @BeanReference(type = SocialRelationPersistence.class)
2471            protected SocialRelationPersistence socialRelationPersistence;
2472            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestLocalService.class)
2473            protected com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService;
2474            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestService.class)
2475            protected com.liferay.portlet.social.service.SocialRequestService socialRequestService;
2476            @BeanReference(type = SocialRequestPersistence.class)
2477            protected SocialRequestPersistence socialRequestPersistence;
2478            @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
2479            protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
2480            @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
2481            protected com.liferay.portal.service.UserGroupService userGroupService;
2482            @BeanReference(type = UserGroupPersistence.class)
2483            protected UserGroupPersistence userGroupPersistence;
2484            @BeanReference(type = UserGroupFinder.class)
2485            protected UserGroupFinder userGroupFinder;
2486            @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
2487            protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
2488            @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
2489            protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
2490            @BeanReference(type = UserGroupRolePersistence.class)
2491            protected UserGroupRolePersistence userGroupRolePersistence;
2492            @BeanReference(type = UserGroupRoleFinder.class)
2493            protected UserGroupRoleFinder userGroupRoleFinder;
2494            @BeanReference(type = com.liferay.portal.service.UserIdMapperLocalService.class)
2495            protected com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService;
2496            @BeanReference(type = UserIdMapperPersistence.class)
2497            protected UserIdMapperPersistence userIdMapperPersistence;
2498            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
2499            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
2500            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
2501            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
2502    }