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.CompanyPersistence;
024    import com.liferay.portal.service.persistence.GroupFinder;
025    import com.liferay.portal.service.persistence.GroupPersistence;
026    import com.liferay.portal.service.persistence.LayoutFinder;
027    import com.liferay.portal.service.persistence.LayoutPersistence;
028    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
029    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
030    import com.liferay.portal.service.persistence.SubscriptionPersistence;
031    import com.liferay.portal.service.persistence.SystemEventPersistence;
032    import com.liferay.portal.service.persistence.UserFinder;
033    import com.liferay.portal.service.persistence.UserPersistence;
034    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
035    
036    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
037    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
038    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
039    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
040    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
041    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
042    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
043    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
044    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
045    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
046    import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
047    import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
048    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
049    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
050    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
051    import com.liferay.portlet.wiki.model.WikiPage;
052    import com.liferay.portlet.wiki.service.WikiPageService;
053    import com.liferay.portlet.wiki.service.persistence.WikiNodePersistence;
054    import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
055    import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
056    import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
057    
058    import javax.sql.DataSource;
059    
060    /**
061     * Provides the base implementation for the wiki page remote service.
062     *
063     * <p>
064     * 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.WikiPageServiceImpl}.
065     * </p>
066     *
067     * @author Brian Wing Shun Chan
068     * @see com.liferay.portlet.wiki.service.impl.WikiPageServiceImpl
069     * @see com.liferay.portlet.wiki.service.WikiPageServiceUtil
070     * @generated
071     */
072    public abstract class WikiPageServiceBaseImpl extends BaseServiceImpl
073            implements WikiPageService, IdentifiableBean {
074            /*
075             * NOTE FOR DEVELOPERS:
076             *
077             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.wiki.service.WikiPageServiceUtil} to access the wiki page remote service.
078             */
079    
080            /**
081             * Returns the wiki node local service.
082             *
083             * @return the wiki node local service
084             */
085            public com.liferay.portlet.wiki.service.WikiNodeLocalService getWikiNodeLocalService() {
086                    return wikiNodeLocalService;
087            }
088    
089            /**
090             * Sets the wiki node local service.
091             *
092             * @param wikiNodeLocalService the wiki node local service
093             */
094            public void setWikiNodeLocalService(
095                    com.liferay.portlet.wiki.service.WikiNodeLocalService wikiNodeLocalService) {
096                    this.wikiNodeLocalService = wikiNodeLocalService;
097            }
098    
099            /**
100             * Returns the wiki node remote service.
101             *
102             * @return the wiki node remote service
103             */
104            public com.liferay.portlet.wiki.service.WikiNodeService getWikiNodeService() {
105                    return wikiNodeService;
106            }
107    
108            /**
109             * Sets the wiki node remote service.
110             *
111             * @param wikiNodeService the wiki node remote service
112             */
113            public void setWikiNodeService(
114                    com.liferay.portlet.wiki.service.WikiNodeService wikiNodeService) {
115                    this.wikiNodeService = wikiNodeService;
116            }
117    
118            /**
119             * Returns the wiki node persistence.
120             *
121             * @return the wiki node persistence
122             */
123            public WikiNodePersistence getWikiNodePersistence() {
124                    return wikiNodePersistence;
125            }
126    
127            /**
128             * Sets the wiki node persistence.
129             *
130             * @param wikiNodePersistence the wiki node persistence
131             */
132            public void setWikiNodePersistence(WikiNodePersistence wikiNodePersistence) {
133                    this.wikiNodePersistence = wikiNodePersistence;
134            }
135    
136            /**
137             * Returns the wiki page local service.
138             *
139             * @return the wiki page local service
140             */
141            public com.liferay.portlet.wiki.service.WikiPageLocalService getWikiPageLocalService() {
142                    return wikiPageLocalService;
143            }
144    
145            /**
146             * Sets the wiki page local service.
147             *
148             * @param wikiPageLocalService the wiki page local service
149             */
150            public void setWikiPageLocalService(
151                    com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService) {
152                    this.wikiPageLocalService = wikiPageLocalService;
153            }
154    
155            /**
156             * Returns the wiki page remote service.
157             *
158             * @return the wiki page remote service
159             */
160            public com.liferay.portlet.wiki.service.WikiPageService getWikiPageService() {
161                    return wikiPageService;
162            }
163    
164            /**
165             * Sets the wiki page remote service.
166             *
167             * @param wikiPageService the wiki page remote service
168             */
169            public void setWikiPageService(
170                    com.liferay.portlet.wiki.service.WikiPageService wikiPageService) {
171                    this.wikiPageService = wikiPageService;
172            }
173    
174            /**
175             * Returns the wiki page persistence.
176             *
177             * @return the wiki page persistence
178             */
179            public WikiPagePersistence getWikiPagePersistence() {
180                    return wikiPagePersistence;
181            }
182    
183            /**
184             * Sets the wiki page persistence.
185             *
186             * @param wikiPagePersistence the wiki page persistence
187             */
188            public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
189                    this.wikiPagePersistence = wikiPagePersistence;
190            }
191    
192            /**
193             * Returns the wiki page finder.
194             *
195             * @return the wiki page finder
196             */
197            public WikiPageFinder getWikiPageFinder() {
198                    return wikiPageFinder;
199            }
200    
201            /**
202             * Sets the wiki page finder.
203             *
204             * @param wikiPageFinder the wiki page finder
205             */
206            public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
207                    this.wikiPageFinder = wikiPageFinder;
208            }
209    
210            /**
211             * Returns the wiki page resource local service.
212             *
213             * @return the wiki page resource local service
214             */
215            public com.liferay.portlet.wiki.service.WikiPageResourceLocalService getWikiPageResourceLocalService() {
216                    return wikiPageResourceLocalService;
217            }
218    
219            /**
220             * Sets the wiki page resource local service.
221             *
222             * @param wikiPageResourceLocalService the wiki page resource local service
223             */
224            public void setWikiPageResourceLocalService(
225                    com.liferay.portlet.wiki.service.WikiPageResourceLocalService wikiPageResourceLocalService) {
226                    this.wikiPageResourceLocalService = wikiPageResourceLocalService;
227            }
228    
229            /**
230             * Returns the wiki page resource persistence.
231             *
232             * @return the wiki page resource persistence
233             */
234            public WikiPageResourcePersistence getWikiPageResourcePersistence() {
235                    return wikiPageResourcePersistence;
236            }
237    
238            /**
239             * Sets the wiki page resource persistence.
240             *
241             * @param wikiPageResourcePersistence the wiki page resource persistence
242             */
243            public void setWikiPageResourcePersistence(
244                    WikiPageResourcePersistence wikiPageResourcePersistence) {
245                    this.wikiPageResourcePersistence = wikiPageResourcePersistence;
246            }
247    
248            /**
249             * Returns the counter local service.
250             *
251             * @return the counter local service
252             */
253            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
254                    return counterLocalService;
255            }
256    
257            /**
258             * Sets the counter local service.
259             *
260             * @param counterLocalService the counter local service
261             */
262            public void setCounterLocalService(
263                    com.liferay.counter.service.CounterLocalService counterLocalService) {
264                    this.counterLocalService = counterLocalService;
265            }
266    
267            /**
268             * Returns the company local service.
269             *
270             * @return the company local service
271             */
272            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
273                    return companyLocalService;
274            }
275    
276            /**
277             * Sets the company local service.
278             *
279             * @param companyLocalService the company local service
280             */
281            public void setCompanyLocalService(
282                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
283                    this.companyLocalService = companyLocalService;
284            }
285    
286            /**
287             * Returns the company remote service.
288             *
289             * @return the company remote service
290             */
291            public com.liferay.portal.service.CompanyService getCompanyService() {
292                    return companyService;
293            }
294    
295            /**
296             * Sets the company remote service.
297             *
298             * @param companyService the company remote service
299             */
300            public void setCompanyService(
301                    com.liferay.portal.service.CompanyService companyService) {
302                    this.companyService = companyService;
303            }
304    
305            /**
306             * Returns the company persistence.
307             *
308             * @return the company persistence
309             */
310            public CompanyPersistence getCompanyPersistence() {
311                    return companyPersistence;
312            }
313    
314            /**
315             * Sets the company persistence.
316             *
317             * @param companyPersistence the company persistence
318             */
319            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
320                    this.companyPersistence = companyPersistence;
321            }
322    
323            /**
324             * Returns the group local service.
325             *
326             * @return the group local service
327             */
328            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
329                    return groupLocalService;
330            }
331    
332            /**
333             * Sets the group local service.
334             *
335             * @param groupLocalService the group local service
336             */
337            public void setGroupLocalService(
338                    com.liferay.portal.service.GroupLocalService groupLocalService) {
339                    this.groupLocalService = groupLocalService;
340            }
341    
342            /**
343             * Returns the group remote service.
344             *
345             * @return the group remote service
346             */
347            public com.liferay.portal.service.GroupService getGroupService() {
348                    return groupService;
349            }
350    
351            /**
352             * Sets the group remote service.
353             *
354             * @param groupService the group remote service
355             */
356            public void setGroupService(
357                    com.liferay.portal.service.GroupService groupService) {
358                    this.groupService = groupService;
359            }
360    
361            /**
362             * Returns the group persistence.
363             *
364             * @return the group persistence
365             */
366            public GroupPersistence getGroupPersistence() {
367                    return groupPersistence;
368            }
369    
370            /**
371             * Sets the group persistence.
372             *
373             * @param groupPersistence the group persistence
374             */
375            public void setGroupPersistence(GroupPersistence groupPersistence) {
376                    this.groupPersistence = groupPersistence;
377            }
378    
379            /**
380             * Returns the group finder.
381             *
382             * @return the group finder
383             */
384            public GroupFinder getGroupFinder() {
385                    return groupFinder;
386            }
387    
388            /**
389             * Sets the group finder.
390             *
391             * @param groupFinder the group finder
392             */
393            public void setGroupFinder(GroupFinder groupFinder) {
394                    this.groupFinder = groupFinder;
395            }
396    
397            /**
398             * Returns the layout local service.
399             *
400             * @return the layout local service
401             */
402            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
403                    return layoutLocalService;
404            }
405    
406            /**
407             * Sets the layout local service.
408             *
409             * @param layoutLocalService the layout local service
410             */
411            public void setLayoutLocalService(
412                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
413                    this.layoutLocalService = layoutLocalService;
414            }
415    
416            /**
417             * Returns the layout remote service.
418             *
419             * @return the layout remote service
420             */
421            public com.liferay.portal.service.LayoutService getLayoutService() {
422                    return layoutService;
423            }
424    
425            /**
426             * Sets the layout remote service.
427             *
428             * @param layoutService the layout remote service
429             */
430            public void setLayoutService(
431                    com.liferay.portal.service.LayoutService layoutService) {
432                    this.layoutService = layoutService;
433            }
434    
435            /**
436             * Returns the layout persistence.
437             *
438             * @return the layout persistence
439             */
440            public LayoutPersistence getLayoutPersistence() {
441                    return layoutPersistence;
442            }
443    
444            /**
445             * Sets the layout persistence.
446             *
447             * @param layoutPersistence the layout persistence
448             */
449            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
450                    this.layoutPersistence = layoutPersistence;
451            }
452    
453            /**
454             * Returns the layout finder.
455             *
456             * @return the layout finder
457             */
458            public LayoutFinder getLayoutFinder() {
459                    return layoutFinder;
460            }
461    
462            /**
463             * Sets the layout finder.
464             *
465             * @param layoutFinder the layout finder
466             */
467            public void setLayoutFinder(LayoutFinder layoutFinder) {
468                    this.layoutFinder = layoutFinder;
469            }
470    
471            /**
472             * Returns the portlet preferences local service.
473             *
474             * @return the portlet preferences local service
475             */
476            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
477                    return portletPreferencesLocalService;
478            }
479    
480            /**
481             * Sets the portlet preferences local service.
482             *
483             * @param portletPreferencesLocalService the portlet preferences local service
484             */
485            public void setPortletPreferencesLocalService(
486                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
487                    this.portletPreferencesLocalService = portletPreferencesLocalService;
488            }
489    
490            /**
491             * Returns the portlet preferences remote service.
492             *
493             * @return the portlet preferences remote service
494             */
495            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
496                    return portletPreferencesService;
497            }
498    
499            /**
500             * Sets the portlet preferences remote service.
501             *
502             * @param portletPreferencesService the portlet preferences remote service
503             */
504            public void setPortletPreferencesService(
505                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
506                    this.portletPreferencesService = portletPreferencesService;
507            }
508    
509            /**
510             * Returns the portlet preferences persistence.
511             *
512             * @return the portlet preferences persistence
513             */
514            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
515                    return portletPreferencesPersistence;
516            }
517    
518            /**
519             * Sets the portlet preferences persistence.
520             *
521             * @param portletPreferencesPersistence the portlet preferences persistence
522             */
523            public void setPortletPreferencesPersistence(
524                    PortletPreferencesPersistence portletPreferencesPersistence) {
525                    this.portletPreferencesPersistence = portletPreferencesPersistence;
526            }
527    
528            /**
529             * Returns the portlet preferences finder.
530             *
531             * @return the portlet preferences finder
532             */
533            public PortletPreferencesFinder getPortletPreferencesFinder() {
534                    return portletPreferencesFinder;
535            }
536    
537            /**
538             * Sets the portlet preferences finder.
539             *
540             * @param portletPreferencesFinder the portlet preferences finder
541             */
542            public void setPortletPreferencesFinder(
543                    PortletPreferencesFinder portletPreferencesFinder) {
544                    this.portletPreferencesFinder = portletPreferencesFinder;
545            }
546    
547            /**
548             * Returns the resource local service.
549             *
550             * @return the resource local service
551             */
552            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
553                    return resourceLocalService;
554            }
555    
556            /**
557             * Sets the resource local service.
558             *
559             * @param resourceLocalService the resource local service
560             */
561            public void setResourceLocalService(
562                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
563                    this.resourceLocalService = resourceLocalService;
564            }
565    
566            /**
567             * Returns the subscription local service.
568             *
569             * @return the subscription local service
570             */
571            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
572                    return subscriptionLocalService;
573            }
574    
575            /**
576             * Sets the subscription local service.
577             *
578             * @param subscriptionLocalService the subscription local service
579             */
580            public void setSubscriptionLocalService(
581                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
582                    this.subscriptionLocalService = subscriptionLocalService;
583            }
584    
585            /**
586             * Returns the subscription persistence.
587             *
588             * @return the subscription persistence
589             */
590            public SubscriptionPersistence getSubscriptionPersistence() {
591                    return subscriptionPersistence;
592            }
593    
594            /**
595             * Sets the subscription persistence.
596             *
597             * @param subscriptionPersistence the subscription persistence
598             */
599            public void setSubscriptionPersistence(
600                    SubscriptionPersistence subscriptionPersistence) {
601                    this.subscriptionPersistence = subscriptionPersistence;
602            }
603    
604            /**
605             * Returns the system event local service.
606             *
607             * @return the system event local service
608             */
609            public com.liferay.portal.service.SystemEventLocalService getSystemEventLocalService() {
610                    return systemEventLocalService;
611            }
612    
613            /**
614             * Sets the system event local service.
615             *
616             * @param systemEventLocalService the system event local service
617             */
618            public void setSystemEventLocalService(
619                    com.liferay.portal.service.SystemEventLocalService systemEventLocalService) {
620                    this.systemEventLocalService = systemEventLocalService;
621            }
622    
623            /**
624             * Returns the system event persistence.
625             *
626             * @return the system event persistence
627             */
628            public SystemEventPersistence getSystemEventPersistence() {
629                    return systemEventPersistence;
630            }
631    
632            /**
633             * Sets the system event persistence.
634             *
635             * @param systemEventPersistence the system event persistence
636             */
637            public void setSystemEventPersistence(
638                    SystemEventPersistence systemEventPersistence) {
639                    this.systemEventPersistence = systemEventPersistence;
640            }
641    
642            /**
643             * Returns the user local service.
644             *
645             * @return the user local service
646             */
647            public com.liferay.portal.service.UserLocalService getUserLocalService() {
648                    return userLocalService;
649            }
650    
651            /**
652             * Sets the user local service.
653             *
654             * @param userLocalService the user local service
655             */
656            public void setUserLocalService(
657                    com.liferay.portal.service.UserLocalService userLocalService) {
658                    this.userLocalService = userLocalService;
659            }
660    
661            /**
662             * Returns the user remote service.
663             *
664             * @return the user remote service
665             */
666            public com.liferay.portal.service.UserService getUserService() {
667                    return userService;
668            }
669    
670            /**
671             * Sets the user remote service.
672             *
673             * @param userService the user remote service
674             */
675            public void setUserService(
676                    com.liferay.portal.service.UserService userService) {
677                    this.userService = userService;
678            }
679    
680            /**
681             * Returns the user persistence.
682             *
683             * @return the user persistence
684             */
685            public UserPersistence getUserPersistence() {
686                    return userPersistence;
687            }
688    
689            /**
690             * Sets the user persistence.
691             *
692             * @param userPersistence the user persistence
693             */
694            public void setUserPersistence(UserPersistence userPersistence) {
695                    this.userPersistence = userPersistence;
696            }
697    
698            /**
699             * Returns the user finder.
700             *
701             * @return the user finder
702             */
703            public UserFinder getUserFinder() {
704                    return userFinder;
705            }
706    
707            /**
708             * Sets the user finder.
709             *
710             * @param userFinder the user finder
711             */
712            public void setUserFinder(UserFinder userFinder) {
713                    this.userFinder = userFinder;
714            }
715    
716            /**
717             * Returns the workflow instance link local service.
718             *
719             * @return the workflow instance link local service
720             */
721            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
722                    return workflowInstanceLinkLocalService;
723            }
724    
725            /**
726             * Sets the workflow instance link local service.
727             *
728             * @param workflowInstanceLinkLocalService the workflow instance link local service
729             */
730            public void setWorkflowInstanceLinkLocalService(
731                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
732                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
733            }
734    
735            /**
736             * Returns the workflow instance link persistence.
737             *
738             * @return the workflow instance link persistence
739             */
740            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
741                    return workflowInstanceLinkPersistence;
742            }
743    
744            /**
745             * Sets the workflow instance link persistence.
746             *
747             * @param workflowInstanceLinkPersistence the workflow instance link persistence
748             */
749            public void setWorkflowInstanceLinkPersistence(
750                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
751                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
752            }
753    
754            /**
755             * Returns the asset category local service.
756             *
757             * @return the asset category local service
758             */
759            public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
760                    return assetCategoryLocalService;
761            }
762    
763            /**
764             * Sets the asset category local service.
765             *
766             * @param assetCategoryLocalService the asset category local service
767             */
768            public void setAssetCategoryLocalService(
769                    com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
770                    this.assetCategoryLocalService = assetCategoryLocalService;
771            }
772    
773            /**
774             * Returns the asset category remote service.
775             *
776             * @return the asset category remote service
777             */
778            public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
779                    return assetCategoryService;
780            }
781    
782            /**
783             * Sets the asset category remote service.
784             *
785             * @param assetCategoryService the asset category remote service
786             */
787            public void setAssetCategoryService(
788                    com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
789                    this.assetCategoryService = assetCategoryService;
790            }
791    
792            /**
793             * Returns the asset category persistence.
794             *
795             * @return the asset category persistence
796             */
797            public AssetCategoryPersistence getAssetCategoryPersistence() {
798                    return assetCategoryPersistence;
799            }
800    
801            /**
802             * Sets the asset category persistence.
803             *
804             * @param assetCategoryPersistence the asset category persistence
805             */
806            public void setAssetCategoryPersistence(
807                    AssetCategoryPersistence assetCategoryPersistence) {
808                    this.assetCategoryPersistence = assetCategoryPersistence;
809            }
810    
811            /**
812             * Returns the asset category finder.
813             *
814             * @return the asset category finder
815             */
816            public AssetCategoryFinder getAssetCategoryFinder() {
817                    return assetCategoryFinder;
818            }
819    
820            /**
821             * Sets the asset category finder.
822             *
823             * @param assetCategoryFinder the asset category finder
824             */
825            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
826                    this.assetCategoryFinder = assetCategoryFinder;
827            }
828    
829            /**
830             * Returns the asset entry local service.
831             *
832             * @return the asset entry local service
833             */
834            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
835                    return assetEntryLocalService;
836            }
837    
838            /**
839             * Sets the asset entry local service.
840             *
841             * @param assetEntryLocalService the asset entry local service
842             */
843            public void setAssetEntryLocalService(
844                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
845                    this.assetEntryLocalService = assetEntryLocalService;
846            }
847    
848            /**
849             * Returns the asset entry remote service.
850             *
851             * @return the asset entry remote service
852             */
853            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
854                    return assetEntryService;
855            }
856    
857            /**
858             * Sets the asset entry remote service.
859             *
860             * @param assetEntryService the asset entry remote service
861             */
862            public void setAssetEntryService(
863                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
864                    this.assetEntryService = assetEntryService;
865            }
866    
867            /**
868             * Returns the asset entry persistence.
869             *
870             * @return the asset entry persistence
871             */
872            public AssetEntryPersistence getAssetEntryPersistence() {
873                    return assetEntryPersistence;
874            }
875    
876            /**
877             * Sets the asset entry persistence.
878             *
879             * @param assetEntryPersistence the asset entry persistence
880             */
881            public void setAssetEntryPersistence(
882                    AssetEntryPersistence assetEntryPersistence) {
883                    this.assetEntryPersistence = assetEntryPersistence;
884            }
885    
886            /**
887             * Returns the asset entry finder.
888             *
889             * @return the asset entry finder
890             */
891            public AssetEntryFinder getAssetEntryFinder() {
892                    return assetEntryFinder;
893            }
894    
895            /**
896             * Sets the asset entry finder.
897             *
898             * @param assetEntryFinder the asset entry finder
899             */
900            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
901                    this.assetEntryFinder = assetEntryFinder;
902            }
903    
904            /**
905             * Returns the asset link local service.
906             *
907             * @return the asset link local service
908             */
909            public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
910                    return assetLinkLocalService;
911            }
912    
913            /**
914             * Sets the asset link local service.
915             *
916             * @param assetLinkLocalService the asset link local service
917             */
918            public void setAssetLinkLocalService(
919                    com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
920                    this.assetLinkLocalService = assetLinkLocalService;
921            }
922    
923            /**
924             * Returns the asset link persistence.
925             *
926             * @return the asset link persistence
927             */
928            public AssetLinkPersistence getAssetLinkPersistence() {
929                    return assetLinkPersistence;
930            }
931    
932            /**
933             * Sets the asset link persistence.
934             *
935             * @param assetLinkPersistence the asset link persistence
936             */
937            public void setAssetLinkPersistence(
938                    AssetLinkPersistence assetLinkPersistence) {
939                    this.assetLinkPersistence = assetLinkPersistence;
940            }
941    
942            /**
943             * Returns the asset tag local service.
944             *
945             * @return the asset tag local service
946             */
947            public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
948                    return assetTagLocalService;
949            }
950    
951            /**
952             * Sets the asset tag local service.
953             *
954             * @param assetTagLocalService the asset tag local service
955             */
956            public void setAssetTagLocalService(
957                    com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
958                    this.assetTagLocalService = assetTagLocalService;
959            }
960    
961            /**
962             * Returns the asset tag remote service.
963             *
964             * @return the asset tag remote service
965             */
966            public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
967                    return assetTagService;
968            }
969    
970            /**
971             * Sets the asset tag remote service.
972             *
973             * @param assetTagService the asset tag remote service
974             */
975            public void setAssetTagService(
976                    com.liferay.portlet.asset.service.AssetTagService assetTagService) {
977                    this.assetTagService = assetTagService;
978            }
979    
980            /**
981             * Returns the asset tag persistence.
982             *
983             * @return the asset tag persistence
984             */
985            public AssetTagPersistence getAssetTagPersistence() {
986                    return assetTagPersistence;
987            }
988    
989            /**
990             * Sets the asset tag persistence.
991             *
992             * @param assetTagPersistence the asset tag persistence
993             */
994            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
995                    this.assetTagPersistence = assetTagPersistence;
996            }
997    
998            /**
999             * Returns the asset tag finder.
1000             *
1001             * @return the asset tag finder
1002             */
1003            public AssetTagFinder getAssetTagFinder() {
1004                    return assetTagFinder;
1005            }
1006    
1007            /**
1008             * Sets the asset tag finder.
1009             *
1010             * @param assetTagFinder the asset tag finder
1011             */
1012            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1013                    this.assetTagFinder = assetTagFinder;
1014            }
1015    
1016            /**
1017             * Returns the expando row local service.
1018             *
1019             * @return the expando row local service
1020             */
1021            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1022                    return expandoRowLocalService;
1023            }
1024    
1025            /**
1026             * Sets the expando row local service.
1027             *
1028             * @param expandoRowLocalService the expando row local service
1029             */
1030            public void setExpandoRowLocalService(
1031                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1032                    this.expandoRowLocalService = expandoRowLocalService;
1033            }
1034    
1035            /**
1036             * Returns the expando row persistence.
1037             *
1038             * @return the expando row persistence
1039             */
1040            public ExpandoRowPersistence getExpandoRowPersistence() {
1041                    return expandoRowPersistence;
1042            }
1043    
1044            /**
1045             * Sets the expando row persistence.
1046             *
1047             * @param expandoRowPersistence the expando row persistence
1048             */
1049            public void setExpandoRowPersistence(
1050                    ExpandoRowPersistence expandoRowPersistence) {
1051                    this.expandoRowPersistence = expandoRowPersistence;
1052            }
1053    
1054            /**
1055             * Returns the message-boards message local service.
1056             *
1057             * @return the message-boards message local service
1058             */
1059            public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
1060                    return mbMessageLocalService;
1061            }
1062    
1063            /**
1064             * Sets the message-boards message local service.
1065             *
1066             * @param mbMessageLocalService the message-boards message local service
1067             */
1068            public void setMBMessageLocalService(
1069                    com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
1070                    this.mbMessageLocalService = mbMessageLocalService;
1071            }
1072    
1073            /**
1074             * Returns the message-boards message remote service.
1075             *
1076             * @return the message-boards message remote service
1077             */
1078            public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
1079                    return mbMessageService;
1080            }
1081    
1082            /**
1083             * Sets the message-boards message remote service.
1084             *
1085             * @param mbMessageService the message-boards message remote service
1086             */
1087            public void setMBMessageService(
1088                    com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
1089                    this.mbMessageService = mbMessageService;
1090            }
1091    
1092            /**
1093             * Returns the message-boards message persistence.
1094             *
1095             * @return the message-boards message persistence
1096             */
1097            public MBMessagePersistence getMBMessagePersistence() {
1098                    return mbMessagePersistence;
1099            }
1100    
1101            /**
1102             * Sets the message-boards message persistence.
1103             *
1104             * @param mbMessagePersistence the message-boards message persistence
1105             */
1106            public void setMBMessagePersistence(
1107                    MBMessagePersistence mbMessagePersistence) {
1108                    this.mbMessagePersistence = mbMessagePersistence;
1109            }
1110    
1111            /**
1112             * Returns the message-boards message finder.
1113             *
1114             * @return the message-boards message finder
1115             */
1116            public MBMessageFinder getMBMessageFinder() {
1117                    return mbMessageFinder;
1118            }
1119    
1120            /**
1121             * Sets the message-boards message finder.
1122             *
1123             * @param mbMessageFinder the message-boards message finder
1124             */
1125            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1126                    this.mbMessageFinder = mbMessageFinder;
1127            }
1128    
1129            /**
1130             * Returns the social activity local service.
1131             *
1132             * @return the social activity local service
1133             */
1134            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1135                    return socialActivityLocalService;
1136            }
1137    
1138            /**
1139             * Sets the social activity local service.
1140             *
1141             * @param socialActivityLocalService the social activity local service
1142             */
1143            public void setSocialActivityLocalService(
1144                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1145                    this.socialActivityLocalService = socialActivityLocalService;
1146            }
1147    
1148            /**
1149             * Returns the social activity persistence.
1150             *
1151             * @return the social activity persistence
1152             */
1153            public SocialActivityPersistence getSocialActivityPersistence() {
1154                    return socialActivityPersistence;
1155            }
1156    
1157            /**
1158             * Sets the social activity persistence.
1159             *
1160             * @param socialActivityPersistence the social activity persistence
1161             */
1162            public void setSocialActivityPersistence(
1163                    SocialActivityPersistence socialActivityPersistence) {
1164                    this.socialActivityPersistence = socialActivityPersistence;
1165            }
1166    
1167            /**
1168             * Returns the social activity finder.
1169             *
1170             * @return the social activity finder
1171             */
1172            public SocialActivityFinder getSocialActivityFinder() {
1173                    return socialActivityFinder;
1174            }
1175    
1176            /**
1177             * Sets the social activity finder.
1178             *
1179             * @param socialActivityFinder the social activity finder
1180             */
1181            public void setSocialActivityFinder(
1182                    SocialActivityFinder socialActivityFinder) {
1183                    this.socialActivityFinder = socialActivityFinder;
1184            }
1185    
1186            /**
1187             * Returns the social activity counter local service.
1188             *
1189             * @return the social activity counter local service
1190             */
1191            public com.liferay.portlet.social.service.SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1192                    return socialActivityCounterLocalService;
1193            }
1194    
1195            /**
1196             * Sets the social activity counter local service.
1197             *
1198             * @param socialActivityCounterLocalService the social activity counter local service
1199             */
1200            public void setSocialActivityCounterLocalService(
1201                    com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService) {
1202                    this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1203            }
1204    
1205            /**
1206             * Returns the social activity counter persistence.
1207             *
1208             * @return the social activity counter persistence
1209             */
1210            public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1211                    return socialActivityCounterPersistence;
1212            }
1213    
1214            /**
1215             * Sets the social activity counter persistence.
1216             *
1217             * @param socialActivityCounterPersistence the social activity counter persistence
1218             */
1219            public void setSocialActivityCounterPersistence(
1220                    SocialActivityCounterPersistence socialActivityCounterPersistence) {
1221                    this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1222            }
1223    
1224            /**
1225             * Returns the social activity counter finder.
1226             *
1227             * @return the social activity counter finder
1228             */
1229            public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1230                    return socialActivityCounterFinder;
1231            }
1232    
1233            /**
1234             * Sets the social activity counter finder.
1235             *
1236             * @param socialActivityCounterFinder the social activity counter finder
1237             */
1238            public void setSocialActivityCounterFinder(
1239                    SocialActivityCounterFinder socialActivityCounterFinder) {
1240                    this.socialActivityCounterFinder = socialActivityCounterFinder;
1241            }
1242    
1243            /**
1244             * Returns the trash entry local service.
1245             *
1246             * @return the trash entry local service
1247             */
1248            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1249                    return trashEntryLocalService;
1250            }
1251    
1252            /**
1253             * Sets the trash entry local service.
1254             *
1255             * @param trashEntryLocalService the trash entry local service
1256             */
1257            public void setTrashEntryLocalService(
1258                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1259                    this.trashEntryLocalService = trashEntryLocalService;
1260            }
1261    
1262            /**
1263             * Returns the trash entry remote service.
1264             *
1265             * @return the trash entry remote service
1266             */
1267            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1268                    return trashEntryService;
1269            }
1270    
1271            /**
1272             * Sets the trash entry remote service.
1273             *
1274             * @param trashEntryService the trash entry remote service
1275             */
1276            public void setTrashEntryService(
1277                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1278                    this.trashEntryService = trashEntryService;
1279            }
1280    
1281            /**
1282             * Returns the trash entry persistence.
1283             *
1284             * @return the trash entry persistence
1285             */
1286            public TrashEntryPersistence getTrashEntryPersistence() {
1287                    return trashEntryPersistence;
1288            }
1289    
1290            /**
1291             * Sets the trash entry persistence.
1292             *
1293             * @param trashEntryPersistence the trash entry persistence
1294             */
1295            public void setTrashEntryPersistence(
1296                    TrashEntryPersistence trashEntryPersistence) {
1297                    this.trashEntryPersistence = trashEntryPersistence;
1298            }
1299    
1300            public void afterPropertiesSet() {
1301            }
1302    
1303            public void destroy() {
1304            }
1305    
1306            /**
1307             * Returns the Spring bean ID for this bean.
1308             *
1309             * @return the Spring bean ID for this bean
1310             */
1311            @Override
1312            public String getBeanIdentifier() {
1313                    return _beanIdentifier;
1314            }
1315    
1316            /**
1317             * Sets the Spring bean ID for this bean.
1318             *
1319             * @param beanIdentifier the Spring bean ID for this bean
1320             */
1321            @Override
1322            public void setBeanIdentifier(String beanIdentifier) {
1323                    _beanIdentifier = beanIdentifier;
1324            }
1325    
1326            protected Class<?> getModelClass() {
1327                    return WikiPage.class;
1328            }
1329    
1330            protected String getModelClassName() {
1331                    return WikiPage.class.getName();
1332            }
1333    
1334            /**
1335             * Performs an SQL query.
1336             *
1337             * @param sql the sql query
1338             */
1339            protected void runSQL(String sql) throws SystemException {
1340                    try {
1341                            DataSource dataSource = wikiPagePersistence.getDataSource();
1342    
1343                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1344                                            sql, new int[0]);
1345    
1346                            sqlUpdate.update();
1347                    }
1348                    catch (Exception e) {
1349                            throw new SystemException(e);
1350                    }
1351            }
1352    
1353            @BeanReference(type = com.liferay.portlet.wiki.service.WikiNodeLocalService.class)
1354            protected com.liferay.portlet.wiki.service.WikiNodeLocalService wikiNodeLocalService;
1355            @BeanReference(type = com.liferay.portlet.wiki.service.WikiNodeService.class)
1356            protected com.liferay.portlet.wiki.service.WikiNodeService wikiNodeService;
1357            @BeanReference(type = WikiNodePersistence.class)
1358            protected WikiNodePersistence wikiNodePersistence;
1359            @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageLocalService.class)
1360            protected com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService;
1361            @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageService.class)
1362            protected com.liferay.portlet.wiki.service.WikiPageService wikiPageService;
1363            @BeanReference(type = WikiPagePersistence.class)
1364            protected WikiPagePersistence wikiPagePersistence;
1365            @BeanReference(type = WikiPageFinder.class)
1366            protected WikiPageFinder wikiPageFinder;
1367            @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageResourceLocalService.class)
1368            protected com.liferay.portlet.wiki.service.WikiPageResourceLocalService wikiPageResourceLocalService;
1369            @BeanReference(type = WikiPageResourcePersistence.class)
1370            protected WikiPageResourcePersistence wikiPageResourcePersistence;
1371            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1372            protected com.liferay.counter.service.CounterLocalService counterLocalService;
1373            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1374            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1375            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1376            protected com.liferay.portal.service.CompanyService companyService;
1377            @BeanReference(type = CompanyPersistence.class)
1378            protected CompanyPersistence companyPersistence;
1379            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1380            protected com.liferay.portal.service.GroupLocalService groupLocalService;
1381            @BeanReference(type = com.liferay.portal.service.GroupService.class)
1382            protected com.liferay.portal.service.GroupService groupService;
1383            @BeanReference(type = GroupPersistence.class)
1384            protected GroupPersistence groupPersistence;
1385            @BeanReference(type = GroupFinder.class)
1386            protected GroupFinder groupFinder;
1387            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
1388            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
1389            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
1390            protected com.liferay.portal.service.LayoutService layoutService;
1391            @BeanReference(type = LayoutPersistence.class)
1392            protected LayoutPersistence layoutPersistence;
1393            @BeanReference(type = LayoutFinder.class)
1394            protected LayoutFinder layoutFinder;
1395            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1396            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1397            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1398            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1399            @BeanReference(type = PortletPreferencesPersistence.class)
1400            protected PortletPreferencesPersistence portletPreferencesPersistence;
1401            @BeanReference(type = PortletPreferencesFinder.class)
1402            protected PortletPreferencesFinder portletPreferencesFinder;
1403            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1404            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1405            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1406            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1407            @BeanReference(type = SubscriptionPersistence.class)
1408            protected SubscriptionPersistence subscriptionPersistence;
1409            @BeanReference(type = com.liferay.portal.service.SystemEventLocalService.class)
1410            protected com.liferay.portal.service.SystemEventLocalService systemEventLocalService;
1411            @BeanReference(type = SystemEventPersistence.class)
1412            protected SystemEventPersistence systemEventPersistence;
1413            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1414            protected com.liferay.portal.service.UserLocalService userLocalService;
1415            @BeanReference(type = com.liferay.portal.service.UserService.class)
1416            protected com.liferay.portal.service.UserService userService;
1417            @BeanReference(type = UserPersistence.class)
1418            protected UserPersistence userPersistence;
1419            @BeanReference(type = UserFinder.class)
1420            protected UserFinder userFinder;
1421            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1422            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1423            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1424            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1425            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
1426            protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
1427            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
1428            protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
1429            @BeanReference(type = AssetCategoryPersistence.class)
1430            protected AssetCategoryPersistence assetCategoryPersistence;
1431            @BeanReference(type = AssetCategoryFinder.class)
1432            protected AssetCategoryFinder assetCategoryFinder;
1433            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1434            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1435            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1436            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1437            @BeanReference(type = AssetEntryPersistence.class)
1438            protected AssetEntryPersistence assetEntryPersistence;
1439            @BeanReference(type = AssetEntryFinder.class)
1440            protected AssetEntryFinder assetEntryFinder;
1441            @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1442            protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1443            @BeanReference(type = AssetLinkPersistence.class)
1444            protected AssetLinkPersistence assetLinkPersistence;
1445            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1446            protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1447            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1448            protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1449            @BeanReference(type = AssetTagPersistence.class)
1450            protected AssetTagPersistence assetTagPersistence;
1451            @BeanReference(type = AssetTagFinder.class)
1452            protected AssetTagFinder assetTagFinder;
1453            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1454            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1455            @BeanReference(type = ExpandoRowPersistence.class)
1456            protected ExpandoRowPersistence expandoRowPersistence;
1457            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1458            protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1459            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1460            protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1461            @BeanReference(type = MBMessagePersistence.class)
1462            protected MBMessagePersistence mbMessagePersistence;
1463            @BeanReference(type = MBMessageFinder.class)
1464            protected MBMessageFinder mbMessageFinder;
1465            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1466            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1467            @BeanReference(type = SocialActivityPersistence.class)
1468            protected SocialActivityPersistence socialActivityPersistence;
1469            @BeanReference(type = SocialActivityFinder.class)
1470            protected SocialActivityFinder socialActivityFinder;
1471            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityCounterLocalService.class)
1472            protected com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService;
1473            @BeanReference(type = SocialActivityCounterPersistence.class)
1474            protected SocialActivityCounterPersistence socialActivityCounterPersistence;
1475            @BeanReference(type = SocialActivityCounterFinder.class)
1476            protected SocialActivityCounterFinder socialActivityCounterFinder;
1477            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1478            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1479            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1480            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1481            @BeanReference(type = TrashEntryPersistence.class)
1482            protected TrashEntryPersistence trashEntryPersistence;
1483            private String _beanIdentifier;
1484    }