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