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.wiki.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.GroupFinder;
024    import com.liferay.portal.service.persistence.GroupPersistence;
025    import com.liferay.portal.service.persistence.SubscriptionPersistence;
026    import com.liferay.portal.service.persistence.SystemEventPersistence;
027    import com.liferay.portal.service.persistence.UserFinder;
028    import com.liferay.portal.service.persistence.UserPersistence;
029    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
030    
031    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
032    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
033    import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
034    import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
035    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
036    import com.liferay.portlet.wiki.model.WikiNode;
037    import com.liferay.portlet.wiki.service.WikiNodeService;
038    import com.liferay.portlet.wiki.service.persistence.WikiNodePersistence;
039    import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
040    import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
041    import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
042    
043    import javax.sql.DataSource;
044    
045    /**
046     * Provides the base implementation for the wiki node remote service.
047     *
048     * <p>
049     * 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.wiki.service.impl.WikiNodeServiceImpl}.
050     * </p>
051     *
052     * @author Brian Wing Shun Chan
053     * @see com.liferay.portlet.wiki.service.impl.WikiNodeServiceImpl
054     * @see com.liferay.portlet.wiki.service.WikiNodeServiceUtil
055     * @generated
056     */
057    public abstract class WikiNodeServiceBaseImpl extends BaseServiceImpl
058            implements WikiNodeService, IdentifiableBean {
059            /*
060             * NOTE FOR DEVELOPERS:
061             *
062             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.wiki.service.WikiNodeServiceUtil} to access the wiki node remote service.
063             */
064    
065            /**
066             * Returns the wiki node local service.
067             *
068             * @return the wiki node local service
069             */
070            public com.liferay.portlet.wiki.service.WikiNodeLocalService getWikiNodeLocalService() {
071                    return wikiNodeLocalService;
072            }
073    
074            /**
075             * Sets the wiki node local service.
076             *
077             * @param wikiNodeLocalService the wiki node local service
078             */
079            public void setWikiNodeLocalService(
080                    com.liferay.portlet.wiki.service.WikiNodeLocalService wikiNodeLocalService) {
081                    this.wikiNodeLocalService = wikiNodeLocalService;
082            }
083    
084            /**
085             * Returns the wiki node remote service.
086             *
087             * @return the wiki node remote service
088             */
089            public com.liferay.portlet.wiki.service.WikiNodeService getWikiNodeService() {
090                    return wikiNodeService;
091            }
092    
093            /**
094             * Sets the wiki node remote service.
095             *
096             * @param wikiNodeService the wiki node remote service
097             */
098            public void setWikiNodeService(
099                    com.liferay.portlet.wiki.service.WikiNodeService wikiNodeService) {
100                    this.wikiNodeService = wikiNodeService;
101            }
102    
103            /**
104             * Returns the wiki node persistence.
105             *
106             * @return the wiki node persistence
107             */
108            public WikiNodePersistence getWikiNodePersistence() {
109                    return wikiNodePersistence;
110            }
111    
112            /**
113             * Sets the wiki node persistence.
114             *
115             * @param wikiNodePersistence the wiki node persistence
116             */
117            public void setWikiNodePersistence(WikiNodePersistence wikiNodePersistence) {
118                    this.wikiNodePersistence = wikiNodePersistence;
119            }
120    
121            /**
122             * Returns the wiki page local service.
123             *
124             * @return the wiki page local service
125             */
126            public com.liferay.portlet.wiki.service.WikiPageLocalService getWikiPageLocalService() {
127                    return wikiPageLocalService;
128            }
129    
130            /**
131             * Sets the wiki page local service.
132             *
133             * @param wikiPageLocalService the wiki page local service
134             */
135            public void setWikiPageLocalService(
136                    com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService) {
137                    this.wikiPageLocalService = wikiPageLocalService;
138            }
139    
140            /**
141             * Returns the wiki page remote service.
142             *
143             * @return the wiki page remote service
144             */
145            public com.liferay.portlet.wiki.service.WikiPageService getWikiPageService() {
146                    return wikiPageService;
147            }
148    
149            /**
150             * Sets the wiki page remote service.
151             *
152             * @param wikiPageService the wiki page remote service
153             */
154            public void setWikiPageService(
155                    com.liferay.portlet.wiki.service.WikiPageService wikiPageService) {
156                    this.wikiPageService = wikiPageService;
157            }
158    
159            /**
160             * Returns the wiki page persistence.
161             *
162             * @return the wiki page persistence
163             */
164            public WikiPagePersistence getWikiPagePersistence() {
165                    return wikiPagePersistence;
166            }
167    
168            /**
169             * Sets the wiki page persistence.
170             *
171             * @param wikiPagePersistence the wiki page persistence
172             */
173            public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
174                    this.wikiPagePersistence = wikiPagePersistence;
175            }
176    
177            /**
178             * Returns the wiki page finder.
179             *
180             * @return the wiki page finder
181             */
182            public WikiPageFinder getWikiPageFinder() {
183                    return wikiPageFinder;
184            }
185    
186            /**
187             * Sets the wiki page finder.
188             *
189             * @param wikiPageFinder the wiki page finder
190             */
191            public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
192                    this.wikiPageFinder = wikiPageFinder;
193            }
194    
195            /**
196             * Returns the wiki page resource local service.
197             *
198             * @return the wiki page resource local service
199             */
200            public com.liferay.portlet.wiki.service.WikiPageResourceLocalService getWikiPageResourceLocalService() {
201                    return wikiPageResourceLocalService;
202            }
203    
204            /**
205             * Sets the wiki page resource local service.
206             *
207             * @param wikiPageResourceLocalService the wiki page resource local service
208             */
209            public void setWikiPageResourceLocalService(
210                    com.liferay.portlet.wiki.service.WikiPageResourceLocalService wikiPageResourceLocalService) {
211                    this.wikiPageResourceLocalService = wikiPageResourceLocalService;
212            }
213    
214            /**
215             * Returns the wiki page resource persistence.
216             *
217             * @return the wiki page resource persistence
218             */
219            public WikiPageResourcePersistence getWikiPageResourcePersistence() {
220                    return wikiPageResourcePersistence;
221            }
222    
223            /**
224             * Sets the wiki page resource persistence.
225             *
226             * @param wikiPageResourcePersistence the wiki page resource persistence
227             */
228            public void setWikiPageResourcePersistence(
229                    WikiPageResourcePersistence wikiPageResourcePersistence) {
230                    this.wikiPageResourcePersistence = wikiPageResourcePersistence;
231            }
232    
233            /**
234             * Returns the counter local service.
235             *
236             * @return the counter local service
237             */
238            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
239                    return counterLocalService;
240            }
241    
242            /**
243             * Sets the counter local service.
244             *
245             * @param counterLocalService the counter local service
246             */
247            public void setCounterLocalService(
248                    com.liferay.counter.service.CounterLocalService counterLocalService) {
249                    this.counterLocalService = counterLocalService;
250            }
251    
252            /**
253             * Returns the group local service.
254             *
255             * @return the group local service
256             */
257            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
258                    return groupLocalService;
259            }
260    
261            /**
262             * Sets the group local service.
263             *
264             * @param groupLocalService the group local service
265             */
266            public void setGroupLocalService(
267                    com.liferay.portal.service.GroupLocalService groupLocalService) {
268                    this.groupLocalService = groupLocalService;
269            }
270    
271            /**
272             * Returns the group remote service.
273             *
274             * @return the group remote service
275             */
276            public com.liferay.portal.service.GroupService getGroupService() {
277                    return groupService;
278            }
279    
280            /**
281             * Sets the group remote service.
282             *
283             * @param groupService the group remote service
284             */
285            public void setGroupService(
286                    com.liferay.portal.service.GroupService groupService) {
287                    this.groupService = groupService;
288            }
289    
290            /**
291             * Returns the group persistence.
292             *
293             * @return the group persistence
294             */
295            public GroupPersistence getGroupPersistence() {
296                    return groupPersistence;
297            }
298    
299            /**
300             * Sets the group persistence.
301             *
302             * @param groupPersistence the group persistence
303             */
304            public void setGroupPersistence(GroupPersistence groupPersistence) {
305                    this.groupPersistence = groupPersistence;
306            }
307    
308            /**
309             * Returns the group finder.
310             *
311             * @return the group finder
312             */
313            public GroupFinder getGroupFinder() {
314                    return groupFinder;
315            }
316    
317            /**
318             * Sets the group finder.
319             *
320             * @param groupFinder the group finder
321             */
322            public void setGroupFinder(GroupFinder groupFinder) {
323                    this.groupFinder = groupFinder;
324            }
325    
326            /**
327             * Returns the resource local service.
328             *
329             * @return the resource local service
330             */
331            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
332                    return resourceLocalService;
333            }
334    
335            /**
336             * Sets the resource local service.
337             *
338             * @param resourceLocalService the resource local service
339             */
340            public void setResourceLocalService(
341                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
342                    this.resourceLocalService = resourceLocalService;
343            }
344    
345            /**
346             * Returns the subscription local service.
347             *
348             * @return the subscription local service
349             */
350            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
351                    return subscriptionLocalService;
352            }
353    
354            /**
355             * Sets the subscription local service.
356             *
357             * @param subscriptionLocalService the subscription local service
358             */
359            public void setSubscriptionLocalService(
360                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
361                    this.subscriptionLocalService = subscriptionLocalService;
362            }
363    
364            /**
365             * Returns the subscription persistence.
366             *
367             * @return the subscription persistence
368             */
369            public SubscriptionPersistence getSubscriptionPersistence() {
370                    return subscriptionPersistence;
371            }
372    
373            /**
374             * Sets the subscription persistence.
375             *
376             * @param subscriptionPersistence the subscription persistence
377             */
378            public void setSubscriptionPersistence(
379                    SubscriptionPersistence subscriptionPersistence) {
380                    this.subscriptionPersistence = subscriptionPersistence;
381            }
382    
383            /**
384             * Returns the system event local service.
385             *
386             * @return the system event local service
387             */
388            public com.liferay.portal.service.SystemEventLocalService getSystemEventLocalService() {
389                    return systemEventLocalService;
390            }
391    
392            /**
393             * Sets the system event local service.
394             *
395             * @param systemEventLocalService the system event local service
396             */
397            public void setSystemEventLocalService(
398                    com.liferay.portal.service.SystemEventLocalService systemEventLocalService) {
399                    this.systemEventLocalService = systemEventLocalService;
400            }
401    
402            /**
403             * Returns the system event persistence.
404             *
405             * @return the system event persistence
406             */
407            public SystemEventPersistence getSystemEventPersistence() {
408                    return systemEventPersistence;
409            }
410    
411            /**
412             * Sets the system event persistence.
413             *
414             * @param systemEventPersistence the system event persistence
415             */
416            public void setSystemEventPersistence(
417                    SystemEventPersistence systemEventPersistence) {
418                    this.systemEventPersistence = systemEventPersistence;
419            }
420    
421            /**
422             * Returns the user local service.
423             *
424             * @return the user local service
425             */
426            public com.liferay.portal.service.UserLocalService getUserLocalService() {
427                    return userLocalService;
428            }
429    
430            /**
431             * Sets the user local service.
432             *
433             * @param userLocalService the user local service
434             */
435            public void setUserLocalService(
436                    com.liferay.portal.service.UserLocalService userLocalService) {
437                    this.userLocalService = userLocalService;
438            }
439    
440            /**
441             * Returns the user remote service.
442             *
443             * @return the user remote service
444             */
445            public com.liferay.portal.service.UserService getUserService() {
446                    return userService;
447            }
448    
449            /**
450             * Sets the user remote service.
451             *
452             * @param userService the user remote service
453             */
454            public void setUserService(
455                    com.liferay.portal.service.UserService userService) {
456                    this.userService = userService;
457            }
458    
459            /**
460             * Returns the user persistence.
461             *
462             * @return the user persistence
463             */
464            public UserPersistence getUserPersistence() {
465                    return userPersistence;
466            }
467    
468            /**
469             * Sets the user persistence.
470             *
471             * @param userPersistence the user persistence
472             */
473            public void setUserPersistence(UserPersistence userPersistence) {
474                    this.userPersistence = userPersistence;
475            }
476    
477            /**
478             * Returns the user finder.
479             *
480             * @return the user finder
481             */
482            public UserFinder getUserFinder() {
483                    return userFinder;
484            }
485    
486            /**
487             * Sets the user finder.
488             *
489             * @param userFinder the user finder
490             */
491            public void setUserFinder(UserFinder userFinder) {
492                    this.userFinder = userFinder;
493            }
494    
495            /**
496             * Returns the workflow instance link local service.
497             *
498             * @return the workflow instance link local service
499             */
500            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
501                    return workflowInstanceLinkLocalService;
502            }
503    
504            /**
505             * Sets the workflow instance link local service.
506             *
507             * @param workflowInstanceLinkLocalService the workflow instance link local service
508             */
509            public void setWorkflowInstanceLinkLocalService(
510                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
511                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
512            }
513    
514            /**
515             * Returns the workflow instance link persistence.
516             *
517             * @return the workflow instance link persistence
518             */
519            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
520                    return workflowInstanceLinkPersistence;
521            }
522    
523            /**
524             * Sets the workflow instance link persistence.
525             *
526             * @param workflowInstanceLinkPersistence the workflow instance link persistence
527             */
528            public void setWorkflowInstanceLinkPersistence(
529                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
530                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
531            }
532    
533            /**
534             * Returns the asset entry local service.
535             *
536             * @return the asset entry local service
537             */
538            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
539                    return assetEntryLocalService;
540            }
541    
542            /**
543             * Sets the asset entry local service.
544             *
545             * @param assetEntryLocalService the asset entry local service
546             */
547            public void setAssetEntryLocalService(
548                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
549                    this.assetEntryLocalService = assetEntryLocalService;
550            }
551    
552            /**
553             * Returns the asset entry remote service.
554             *
555             * @return the asset entry remote service
556             */
557            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
558                    return assetEntryService;
559            }
560    
561            /**
562             * Sets the asset entry remote service.
563             *
564             * @param assetEntryService the asset entry remote service
565             */
566            public void setAssetEntryService(
567                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
568                    this.assetEntryService = assetEntryService;
569            }
570    
571            /**
572             * Returns the asset entry persistence.
573             *
574             * @return the asset entry persistence
575             */
576            public AssetEntryPersistence getAssetEntryPersistence() {
577                    return assetEntryPersistence;
578            }
579    
580            /**
581             * Sets the asset entry persistence.
582             *
583             * @param assetEntryPersistence the asset entry persistence
584             */
585            public void setAssetEntryPersistence(
586                    AssetEntryPersistence assetEntryPersistence) {
587                    this.assetEntryPersistence = assetEntryPersistence;
588            }
589    
590            /**
591             * Returns the asset entry finder.
592             *
593             * @return the asset entry finder
594             */
595            public AssetEntryFinder getAssetEntryFinder() {
596                    return assetEntryFinder;
597            }
598    
599            /**
600             * Sets the asset entry finder.
601             *
602             * @param assetEntryFinder the asset entry finder
603             */
604            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
605                    this.assetEntryFinder = assetEntryFinder;
606            }
607    
608            /**
609             * Returns the social activity counter local service.
610             *
611             * @return the social activity counter local service
612             */
613            public com.liferay.portlet.social.service.SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
614                    return socialActivityCounterLocalService;
615            }
616    
617            /**
618             * Sets the social activity counter local service.
619             *
620             * @param socialActivityCounterLocalService the social activity counter local service
621             */
622            public void setSocialActivityCounterLocalService(
623                    com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService) {
624                    this.socialActivityCounterLocalService = socialActivityCounterLocalService;
625            }
626    
627            /**
628             * Returns the social activity counter persistence.
629             *
630             * @return the social activity counter persistence
631             */
632            public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
633                    return socialActivityCounterPersistence;
634            }
635    
636            /**
637             * Sets the social activity counter persistence.
638             *
639             * @param socialActivityCounterPersistence the social activity counter persistence
640             */
641            public void setSocialActivityCounterPersistence(
642                    SocialActivityCounterPersistence socialActivityCounterPersistence) {
643                    this.socialActivityCounterPersistence = socialActivityCounterPersistence;
644            }
645    
646            /**
647             * Returns the social activity counter finder.
648             *
649             * @return the social activity counter finder
650             */
651            public SocialActivityCounterFinder getSocialActivityCounterFinder() {
652                    return socialActivityCounterFinder;
653            }
654    
655            /**
656             * Sets the social activity counter finder.
657             *
658             * @param socialActivityCounterFinder the social activity counter finder
659             */
660            public void setSocialActivityCounterFinder(
661                    SocialActivityCounterFinder socialActivityCounterFinder) {
662                    this.socialActivityCounterFinder = socialActivityCounterFinder;
663            }
664    
665            /**
666             * Returns the trash entry local service.
667             *
668             * @return the trash entry local service
669             */
670            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
671                    return trashEntryLocalService;
672            }
673    
674            /**
675             * Sets the trash entry local service.
676             *
677             * @param trashEntryLocalService the trash entry local service
678             */
679            public void setTrashEntryLocalService(
680                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
681                    this.trashEntryLocalService = trashEntryLocalService;
682            }
683    
684            /**
685             * Returns the trash entry remote service.
686             *
687             * @return the trash entry remote service
688             */
689            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
690                    return trashEntryService;
691            }
692    
693            /**
694             * Sets the trash entry remote service.
695             *
696             * @param trashEntryService the trash entry remote service
697             */
698            public void setTrashEntryService(
699                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
700                    this.trashEntryService = trashEntryService;
701            }
702    
703            /**
704             * Returns the trash entry persistence.
705             *
706             * @return the trash entry persistence
707             */
708            public TrashEntryPersistence getTrashEntryPersistence() {
709                    return trashEntryPersistence;
710            }
711    
712            /**
713             * Sets the trash entry persistence.
714             *
715             * @param trashEntryPersistence the trash entry persistence
716             */
717            public void setTrashEntryPersistence(
718                    TrashEntryPersistence trashEntryPersistence) {
719                    this.trashEntryPersistence = trashEntryPersistence;
720            }
721    
722            public void afterPropertiesSet() {
723            }
724    
725            public void destroy() {
726            }
727    
728            /**
729             * Returns the Spring bean ID for this bean.
730             *
731             * @return the Spring bean ID for this bean
732             */
733            @Override
734            public String getBeanIdentifier() {
735                    return _beanIdentifier;
736            }
737    
738            /**
739             * Sets the Spring bean ID for this bean.
740             *
741             * @param beanIdentifier the Spring bean ID for this bean
742             */
743            @Override
744            public void setBeanIdentifier(String beanIdentifier) {
745                    _beanIdentifier = beanIdentifier;
746            }
747    
748            protected Class<?> getModelClass() {
749                    return WikiNode.class;
750            }
751    
752            protected String getModelClassName() {
753                    return WikiNode.class.getName();
754            }
755    
756            /**
757             * Performs an SQL query.
758             *
759             * @param sql the sql query
760             */
761            protected void runSQL(String sql) throws SystemException {
762                    try {
763                            DataSource dataSource = wikiNodePersistence.getDataSource();
764    
765                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
766                                            sql, new int[0]);
767    
768                            sqlUpdate.update();
769                    }
770                    catch (Exception e) {
771                            throw new SystemException(e);
772                    }
773            }
774    
775            @BeanReference(type = com.liferay.portlet.wiki.service.WikiNodeLocalService.class)
776            protected com.liferay.portlet.wiki.service.WikiNodeLocalService wikiNodeLocalService;
777            @BeanReference(type = com.liferay.portlet.wiki.service.WikiNodeService.class)
778            protected com.liferay.portlet.wiki.service.WikiNodeService wikiNodeService;
779            @BeanReference(type = WikiNodePersistence.class)
780            protected WikiNodePersistence wikiNodePersistence;
781            @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageLocalService.class)
782            protected com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService;
783            @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageService.class)
784            protected com.liferay.portlet.wiki.service.WikiPageService wikiPageService;
785            @BeanReference(type = WikiPagePersistence.class)
786            protected WikiPagePersistence wikiPagePersistence;
787            @BeanReference(type = WikiPageFinder.class)
788            protected WikiPageFinder wikiPageFinder;
789            @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageResourceLocalService.class)
790            protected com.liferay.portlet.wiki.service.WikiPageResourceLocalService wikiPageResourceLocalService;
791            @BeanReference(type = WikiPageResourcePersistence.class)
792            protected WikiPageResourcePersistence wikiPageResourcePersistence;
793            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
794            protected com.liferay.counter.service.CounterLocalService counterLocalService;
795            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
796            protected com.liferay.portal.service.GroupLocalService groupLocalService;
797            @BeanReference(type = com.liferay.portal.service.GroupService.class)
798            protected com.liferay.portal.service.GroupService groupService;
799            @BeanReference(type = GroupPersistence.class)
800            protected GroupPersistence groupPersistence;
801            @BeanReference(type = GroupFinder.class)
802            protected GroupFinder groupFinder;
803            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
804            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
805            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
806            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
807            @BeanReference(type = SubscriptionPersistence.class)
808            protected SubscriptionPersistence subscriptionPersistence;
809            @BeanReference(type = com.liferay.portal.service.SystemEventLocalService.class)
810            protected com.liferay.portal.service.SystemEventLocalService systemEventLocalService;
811            @BeanReference(type = SystemEventPersistence.class)
812            protected SystemEventPersistence systemEventPersistence;
813            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
814            protected com.liferay.portal.service.UserLocalService userLocalService;
815            @BeanReference(type = com.liferay.portal.service.UserService.class)
816            protected com.liferay.portal.service.UserService userService;
817            @BeanReference(type = UserPersistence.class)
818            protected UserPersistence userPersistence;
819            @BeanReference(type = UserFinder.class)
820            protected UserFinder userFinder;
821            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
822            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
823            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
824            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
825            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
826            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
827            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
828            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
829            @BeanReference(type = AssetEntryPersistence.class)
830            protected AssetEntryPersistence assetEntryPersistence;
831            @BeanReference(type = AssetEntryFinder.class)
832            protected AssetEntryFinder assetEntryFinder;
833            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityCounterLocalService.class)
834            protected com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService;
835            @BeanReference(type = SocialActivityCounterPersistence.class)
836            protected SocialActivityCounterPersistence socialActivityCounterPersistence;
837            @BeanReference(type = SocialActivityCounterFinder.class)
838            protected SocialActivityCounterFinder socialActivityCounterFinder;
839            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
840            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
841            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
842            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
843            @BeanReference(type = TrashEntryPersistence.class)
844            protected TrashEntryPersistence trashEntryPersistence;
845            private String _beanIdentifier;
846    }