001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service.base;
016    
017    import com.liferay.portal.kernel.bean.BeanReference;
018    import com.liferay.portal.kernel.bean.IdentifiableBean;
019    import com.liferay.portal.kernel.dao.db.DB;
020    import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023    import com.liferay.portal.kernel.exception.SystemException;
024    import com.liferay.portal.model.User;
025    import com.liferay.portal.service.BaseServiceImpl;
026    import com.liferay.portal.service.UserService;
027    import com.liferay.portal.service.persistence.BrowserTrackerPersistence;
028    import com.liferay.portal.service.persistence.CompanyPersistence;
029    import com.liferay.portal.service.persistence.ContactPersistence;
030    import com.liferay.portal.service.persistence.GroupFinder;
031    import com.liferay.portal.service.persistence.GroupPersistence;
032    import com.liferay.portal.service.persistence.ImagePersistence;
033    import com.liferay.portal.service.persistence.LayoutFinder;
034    import com.liferay.portal.service.persistence.LayoutPersistence;
035    import com.liferay.portal.service.persistence.MembershipRequestPersistence;
036    import com.liferay.portal.service.persistence.OrganizationFinder;
037    import com.liferay.portal.service.persistence.OrganizationPersistence;
038    import com.liferay.portal.service.persistence.PasswordPolicyFinder;
039    import com.liferay.portal.service.persistence.PasswordPolicyPersistence;
040    import com.liferay.portal.service.persistence.PasswordPolicyRelPersistence;
041    import com.liferay.portal.service.persistence.PasswordTrackerPersistence;
042    import com.liferay.portal.service.persistence.RoleFinder;
043    import com.liferay.portal.service.persistence.RolePersistence;
044    import com.liferay.portal.service.persistence.SubscriptionPersistence;
045    import com.liferay.portal.service.persistence.TeamFinder;
046    import com.liferay.portal.service.persistence.TeamPersistence;
047    import com.liferay.portal.service.persistence.TicketPersistence;
048    import com.liferay.portal.service.persistence.UserFinder;
049    import com.liferay.portal.service.persistence.UserGroupFinder;
050    import com.liferay.portal.service.persistence.UserGroupPersistence;
051    import com.liferay.portal.service.persistence.UserGroupRoleFinder;
052    import com.liferay.portal.service.persistence.UserGroupRolePersistence;
053    import com.liferay.portal.service.persistence.UserIdMapperPersistence;
054    import com.liferay.portal.service.persistence.UserPersistence;
055    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
056    import com.liferay.portal.util.PortalUtil;
057    
058    import com.liferay.portlet.announcements.service.persistence.AnnouncementsDeliveryPersistence;
059    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
060    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
061    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
062    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
063    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
064    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
065    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
066    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
067    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
068    import com.liferay.portlet.messageboards.service.persistence.MBBanPersistence;
069    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
070    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
071    import com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence;
072    import com.liferay.portlet.messageboards.service.persistence.MBThreadFlagPersistence;
073    import com.liferay.portlet.shopping.service.persistence.ShoppingCartPersistence;
074    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
075    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
076    import com.liferay.portlet.social.service.persistence.SocialRelationPersistence;
077    import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
078    
079    import javax.sql.DataSource;
080    
081    /**
082     * Provides the base implementation for the user remote service.
083     *
084     * <p>
085     * This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.portal.service.impl.UserServiceImpl}.
086     * </p>
087     *
088     * @author Brian Wing Shun Chan
089     * @see com.liferay.portal.service.impl.UserServiceImpl
090     * @see com.liferay.portal.service.UserServiceUtil
091     * @generated
092     */
093    public abstract class UserServiceBaseImpl extends BaseServiceImpl
094            implements UserService, IdentifiableBean {
095            /*
096             * NOTE FOR DEVELOPERS:
097             *
098             * Never modify or reference this class directly. Always use {@link com.liferay.portal.service.UserServiceUtil} to access the user remote service.
099             */
100    
101            /**
102             * Returns the user local service.
103             *
104             * @return the user local service
105             */
106            public com.liferay.portal.service.UserLocalService getUserLocalService() {
107                    return userLocalService;
108            }
109    
110            /**
111             * Sets the user local service.
112             *
113             * @param userLocalService the user local service
114             */
115            public void setUserLocalService(
116                    com.liferay.portal.service.UserLocalService userLocalService) {
117                    this.userLocalService = userLocalService;
118            }
119    
120            /**
121             * Returns the user remote service.
122             *
123             * @return the user remote service
124             */
125            public com.liferay.portal.service.UserService getUserService() {
126                    return userService;
127            }
128    
129            /**
130             * Sets the user remote service.
131             *
132             * @param userService the user remote service
133             */
134            public void setUserService(
135                    com.liferay.portal.service.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 shopping cart local service.
1659             *
1660             * @return the shopping cart local service
1661             */
1662            public com.liferay.portlet.shopping.service.ShoppingCartLocalService getShoppingCartLocalService() {
1663                    return shoppingCartLocalService;
1664            }
1665    
1666            /**
1667             * Sets the shopping cart local service.
1668             *
1669             * @param shoppingCartLocalService the shopping cart local service
1670             */
1671            public void setShoppingCartLocalService(
1672                    com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService) {
1673                    this.shoppingCartLocalService = shoppingCartLocalService;
1674            }
1675    
1676            /**
1677             * Returns the shopping cart persistence.
1678             *
1679             * @return the shopping cart persistence
1680             */
1681            public ShoppingCartPersistence getShoppingCartPersistence() {
1682                    return shoppingCartPersistence;
1683            }
1684    
1685            /**
1686             * Sets the shopping cart persistence.
1687             *
1688             * @param shoppingCartPersistence the shopping cart persistence
1689             */
1690            public void setShoppingCartPersistence(
1691                    ShoppingCartPersistence shoppingCartPersistence) {
1692                    this.shoppingCartPersistence = shoppingCartPersistence;
1693            }
1694    
1695            /**
1696             * Returns the social activity local service.
1697             *
1698             * @return the social activity local service
1699             */
1700            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1701                    return socialActivityLocalService;
1702            }
1703    
1704            /**
1705             * Sets the social activity local service.
1706             *
1707             * @param socialActivityLocalService the social activity local service
1708             */
1709            public void setSocialActivityLocalService(
1710                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1711                    this.socialActivityLocalService = socialActivityLocalService;
1712            }
1713    
1714            /**
1715             * Returns the social activity remote service.
1716             *
1717             * @return the social activity remote service
1718             */
1719            public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1720                    return socialActivityService;
1721            }
1722    
1723            /**
1724             * Sets the social activity remote service.
1725             *
1726             * @param socialActivityService the social activity remote service
1727             */
1728            public void setSocialActivityService(
1729                    com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1730                    this.socialActivityService = socialActivityService;
1731            }
1732    
1733            /**
1734             * Returns the social activity persistence.
1735             *
1736             * @return the social activity persistence
1737             */
1738            public SocialActivityPersistence getSocialActivityPersistence() {
1739                    return socialActivityPersistence;
1740            }
1741    
1742            /**
1743             * Sets the social activity persistence.
1744             *
1745             * @param socialActivityPersistence the social activity persistence
1746             */
1747            public void setSocialActivityPersistence(
1748                    SocialActivityPersistence socialActivityPersistence) {
1749                    this.socialActivityPersistence = socialActivityPersistence;
1750            }
1751    
1752            /**
1753             * Returns the social activity finder.
1754             *
1755             * @return the social activity finder
1756             */
1757            public SocialActivityFinder getSocialActivityFinder() {
1758                    return socialActivityFinder;
1759            }
1760    
1761            /**
1762             * Sets the social activity finder.
1763             *
1764             * @param socialActivityFinder the social activity finder
1765             */
1766            public void setSocialActivityFinder(
1767                    SocialActivityFinder socialActivityFinder) {
1768                    this.socialActivityFinder = socialActivityFinder;
1769            }
1770    
1771            /**
1772             * Returns the social relation local service.
1773             *
1774             * @return the social relation local service
1775             */
1776            public com.liferay.portlet.social.service.SocialRelationLocalService getSocialRelationLocalService() {
1777                    return socialRelationLocalService;
1778            }
1779    
1780            /**
1781             * Sets the social relation local service.
1782             *
1783             * @param socialRelationLocalService the social relation local service
1784             */
1785            public void setSocialRelationLocalService(
1786                    com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService) {
1787                    this.socialRelationLocalService = socialRelationLocalService;
1788            }
1789    
1790            /**
1791             * Returns the social relation persistence.
1792             *
1793             * @return the social relation persistence
1794             */
1795            public SocialRelationPersistence getSocialRelationPersistence() {
1796                    return socialRelationPersistence;
1797            }
1798    
1799            /**
1800             * Sets the social relation persistence.
1801             *
1802             * @param socialRelationPersistence the social relation persistence
1803             */
1804            public void setSocialRelationPersistence(
1805                    SocialRelationPersistence socialRelationPersistence) {
1806                    this.socialRelationPersistence = socialRelationPersistence;
1807            }
1808    
1809            /**
1810             * Returns the social request local service.
1811             *
1812             * @return the social request local service
1813             */
1814            public com.liferay.portlet.social.service.SocialRequestLocalService getSocialRequestLocalService() {
1815                    return socialRequestLocalService;
1816            }
1817    
1818            /**
1819             * Sets the social request local service.
1820             *
1821             * @param socialRequestLocalService the social request local service
1822             */
1823            public void setSocialRequestLocalService(
1824                    com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService) {
1825                    this.socialRequestLocalService = socialRequestLocalService;
1826            }
1827    
1828            /**
1829             * Returns the social request remote service.
1830             *
1831             * @return the social request remote service
1832             */
1833            public com.liferay.portlet.social.service.SocialRequestService getSocialRequestService() {
1834                    return socialRequestService;
1835            }
1836    
1837            /**
1838             * Sets the social request remote service.
1839             *
1840             * @param socialRequestService the social request remote service
1841             */
1842            public void setSocialRequestService(
1843                    com.liferay.portlet.social.service.SocialRequestService socialRequestService) {
1844                    this.socialRequestService = socialRequestService;
1845            }
1846    
1847            /**
1848             * Returns the social request persistence.
1849             *
1850             * @return the social request persistence
1851             */
1852            public SocialRequestPersistence getSocialRequestPersistence() {
1853                    return socialRequestPersistence;
1854            }
1855    
1856            /**
1857             * Sets the social request persistence.
1858             *
1859             * @param socialRequestPersistence the social request persistence
1860             */
1861            public void setSocialRequestPersistence(
1862                    SocialRequestPersistence socialRequestPersistence) {
1863                    this.socialRequestPersistence = socialRequestPersistence;
1864            }
1865    
1866            /**
1867             * Returns the user group local service.
1868             *
1869             * @return the user group local service
1870             */
1871            public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
1872                    return userGroupLocalService;
1873            }
1874    
1875            /**
1876             * Sets the user group local service.
1877             *
1878             * @param userGroupLocalService the user group local service
1879             */
1880            public void setUserGroupLocalService(
1881                    com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
1882                    this.userGroupLocalService = userGroupLocalService;
1883            }
1884    
1885            /**
1886             * Returns the user group remote service.
1887             *
1888             * @return the user group remote service
1889             */
1890            public com.liferay.portal.service.UserGroupService getUserGroupService() {
1891                    return userGroupService;
1892            }
1893    
1894            /**
1895             * Sets the user group remote service.
1896             *
1897             * @param userGroupService the user group remote service
1898             */
1899            public void setUserGroupService(
1900                    com.liferay.portal.service.UserGroupService userGroupService) {
1901                    this.userGroupService = userGroupService;
1902            }
1903    
1904            /**
1905             * Returns the user group persistence.
1906             *
1907             * @return the user group persistence
1908             */
1909            public UserGroupPersistence getUserGroupPersistence() {
1910                    return userGroupPersistence;
1911            }
1912    
1913            /**
1914             * Sets the user group persistence.
1915             *
1916             * @param userGroupPersistence the user group persistence
1917             */
1918            public void setUserGroupPersistence(
1919                    UserGroupPersistence userGroupPersistence) {
1920                    this.userGroupPersistence = userGroupPersistence;
1921            }
1922    
1923            /**
1924             * Returns the user group finder.
1925             *
1926             * @return the user group finder
1927             */
1928            public UserGroupFinder getUserGroupFinder() {
1929                    return userGroupFinder;
1930            }
1931    
1932            /**
1933             * Sets the user group finder.
1934             *
1935             * @param userGroupFinder the user group finder
1936             */
1937            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
1938                    this.userGroupFinder = userGroupFinder;
1939            }
1940    
1941            /**
1942             * Returns the user group role local service.
1943             *
1944             * @return the user group role local service
1945             */
1946            public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
1947                    return userGroupRoleLocalService;
1948            }
1949    
1950            /**
1951             * Sets the user group role local service.
1952             *
1953             * @param userGroupRoleLocalService the user group role local service
1954             */
1955            public void setUserGroupRoleLocalService(
1956                    com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
1957                    this.userGroupRoleLocalService = userGroupRoleLocalService;
1958            }
1959    
1960            /**
1961             * Returns the user group role remote service.
1962             *
1963             * @return the user group role remote service
1964             */
1965            public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
1966                    return userGroupRoleService;
1967            }
1968    
1969            /**
1970             * Sets the user group role remote service.
1971             *
1972             * @param userGroupRoleService the user group role remote service
1973             */
1974            public void setUserGroupRoleService(
1975                    com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
1976                    this.userGroupRoleService = userGroupRoleService;
1977            }
1978    
1979            /**
1980             * Returns the user group role persistence.
1981             *
1982             * @return the user group role persistence
1983             */
1984            public UserGroupRolePersistence getUserGroupRolePersistence() {
1985                    return userGroupRolePersistence;
1986            }
1987    
1988            /**
1989             * Sets the user group role persistence.
1990             *
1991             * @param userGroupRolePersistence the user group role persistence
1992             */
1993            public void setUserGroupRolePersistence(
1994                    UserGroupRolePersistence userGroupRolePersistence) {
1995                    this.userGroupRolePersistence = userGroupRolePersistence;
1996            }
1997    
1998            /**
1999             * Returns the user group role finder.
2000             *
2001             * @return the user group role finder
2002             */
2003            public UserGroupRoleFinder getUserGroupRoleFinder() {
2004                    return userGroupRoleFinder;
2005            }
2006    
2007            /**
2008             * Sets the user group role finder.
2009             *
2010             * @param userGroupRoleFinder the user group role finder
2011             */
2012            public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
2013                    this.userGroupRoleFinder = userGroupRoleFinder;
2014            }
2015    
2016            /**
2017             * Returns the user ID mapper local service.
2018             *
2019             * @return the user ID mapper local service
2020             */
2021            public com.liferay.portal.service.UserIdMapperLocalService getUserIdMapperLocalService() {
2022                    return userIdMapperLocalService;
2023            }
2024    
2025            /**
2026             * Sets the user ID mapper local service.
2027             *
2028             * @param userIdMapperLocalService the user ID mapper local service
2029             */
2030            public void setUserIdMapperLocalService(
2031                    com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService) {
2032                    this.userIdMapperLocalService = userIdMapperLocalService;
2033            }
2034    
2035            /**
2036             * Returns the user ID mapper persistence.
2037             *
2038             * @return the user ID mapper persistence
2039             */
2040            public UserIdMapperPersistence getUserIdMapperPersistence() {
2041                    return userIdMapperPersistence;
2042            }
2043    
2044            /**
2045             * Sets the user ID mapper persistence.
2046             *
2047             * @param userIdMapperPersistence the user ID mapper persistence
2048             */
2049            public void setUserIdMapperPersistence(
2050                    UserIdMapperPersistence userIdMapperPersistence) {
2051                    this.userIdMapperPersistence = userIdMapperPersistence;
2052            }
2053    
2054            /**
2055             * Returns the workflow instance link local service.
2056             *
2057             * @return the workflow instance link local service
2058             */
2059            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
2060                    return workflowInstanceLinkLocalService;
2061            }
2062    
2063            /**
2064             * Sets the workflow instance link local service.
2065             *
2066             * @param workflowInstanceLinkLocalService the workflow instance link local service
2067             */
2068            public void setWorkflowInstanceLinkLocalService(
2069                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
2070                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
2071            }
2072    
2073            /**
2074             * Returns the workflow instance link persistence.
2075             *
2076             * @return the workflow instance link persistence
2077             */
2078            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
2079                    return workflowInstanceLinkPersistence;
2080            }
2081    
2082            /**
2083             * Sets the workflow instance link persistence.
2084             *
2085             * @param workflowInstanceLinkPersistence the workflow instance link persistence
2086             */
2087            public void setWorkflowInstanceLinkPersistence(
2088                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
2089                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
2090            }
2091    
2092            public void afterPropertiesSet() {
2093            }
2094    
2095            public void destroy() {
2096            }
2097    
2098            /**
2099             * Returns the Spring bean ID for this bean.
2100             *
2101             * @return the Spring bean ID for this bean
2102             */
2103            @Override
2104            public String getBeanIdentifier() {
2105                    return _beanIdentifier;
2106            }
2107    
2108            /**
2109             * Sets the Spring bean ID for this bean.
2110             *
2111             * @param beanIdentifier the Spring bean ID for this bean
2112             */
2113            @Override
2114            public void setBeanIdentifier(String beanIdentifier) {
2115                    _beanIdentifier = beanIdentifier;
2116            }
2117    
2118            protected Class<?> getModelClass() {
2119                    return User.class;
2120            }
2121    
2122            protected String getModelClassName() {
2123                    return User.class.getName();
2124            }
2125    
2126            /**
2127             * Performs a SQL query.
2128             *
2129             * @param sql the sql query
2130             */
2131            protected void runSQL(String sql) {
2132                    try {
2133                            DataSource dataSource = userPersistence.getDataSource();
2134    
2135                            DB db = DBFactoryUtil.getDB();
2136    
2137                            sql = db.buildSQL(sql);
2138                            sql = PortalUtil.transformSQL(sql);
2139    
2140                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
2141                                            sql, new int[0]);
2142    
2143                            sqlUpdate.update();
2144                    }
2145                    catch (Exception e) {
2146                            throw new SystemException(e);
2147                    }
2148            }
2149    
2150            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
2151            protected com.liferay.portal.service.UserLocalService userLocalService;
2152            @BeanReference(type = com.liferay.portal.service.UserService.class)
2153            protected com.liferay.portal.service.UserService userService;
2154            @BeanReference(type = UserPersistence.class)
2155            protected UserPersistence userPersistence;
2156            @BeanReference(type = UserFinder.class)
2157            protected UserFinder userFinder;
2158            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
2159            protected com.liferay.counter.service.CounterLocalService counterLocalService;
2160            @BeanReference(type = com.liferay.mail.service.MailService.class)
2161            protected com.liferay.mail.service.MailService mailService;
2162            @BeanReference(type = com.liferay.portal.service.BrowserTrackerLocalService.class)
2163            protected com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService;
2164            @BeanReference(type = BrowserTrackerPersistence.class)
2165            protected BrowserTrackerPersistence browserTrackerPersistence;
2166            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
2167            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
2168            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
2169            protected com.liferay.portal.service.CompanyService companyService;
2170            @BeanReference(type = CompanyPersistence.class)
2171            protected CompanyPersistence companyPersistence;
2172            @BeanReference(type = com.liferay.portal.service.ContactLocalService.class)
2173            protected com.liferay.portal.service.ContactLocalService contactLocalService;
2174            @BeanReference(type = com.liferay.portal.service.ContactService.class)
2175            protected com.liferay.portal.service.ContactService contactService;
2176            @BeanReference(type = ContactPersistence.class)
2177            protected ContactPersistence contactPersistence;
2178            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
2179            protected com.liferay.portal.service.GroupLocalService groupLocalService;
2180            @BeanReference(type = com.liferay.portal.service.GroupService.class)
2181            protected com.liferay.portal.service.GroupService groupService;
2182            @BeanReference(type = GroupPersistence.class)
2183            protected GroupPersistence groupPersistence;
2184            @BeanReference(type = GroupFinder.class)
2185            protected GroupFinder groupFinder;
2186            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
2187            protected com.liferay.portal.service.ImageLocalService imageLocalService;
2188            @BeanReference(type = com.liferay.portal.service.ImageService.class)
2189            protected com.liferay.portal.service.ImageService imageService;
2190            @BeanReference(type = ImagePersistence.class)
2191            protected ImagePersistence imagePersistence;
2192            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
2193            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
2194            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
2195            protected com.liferay.portal.service.LayoutService layoutService;
2196            @BeanReference(type = LayoutPersistence.class)
2197            protected LayoutPersistence layoutPersistence;
2198            @BeanReference(type = LayoutFinder.class)
2199            protected LayoutFinder layoutFinder;
2200            @BeanReference(type = com.liferay.portal.service.MembershipRequestLocalService.class)
2201            protected com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService;
2202            @BeanReference(type = com.liferay.portal.service.MembershipRequestService.class)
2203            protected com.liferay.portal.service.MembershipRequestService membershipRequestService;
2204            @BeanReference(type = MembershipRequestPersistence.class)
2205            protected MembershipRequestPersistence membershipRequestPersistence;
2206            @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
2207            protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
2208            @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
2209            protected com.liferay.portal.service.OrganizationService organizationService;
2210            @BeanReference(type = OrganizationPersistence.class)
2211            protected OrganizationPersistence organizationPersistence;
2212            @BeanReference(type = OrganizationFinder.class)
2213            protected OrganizationFinder organizationFinder;
2214            @BeanReference(type = com.liferay.portal.service.PasswordPolicyLocalService.class)
2215            protected com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService;
2216            @BeanReference(type = com.liferay.portal.service.PasswordPolicyService.class)
2217            protected com.liferay.portal.service.PasswordPolicyService passwordPolicyService;
2218            @BeanReference(type = PasswordPolicyPersistence.class)
2219            protected PasswordPolicyPersistence passwordPolicyPersistence;
2220            @BeanReference(type = PasswordPolicyFinder.class)
2221            protected PasswordPolicyFinder passwordPolicyFinder;
2222            @BeanReference(type = com.liferay.portal.service.PasswordPolicyRelLocalService.class)
2223            protected com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService;
2224            @BeanReference(type = PasswordPolicyRelPersistence.class)
2225            protected PasswordPolicyRelPersistence passwordPolicyRelPersistence;
2226            @BeanReference(type = com.liferay.portal.service.PasswordTrackerLocalService.class)
2227            protected com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService;
2228            @BeanReference(type = PasswordTrackerPersistence.class)
2229            protected PasswordTrackerPersistence passwordTrackerPersistence;
2230            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
2231            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
2232            @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
2233            protected com.liferay.portal.service.RoleLocalService roleLocalService;
2234            @BeanReference(type = com.liferay.portal.service.RoleService.class)
2235            protected com.liferay.portal.service.RoleService roleService;
2236            @BeanReference(type = RolePersistence.class)
2237            protected RolePersistence rolePersistence;
2238            @BeanReference(type = RoleFinder.class)
2239            protected RoleFinder roleFinder;
2240            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
2241            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
2242            @BeanReference(type = SubscriptionPersistence.class)
2243            protected SubscriptionPersistence subscriptionPersistence;
2244            @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
2245            protected com.liferay.portal.service.TeamLocalService teamLocalService;
2246            @BeanReference(type = com.liferay.portal.service.TeamService.class)
2247            protected com.liferay.portal.service.TeamService teamService;
2248            @BeanReference(type = TeamPersistence.class)
2249            protected TeamPersistence teamPersistence;
2250            @BeanReference(type = TeamFinder.class)
2251            protected TeamFinder teamFinder;
2252            @BeanReference(type = com.liferay.portal.service.TicketLocalService.class)
2253            protected com.liferay.portal.service.TicketLocalService ticketLocalService;
2254            @BeanReference(type = TicketPersistence.class)
2255            protected TicketPersistence ticketPersistence;
2256            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService.class)
2257            protected com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService announcementsDeliveryLocalService;
2258            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsDeliveryService.class)
2259            protected com.liferay.portlet.announcements.service.AnnouncementsDeliveryService announcementsDeliveryService;
2260            @BeanReference(type = AnnouncementsDeliveryPersistence.class)
2261            protected AnnouncementsDeliveryPersistence announcementsDeliveryPersistence;
2262            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
2263            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
2264            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
2265            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
2266            @BeanReference(type = AssetEntryPersistence.class)
2267            protected AssetEntryPersistence assetEntryPersistence;
2268            @BeanReference(type = AssetEntryFinder.class)
2269            protected AssetEntryFinder assetEntryFinder;
2270            @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
2271            protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
2272            @BeanReference(type = BlogsStatsUserPersistence.class)
2273            protected BlogsStatsUserPersistence blogsStatsUserPersistence;
2274            @BeanReference(type = BlogsStatsUserFinder.class)
2275            protected BlogsStatsUserFinder blogsStatsUserFinder;
2276            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
2277            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
2278            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
2279            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
2280            @BeanReference(type = DLFileEntryPersistence.class)
2281            protected DLFileEntryPersistence dlFileEntryPersistence;
2282            @BeanReference(type = DLFileEntryFinder.class)
2283            protected DLFileEntryFinder dlFileEntryFinder;
2284            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
2285            protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
2286            @BeanReference(type = DLFileRankPersistence.class)
2287            protected DLFileRankPersistence dlFileRankPersistence;
2288            @BeanReference(type = DLFileRankFinder.class)
2289            protected DLFileRankFinder dlFileRankFinder;
2290            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
2291            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
2292            @BeanReference(type = ExpandoRowPersistence.class)
2293            protected ExpandoRowPersistence expandoRowPersistence;
2294            @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanLocalService.class)
2295            protected com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService;
2296            @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanService.class)
2297            protected com.liferay.portlet.messageboards.service.MBBanService mbBanService;
2298            @BeanReference(type = MBBanPersistence.class)
2299            protected MBBanPersistence mbBanPersistence;
2300            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
2301            protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
2302            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
2303            protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
2304            @BeanReference(type = MBMessagePersistence.class)
2305            protected MBMessagePersistence mbMessagePersistence;
2306            @BeanReference(type = MBMessageFinder.class)
2307            protected MBMessageFinder mbMessageFinder;
2308            @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
2309            protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
2310            @BeanReference(type = MBStatsUserPersistence.class)
2311            protected MBStatsUserPersistence mbStatsUserPersistence;
2312            @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
2313            protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
2314            @BeanReference(type = MBThreadFlagPersistence.class)
2315            protected MBThreadFlagPersistence mbThreadFlagPersistence;
2316            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCartLocalService.class)
2317            protected com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService;
2318            @BeanReference(type = ShoppingCartPersistence.class)
2319            protected ShoppingCartPersistence shoppingCartPersistence;
2320            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
2321            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
2322            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
2323            protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
2324            @BeanReference(type = SocialActivityPersistence.class)
2325            protected SocialActivityPersistence socialActivityPersistence;
2326            @BeanReference(type = SocialActivityFinder.class)
2327            protected SocialActivityFinder socialActivityFinder;
2328            @BeanReference(type = com.liferay.portlet.social.service.SocialRelationLocalService.class)
2329            protected com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService;
2330            @BeanReference(type = SocialRelationPersistence.class)
2331            protected SocialRelationPersistence socialRelationPersistence;
2332            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestLocalService.class)
2333            protected com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService;
2334            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestService.class)
2335            protected com.liferay.portlet.social.service.SocialRequestService socialRequestService;
2336            @BeanReference(type = SocialRequestPersistence.class)
2337            protected SocialRequestPersistence socialRequestPersistence;
2338            @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
2339            protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
2340            @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
2341            protected com.liferay.portal.service.UserGroupService userGroupService;
2342            @BeanReference(type = UserGroupPersistence.class)
2343            protected UserGroupPersistence userGroupPersistence;
2344            @BeanReference(type = UserGroupFinder.class)
2345            protected UserGroupFinder userGroupFinder;
2346            @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
2347            protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
2348            @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
2349            protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
2350            @BeanReference(type = UserGroupRolePersistence.class)
2351            protected UserGroupRolePersistence userGroupRolePersistence;
2352            @BeanReference(type = UserGroupRoleFinder.class)
2353            protected UserGroupRoleFinder userGroupRoleFinder;
2354            @BeanReference(type = com.liferay.portal.service.UserIdMapperLocalService.class)
2355            protected com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService;
2356            @BeanReference(type = UserIdMapperPersistence.class)
2357            protected UserIdMapperPersistence userIdMapperPersistence;
2358            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
2359            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
2360            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
2361            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
2362            private String _beanIdentifier;
2363    }