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