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