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