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