001    /**
002     * Copyright (c) 2000-2013 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.portlet.announcements.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.jdbc.SqlUpdate;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021    import com.liferay.portal.kernel.exception.SystemException;
022    import com.liferay.portal.service.BaseServiceImpl;
023    import com.liferay.portal.service.persistence.CompanyPersistence;
024    import com.liferay.portal.service.persistence.GroupFinder;
025    import com.liferay.portal.service.persistence.GroupPersistence;
026    import com.liferay.portal.service.persistence.OrganizationFinder;
027    import com.liferay.portal.service.persistence.OrganizationPersistence;
028    import com.liferay.portal.service.persistence.RoleFinder;
029    import com.liferay.portal.service.persistence.RolePersistence;
030    import com.liferay.portal.service.persistence.TeamFinder;
031    import com.liferay.portal.service.persistence.TeamPersistence;
032    import com.liferay.portal.service.persistence.UserFinder;
033    import com.liferay.portal.service.persistence.UserGroupFinder;
034    import com.liferay.portal.service.persistence.UserGroupPersistence;
035    import com.liferay.portal.service.persistence.UserPersistence;
036    
037    import com.liferay.portlet.announcements.model.AnnouncementsEntry;
038    import com.liferay.portlet.announcements.service.AnnouncementsEntryService;
039    import com.liferay.portlet.announcements.service.persistence.AnnouncementsDeliveryPersistence;
040    import com.liferay.portlet.announcements.service.persistence.AnnouncementsEntryFinder;
041    import com.liferay.portlet.announcements.service.persistence.AnnouncementsEntryPersistence;
042    import com.liferay.portlet.announcements.service.persistence.AnnouncementsFlagPersistence;
043    
044    import javax.sql.DataSource;
045    
046    /**
047     * Provides the base implementation for the announcements entry remote service.
048     *
049     * <p>
050     * 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.portlet.announcements.service.impl.AnnouncementsEntryServiceImpl}.
051     * </p>
052     *
053     * @author Brian Wing Shun Chan
054     * @see com.liferay.portlet.announcements.service.impl.AnnouncementsEntryServiceImpl
055     * @see com.liferay.portlet.announcements.service.AnnouncementsEntryServiceUtil
056     * @generated
057     */
058    public abstract class AnnouncementsEntryServiceBaseImpl extends BaseServiceImpl
059            implements AnnouncementsEntryService, IdentifiableBean {
060            /*
061             * NOTE FOR DEVELOPERS:
062             *
063             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.announcements.service.AnnouncementsEntryServiceUtil} to access the announcements entry remote service.
064             */
065    
066            /**
067             * Returns the announcements delivery local service.
068             *
069             * @return the announcements delivery local service
070             */
071            public com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService getAnnouncementsDeliveryLocalService() {
072                    return announcementsDeliveryLocalService;
073            }
074    
075            /**
076             * Sets the announcements delivery local service.
077             *
078             * @param announcementsDeliveryLocalService the announcements delivery local service
079             */
080            public void setAnnouncementsDeliveryLocalService(
081                    com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService announcementsDeliveryLocalService) {
082                    this.announcementsDeliveryLocalService = announcementsDeliveryLocalService;
083            }
084    
085            /**
086             * Returns the announcements delivery remote service.
087             *
088             * @return the announcements delivery remote service
089             */
090            public com.liferay.portlet.announcements.service.AnnouncementsDeliveryService getAnnouncementsDeliveryService() {
091                    return announcementsDeliveryService;
092            }
093    
094            /**
095             * Sets the announcements delivery remote service.
096             *
097             * @param announcementsDeliveryService the announcements delivery remote service
098             */
099            public void setAnnouncementsDeliveryService(
100                    com.liferay.portlet.announcements.service.AnnouncementsDeliveryService announcementsDeliveryService) {
101                    this.announcementsDeliveryService = announcementsDeliveryService;
102            }
103    
104            /**
105             * Returns the announcements delivery persistence.
106             *
107             * @return the announcements delivery persistence
108             */
109            public AnnouncementsDeliveryPersistence getAnnouncementsDeliveryPersistence() {
110                    return announcementsDeliveryPersistence;
111            }
112    
113            /**
114             * Sets the announcements delivery persistence.
115             *
116             * @param announcementsDeliveryPersistence the announcements delivery persistence
117             */
118            public void setAnnouncementsDeliveryPersistence(
119                    AnnouncementsDeliveryPersistence announcementsDeliveryPersistence) {
120                    this.announcementsDeliveryPersistence = announcementsDeliveryPersistence;
121            }
122    
123            /**
124             * Returns the announcements entry local service.
125             *
126             * @return the announcements entry local service
127             */
128            public com.liferay.portlet.announcements.service.AnnouncementsEntryLocalService getAnnouncementsEntryLocalService() {
129                    return announcementsEntryLocalService;
130            }
131    
132            /**
133             * Sets the announcements entry local service.
134             *
135             * @param announcementsEntryLocalService the announcements entry local service
136             */
137            public void setAnnouncementsEntryLocalService(
138                    com.liferay.portlet.announcements.service.AnnouncementsEntryLocalService announcementsEntryLocalService) {
139                    this.announcementsEntryLocalService = announcementsEntryLocalService;
140            }
141    
142            /**
143             * Returns the announcements entry remote service.
144             *
145             * @return the announcements entry remote service
146             */
147            public com.liferay.portlet.announcements.service.AnnouncementsEntryService getAnnouncementsEntryService() {
148                    return announcementsEntryService;
149            }
150    
151            /**
152             * Sets the announcements entry remote service.
153             *
154             * @param announcementsEntryService the announcements entry remote service
155             */
156            public void setAnnouncementsEntryService(
157                    com.liferay.portlet.announcements.service.AnnouncementsEntryService announcementsEntryService) {
158                    this.announcementsEntryService = announcementsEntryService;
159            }
160    
161            /**
162             * Returns the announcements entry persistence.
163             *
164             * @return the announcements entry persistence
165             */
166            public AnnouncementsEntryPersistence getAnnouncementsEntryPersistence() {
167                    return announcementsEntryPersistence;
168            }
169    
170            /**
171             * Sets the announcements entry persistence.
172             *
173             * @param announcementsEntryPersistence the announcements entry persistence
174             */
175            public void setAnnouncementsEntryPersistence(
176                    AnnouncementsEntryPersistence announcementsEntryPersistence) {
177                    this.announcementsEntryPersistence = announcementsEntryPersistence;
178            }
179    
180            /**
181             * Returns the announcements entry finder.
182             *
183             * @return the announcements entry finder
184             */
185            public AnnouncementsEntryFinder getAnnouncementsEntryFinder() {
186                    return announcementsEntryFinder;
187            }
188    
189            /**
190             * Sets the announcements entry finder.
191             *
192             * @param announcementsEntryFinder the announcements entry finder
193             */
194            public void setAnnouncementsEntryFinder(
195                    AnnouncementsEntryFinder announcementsEntryFinder) {
196                    this.announcementsEntryFinder = announcementsEntryFinder;
197            }
198    
199            /**
200             * Returns the announcements flag local service.
201             *
202             * @return the announcements flag local service
203             */
204            public com.liferay.portlet.announcements.service.AnnouncementsFlagLocalService getAnnouncementsFlagLocalService() {
205                    return announcementsFlagLocalService;
206            }
207    
208            /**
209             * Sets the announcements flag local service.
210             *
211             * @param announcementsFlagLocalService the announcements flag local service
212             */
213            public void setAnnouncementsFlagLocalService(
214                    com.liferay.portlet.announcements.service.AnnouncementsFlagLocalService announcementsFlagLocalService) {
215                    this.announcementsFlagLocalService = announcementsFlagLocalService;
216            }
217    
218            /**
219             * Returns the announcements flag remote service.
220             *
221             * @return the announcements flag remote service
222             */
223            public com.liferay.portlet.announcements.service.AnnouncementsFlagService getAnnouncementsFlagService() {
224                    return announcementsFlagService;
225            }
226    
227            /**
228             * Sets the announcements flag remote service.
229             *
230             * @param announcementsFlagService the announcements flag remote service
231             */
232            public void setAnnouncementsFlagService(
233                    com.liferay.portlet.announcements.service.AnnouncementsFlagService announcementsFlagService) {
234                    this.announcementsFlagService = announcementsFlagService;
235            }
236    
237            /**
238             * Returns the announcements flag persistence.
239             *
240             * @return the announcements flag persistence
241             */
242            public AnnouncementsFlagPersistence getAnnouncementsFlagPersistence() {
243                    return announcementsFlagPersistence;
244            }
245    
246            /**
247             * Sets the announcements flag persistence.
248             *
249             * @param announcementsFlagPersistence the announcements flag persistence
250             */
251            public void setAnnouncementsFlagPersistence(
252                    AnnouncementsFlagPersistence announcementsFlagPersistence) {
253                    this.announcementsFlagPersistence = announcementsFlagPersistence;
254            }
255    
256            /**
257             * Returns the counter local service.
258             *
259             * @return the counter local service
260             */
261            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
262                    return counterLocalService;
263            }
264    
265            /**
266             * Sets the counter local service.
267             *
268             * @param counterLocalService the counter local service
269             */
270            public void setCounterLocalService(
271                    com.liferay.counter.service.CounterLocalService counterLocalService) {
272                    this.counterLocalService = counterLocalService;
273            }
274    
275            /**
276             * Returns the mail remote service.
277             *
278             * @return the mail remote service
279             */
280            public com.liferay.mail.service.MailService getMailService() {
281                    return mailService;
282            }
283    
284            /**
285             * Sets the mail remote service.
286             *
287             * @param mailService the mail remote service
288             */
289            public void setMailService(com.liferay.mail.service.MailService mailService) {
290                    this.mailService = mailService;
291            }
292    
293            /**
294             * Returns the company local service.
295             *
296             * @return the company local service
297             */
298            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
299                    return companyLocalService;
300            }
301    
302            /**
303             * Sets the company local service.
304             *
305             * @param companyLocalService the company local service
306             */
307            public void setCompanyLocalService(
308                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
309                    this.companyLocalService = companyLocalService;
310            }
311    
312            /**
313             * Returns the company remote service.
314             *
315             * @return the company remote service
316             */
317            public com.liferay.portal.service.CompanyService getCompanyService() {
318                    return companyService;
319            }
320    
321            /**
322             * Sets the company remote service.
323             *
324             * @param companyService the company remote service
325             */
326            public void setCompanyService(
327                    com.liferay.portal.service.CompanyService companyService) {
328                    this.companyService = companyService;
329            }
330    
331            /**
332             * Returns the company persistence.
333             *
334             * @return the company persistence
335             */
336            public CompanyPersistence getCompanyPersistence() {
337                    return companyPersistence;
338            }
339    
340            /**
341             * Sets the company persistence.
342             *
343             * @param companyPersistence the company persistence
344             */
345            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
346                    this.companyPersistence = companyPersistence;
347            }
348    
349            /**
350             * Returns the group local service.
351             *
352             * @return the group local service
353             */
354            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
355                    return groupLocalService;
356            }
357    
358            /**
359             * Sets the group local service.
360             *
361             * @param groupLocalService the group local service
362             */
363            public void setGroupLocalService(
364                    com.liferay.portal.service.GroupLocalService groupLocalService) {
365                    this.groupLocalService = groupLocalService;
366            }
367    
368            /**
369             * Returns the group remote service.
370             *
371             * @return the group remote service
372             */
373            public com.liferay.portal.service.GroupService getGroupService() {
374                    return groupService;
375            }
376    
377            /**
378             * Sets the group remote service.
379             *
380             * @param groupService the group remote service
381             */
382            public void setGroupService(
383                    com.liferay.portal.service.GroupService groupService) {
384                    this.groupService = groupService;
385            }
386    
387            /**
388             * Returns the group persistence.
389             *
390             * @return the group persistence
391             */
392            public GroupPersistence getGroupPersistence() {
393                    return groupPersistence;
394            }
395    
396            /**
397             * Sets the group persistence.
398             *
399             * @param groupPersistence the group persistence
400             */
401            public void setGroupPersistence(GroupPersistence groupPersistence) {
402                    this.groupPersistence = groupPersistence;
403            }
404    
405            /**
406             * Returns the group finder.
407             *
408             * @return the group finder
409             */
410            public GroupFinder getGroupFinder() {
411                    return groupFinder;
412            }
413    
414            /**
415             * Sets the group finder.
416             *
417             * @param groupFinder the group finder
418             */
419            public void setGroupFinder(GroupFinder groupFinder) {
420                    this.groupFinder = groupFinder;
421            }
422    
423            /**
424             * Returns the organization local service.
425             *
426             * @return the organization local service
427             */
428            public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
429                    return organizationLocalService;
430            }
431    
432            /**
433             * Sets the organization local service.
434             *
435             * @param organizationLocalService the organization local service
436             */
437            public void setOrganizationLocalService(
438                    com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
439                    this.organizationLocalService = organizationLocalService;
440            }
441    
442            /**
443             * Returns the organization remote service.
444             *
445             * @return the organization remote service
446             */
447            public com.liferay.portal.service.OrganizationService getOrganizationService() {
448                    return organizationService;
449            }
450    
451            /**
452             * Sets the organization remote service.
453             *
454             * @param organizationService the organization remote service
455             */
456            public void setOrganizationService(
457                    com.liferay.portal.service.OrganizationService organizationService) {
458                    this.organizationService = organizationService;
459            }
460    
461            /**
462             * Returns the organization persistence.
463             *
464             * @return the organization persistence
465             */
466            public OrganizationPersistence getOrganizationPersistence() {
467                    return organizationPersistence;
468            }
469    
470            /**
471             * Sets the organization persistence.
472             *
473             * @param organizationPersistence the organization persistence
474             */
475            public void setOrganizationPersistence(
476                    OrganizationPersistence organizationPersistence) {
477                    this.organizationPersistence = organizationPersistence;
478            }
479    
480            /**
481             * Returns the organization finder.
482             *
483             * @return the organization finder
484             */
485            public OrganizationFinder getOrganizationFinder() {
486                    return organizationFinder;
487            }
488    
489            /**
490             * Sets the organization finder.
491             *
492             * @param organizationFinder the organization finder
493             */
494            public void setOrganizationFinder(OrganizationFinder organizationFinder) {
495                    this.organizationFinder = organizationFinder;
496            }
497    
498            /**
499             * Returns the resource local service.
500             *
501             * @return the resource local service
502             */
503            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
504                    return resourceLocalService;
505            }
506    
507            /**
508             * Sets the resource local service.
509             *
510             * @param resourceLocalService the resource local service
511             */
512            public void setResourceLocalService(
513                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
514                    this.resourceLocalService = resourceLocalService;
515            }
516    
517            /**
518             * Returns the role local service.
519             *
520             * @return the role local service
521             */
522            public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
523                    return roleLocalService;
524            }
525    
526            /**
527             * Sets the role local service.
528             *
529             * @param roleLocalService the role local service
530             */
531            public void setRoleLocalService(
532                    com.liferay.portal.service.RoleLocalService roleLocalService) {
533                    this.roleLocalService = roleLocalService;
534            }
535    
536            /**
537             * Returns the role remote service.
538             *
539             * @return the role remote service
540             */
541            public com.liferay.portal.service.RoleService getRoleService() {
542                    return roleService;
543            }
544    
545            /**
546             * Sets the role remote service.
547             *
548             * @param roleService the role remote service
549             */
550            public void setRoleService(
551                    com.liferay.portal.service.RoleService roleService) {
552                    this.roleService = roleService;
553            }
554    
555            /**
556             * Returns the role persistence.
557             *
558             * @return the role persistence
559             */
560            public RolePersistence getRolePersistence() {
561                    return rolePersistence;
562            }
563    
564            /**
565             * Sets the role persistence.
566             *
567             * @param rolePersistence the role persistence
568             */
569            public void setRolePersistence(RolePersistence rolePersistence) {
570                    this.rolePersistence = rolePersistence;
571            }
572    
573            /**
574             * Returns the role finder.
575             *
576             * @return the role finder
577             */
578            public RoleFinder getRoleFinder() {
579                    return roleFinder;
580            }
581    
582            /**
583             * Sets the role finder.
584             *
585             * @param roleFinder the role finder
586             */
587            public void setRoleFinder(RoleFinder roleFinder) {
588                    this.roleFinder = roleFinder;
589            }
590    
591            /**
592             * Returns the team local service.
593             *
594             * @return the team local service
595             */
596            public com.liferay.portal.service.TeamLocalService getTeamLocalService() {
597                    return teamLocalService;
598            }
599    
600            /**
601             * Sets the team local service.
602             *
603             * @param teamLocalService the team local service
604             */
605            public void setTeamLocalService(
606                    com.liferay.portal.service.TeamLocalService teamLocalService) {
607                    this.teamLocalService = teamLocalService;
608            }
609    
610            /**
611             * Returns the team remote service.
612             *
613             * @return the team remote service
614             */
615            public com.liferay.portal.service.TeamService getTeamService() {
616                    return teamService;
617            }
618    
619            /**
620             * Sets the team remote service.
621             *
622             * @param teamService the team remote service
623             */
624            public void setTeamService(
625                    com.liferay.portal.service.TeamService teamService) {
626                    this.teamService = teamService;
627            }
628    
629            /**
630             * Returns the team persistence.
631             *
632             * @return the team persistence
633             */
634            public TeamPersistence getTeamPersistence() {
635                    return teamPersistence;
636            }
637    
638            /**
639             * Sets the team persistence.
640             *
641             * @param teamPersistence the team persistence
642             */
643            public void setTeamPersistence(TeamPersistence teamPersistence) {
644                    this.teamPersistence = teamPersistence;
645            }
646    
647            /**
648             * Returns the team finder.
649             *
650             * @return the team finder
651             */
652            public TeamFinder getTeamFinder() {
653                    return teamFinder;
654            }
655    
656            /**
657             * Sets the team finder.
658             *
659             * @param teamFinder the team finder
660             */
661            public void setTeamFinder(TeamFinder teamFinder) {
662                    this.teamFinder = teamFinder;
663            }
664    
665            /**
666             * Returns the user local service.
667             *
668             * @return the user local service
669             */
670            public com.liferay.portal.service.UserLocalService getUserLocalService() {
671                    return userLocalService;
672            }
673    
674            /**
675             * Sets the user local service.
676             *
677             * @param userLocalService the user local service
678             */
679            public void setUserLocalService(
680                    com.liferay.portal.service.UserLocalService userLocalService) {
681                    this.userLocalService = userLocalService;
682            }
683    
684            /**
685             * Returns the user remote service.
686             *
687             * @return the user remote service
688             */
689            public com.liferay.portal.service.UserService getUserService() {
690                    return userService;
691            }
692    
693            /**
694             * Sets the user remote service.
695             *
696             * @param userService the user remote service
697             */
698            public void setUserService(
699                    com.liferay.portal.service.UserService userService) {
700                    this.userService = userService;
701            }
702    
703            /**
704             * Returns the user persistence.
705             *
706             * @return the user persistence
707             */
708            public UserPersistence getUserPersistence() {
709                    return userPersistence;
710            }
711    
712            /**
713             * Sets the user persistence.
714             *
715             * @param userPersistence the user persistence
716             */
717            public void setUserPersistence(UserPersistence userPersistence) {
718                    this.userPersistence = userPersistence;
719            }
720    
721            /**
722             * Returns the user finder.
723             *
724             * @return the user finder
725             */
726            public UserFinder getUserFinder() {
727                    return userFinder;
728            }
729    
730            /**
731             * Sets the user finder.
732             *
733             * @param userFinder the user finder
734             */
735            public void setUserFinder(UserFinder userFinder) {
736                    this.userFinder = userFinder;
737            }
738    
739            /**
740             * Returns the user group local service.
741             *
742             * @return the user group local service
743             */
744            public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
745                    return userGroupLocalService;
746            }
747    
748            /**
749             * Sets the user group local service.
750             *
751             * @param userGroupLocalService the user group local service
752             */
753            public void setUserGroupLocalService(
754                    com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
755                    this.userGroupLocalService = userGroupLocalService;
756            }
757    
758            /**
759             * Returns the user group remote service.
760             *
761             * @return the user group remote service
762             */
763            public com.liferay.portal.service.UserGroupService getUserGroupService() {
764                    return userGroupService;
765            }
766    
767            /**
768             * Sets the user group remote service.
769             *
770             * @param userGroupService the user group remote service
771             */
772            public void setUserGroupService(
773                    com.liferay.portal.service.UserGroupService userGroupService) {
774                    this.userGroupService = userGroupService;
775            }
776    
777            /**
778             * Returns the user group persistence.
779             *
780             * @return the user group persistence
781             */
782            public UserGroupPersistence getUserGroupPersistence() {
783                    return userGroupPersistence;
784            }
785    
786            /**
787             * Sets the user group persistence.
788             *
789             * @param userGroupPersistence the user group persistence
790             */
791            public void setUserGroupPersistence(
792                    UserGroupPersistence userGroupPersistence) {
793                    this.userGroupPersistence = userGroupPersistence;
794            }
795    
796            /**
797             * Returns the user group finder.
798             *
799             * @return the user group finder
800             */
801            public UserGroupFinder getUserGroupFinder() {
802                    return userGroupFinder;
803            }
804    
805            /**
806             * Sets the user group finder.
807             *
808             * @param userGroupFinder the user group finder
809             */
810            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
811                    this.userGroupFinder = userGroupFinder;
812            }
813    
814            public void afterPropertiesSet() {
815            }
816    
817            public void destroy() {
818            }
819    
820            /**
821             * Returns the Spring bean ID for this bean.
822             *
823             * @return the Spring bean ID for this bean
824             */
825            @Override
826            public String getBeanIdentifier() {
827                    return _beanIdentifier;
828            }
829    
830            /**
831             * Sets the Spring bean ID for this bean.
832             *
833             * @param beanIdentifier the Spring bean ID for this bean
834             */
835            @Override
836            public void setBeanIdentifier(String beanIdentifier) {
837                    _beanIdentifier = beanIdentifier;
838            }
839    
840            protected Class<?> getModelClass() {
841                    return AnnouncementsEntry.class;
842            }
843    
844            protected String getModelClassName() {
845                    return AnnouncementsEntry.class.getName();
846            }
847    
848            /**
849             * Performs an SQL query.
850             *
851             * @param sql the sql query
852             */
853            protected void runSQL(String sql) throws SystemException {
854                    try {
855                            DataSource dataSource = announcementsEntryPersistence.getDataSource();
856    
857                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
858                                            sql, new int[0]);
859    
860                            sqlUpdate.update();
861                    }
862                    catch (Exception e) {
863                            throw new SystemException(e);
864                    }
865            }
866    
867            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService.class)
868            protected com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService announcementsDeliveryLocalService;
869            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsDeliveryService.class)
870            protected com.liferay.portlet.announcements.service.AnnouncementsDeliveryService announcementsDeliveryService;
871            @BeanReference(type = AnnouncementsDeliveryPersistence.class)
872            protected AnnouncementsDeliveryPersistence announcementsDeliveryPersistence;
873            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsEntryLocalService.class)
874            protected com.liferay.portlet.announcements.service.AnnouncementsEntryLocalService announcementsEntryLocalService;
875            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsEntryService.class)
876            protected com.liferay.portlet.announcements.service.AnnouncementsEntryService announcementsEntryService;
877            @BeanReference(type = AnnouncementsEntryPersistence.class)
878            protected AnnouncementsEntryPersistence announcementsEntryPersistence;
879            @BeanReference(type = AnnouncementsEntryFinder.class)
880            protected AnnouncementsEntryFinder announcementsEntryFinder;
881            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsFlagLocalService.class)
882            protected com.liferay.portlet.announcements.service.AnnouncementsFlagLocalService announcementsFlagLocalService;
883            @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsFlagService.class)
884            protected com.liferay.portlet.announcements.service.AnnouncementsFlagService announcementsFlagService;
885            @BeanReference(type = AnnouncementsFlagPersistence.class)
886            protected AnnouncementsFlagPersistence announcementsFlagPersistence;
887            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
888            protected com.liferay.counter.service.CounterLocalService counterLocalService;
889            @BeanReference(type = com.liferay.mail.service.MailService.class)
890            protected com.liferay.mail.service.MailService mailService;
891            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
892            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
893            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
894            protected com.liferay.portal.service.CompanyService companyService;
895            @BeanReference(type = CompanyPersistence.class)
896            protected CompanyPersistence companyPersistence;
897            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
898            protected com.liferay.portal.service.GroupLocalService groupLocalService;
899            @BeanReference(type = com.liferay.portal.service.GroupService.class)
900            protected com.liferay.portal.service.GroupService groupService;
901            @BeanReference(type = GroupPersistence.class)
902            protected GroupPersistence groupPersistence;
903            @BeanReference(type = GroupFinder.class)
904            protected GroupFinder groupFinder;
905            @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
906            protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
907            @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
908            protected com.liferay.portal.service.OrganizationService organizationService;
909            @BeanReference(type = OrganizationPersistence.class)
910            protected OrganizationPersistence organizationPersistence;
911            @BeanReference(type = OrganizationFinder.class)
912            protected OrganizationFinder organizationFinder;
913            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
914            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
915            @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
916            protected com.liferay.portal.service.RoleLocalService roleLocalService;
917            @BeanReference(type = com.liferay.portal.service.RoleService.class)
918            protected com.liferay.portal.service.RoleService roleService;
919            @BeanReference(type = RolePersistence.class)
920            protected RolePersistence rolePersistence;
921            @BeanReference(type = RoleFinder.class)
922            protected RoleFinder roleFinder;
923            @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
924            protected com.liferay.portal.service.TeamLocalService teamLocalService;
925            @BeanReference(type = com.liferay.portal.service.TeamService.class)
926            protected com.liferay.portal.service.TeamService teamService;
927            @BeanReference(type = TeamPersistence.class)
928            protected TeamPersistence teamPersistence;
929            @BeanReference(type = TeamFinder.class)
930            protected TeamFinder teamFinder;
931            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
932            protected com.liferay.portal.service.UserLocalService userLocalService;
933            @BeanReference(type = com.liferay.portal.service.UserService.class)
934            protected com.liferay.portal.service.UserService userService;
935            @BeanReference(type = UserPersistence.class)
936            protected UserPersistence userPersistence;
937            @BeanReference(type = UserFinder.class)
938            protected UserFinder userFinder;
939            @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
940            protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
941            @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
942            protected com.liferay.portal.service.UserGroupService userGroupService;
943            @BeanReference(type = UserGroupPersistence.class)
944            protected UserGroupPersistence userGroupPersistence;
945            @BeanReference(type = UserGroupFinder.class)
946            protected UserGroupFinder userGroupFinder;
947            private String _beanIdentifier;
948    }