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