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.documentlibrary.service.base;
016    
017    import com.liferay.portal.kernel.bean.BeanReference;
018    import com.liferay.portal.kernel.bean.IdentifiableBean;
019    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021    import com.liferay.portal.kernel.exception.SystemException;
022    import com.liferay.portal.service.BaseServiceImpl;
023    import com.liferay.portal.service.persistence.GroupFinder;
024    import com.liferay.portal.service.persistence.GroupPersistence;
025    import com.liferay.portal.service.persistence.ImagePersistence;
026    import com.liferay.portal.service.persistence.LockFinder;
027    import com.liferay.portal.service.persistence.LockPersistence;
028    import com.liferay.portal.service.persistence.RepositoryPersistence;
029    import com.liferay.portal.service.persistence.UserFinder;
030    import com.liferay.portal.service.persistence.UserPersistence;
031    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
032    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
033    
034    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
035    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
036    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
037    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
038    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
039    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
040    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
041    import com.liferay.portlet.documentlibrary.model.DLFileEntry;
042    import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
043    import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
044    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
045    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
046    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
047    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
048    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
049    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
050    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
051    import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
052    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
053    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
054    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
055    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
056    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
057    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
058    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
059    import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
060    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
061    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
062    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
063    
064    import javax.sql.DataSource;
065    
066    /**
067     * Provides the base implementation for the document library file entry remote service.
068     *
069     * <p>
070     * 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.documentlibrary.service.impl.DLFileEntryServiceImpl}.
071     * </p>
072     *
073     * @author Brian Wing Shun Chan
074     * @see com.liferay.portlet.documentlibrary.service.impl.DLFileEntryServiceImpl
075     * @see com.liferay.portlet.documentlibrary.service.DLFileEntryServiceUtil
076     * @generated
077     */
078    public abstract class DLFileEntryServiceBaseImpl extends BaseServiceImpl
079            implements DLFileEntryService, IdentifiableBean {
080            /*
081             * NOTE FOR DEVELOPERS:
082             *
083             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLFileEntryServiceUtil} to access the document library file entry remote service.
084             */
085    
086            /**
087             * Returns the d l app local service.
088             *
089             * @return the d l app local service
090             */
091            public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
092                    return dlAppLocalService;
093            }
094    
095            /**
096             * Sets the d l app local service.
097             *
098             * @param dlAppLocalService the d l app local service
099             */
100            public void setDLAppLocalService(
101                    com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
102                    this.dlAppLocalService = dlAppLocalService;
103            }
104    
105            /**
106             * Returns the d l app remote service.
107             *
108             * @return the d l app remote service
109             */
110            public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
111                    return dlAppService;
112            }
113    
114            /**
115             * Sets the d l app remote service.
116             *
117             * @param dlAppService the d l app remote service
118             */
119            public void setDLAppService(
120                    com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
121                    this.dlAppService = dlAppService;
122            }
123    
124            /**
125             * Returns the d l app helper local service.
126             *
127             * @return the d l app helper local service
128             */
129            public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
130                    return dlAppHelperLocalService;
131            }
132    
133            /**
134             * Sets the d l app helper local service.
135             *
136             * @param dlAppHelperLocalService the d l app helper local service
137             */
138            public void setDLAppHelperLocalService(
139                    com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
140                    this.dlAppHelperLocalService = dlAppHelperLocalService;
141            }
142    
143            /**
144             * Returns the document library content local service.
145             *
146             * @return the document library content local service
147             */
148            public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
149                    return dlContentLocalService;
150            }
151    
152            /**
153             * Sets the document library content local service.
154             *
155             * @param dlContentLocalService the document library content local service
156             */
157            public void setDLContentLocalService(
158                    com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
159                    this.dlContentLocalService = dlContentLocalService;
160            }
161    
162            /**
163             * Returns the document library content persistence.
164             *
165             * @return the document library content persistence
166             */
167            public DLContentPersistence getDLContentPersistence() {
168                    return dlContentPersistence;
169            }
170    
171            /**
172             * Sets the document library content persistence.
173             *
174             * @param dlContentPersistence the document library content persistence
175             */
176            public void setDLContentPersistence(
177                    DLContentPersistence dlContentPersistence) {
178                    this.dlContentPersistence = dlContentPersistence;
179            }
180    
181            /**
182             * Returns the document library file entry local service.
183             *
184             * @return the document library file entry local service
185             */
186            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
187                    return dlFileEntryLocalService;
188            }
189    
190            /**
191             * Sets the document library file entry local service.
192             *
193             * @param dlFileEntryLocalService the document library file entry local service
194             */
195            public void setDLFileEntryLocalService(
196                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
197                    this.dlFileEntryLocalService = dlFileEntryLocalService;
198            }
199    
200            /**
201             * Returns the document library file entry remote service.
202             *
203             * @return the document library file entry remote service
204             */
205            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
206                    return dlFileEntryService;
207            }
208    
209            /**
210             * Sets the document library file entry remote service.
211             *
212             * @param dlFileEntryService the document library file entry remote service
213             */
214            public void setDLFileEntryService(
215                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
216                    this.dlFileEntryService = dlFileEntryService;
217            }
218    
219            /**
220             * Returns the document library file entry persistence.
221             *
222             * @return the document library file entry persistence
223             */
224            public DLFileEntryPersistence getDLFileEntryPersistence() {
225                    return dlFileEntryPersistence;
226            }
227    
228            /**
229             * Sets the document library file entry persistence.
230             *
231             * @param dlFileEntryPersistence the document library file entry persistence
232             */
233            public void setDLFileEntryPersistence(
234                    DLFileEntryPersistence dlFileEntryPersistence) {
235                    this.dlFileEntryPersistence = dlFileEntryPersistence;
236            }
237    
238            /**
239             * Returns the document library file entry finder.
240             *
241             * @return the document library file entry finder
242             */
243            public DLFileEntryFinder getDLFileEntryFinder() {
244                    return dlFileEntryFinder;
245            }
246    
247            /**
248             * Sets the document library file entry finder.
249             *
250             * @param dlFileEntryFinder the document library file entry finder
251             */
252            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
253                    this.dlFileEntryFinder = dlFileEntryFinder;
254            }
255    
256            /**
257             * Returns the document library file entry metadata local service.
258             *
259             * @return the document library file entry metadata local service
260             */
261            public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
262                    return dlFileEntryMetadataLocalService;
263            }
264    
265            /**
266             * Sets the document library file entry metadata local service.
267             *
268             * @param dlFileEntryMetadataLocalService the document library file entry metadata local service
269             */
270            public void setDLFileEntryMetadataLocalService(
271                    com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
272                    this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
273            }
274    
275            /**
276             * Returns the document library file entry metadata persistence.
277             *
278             * @return the document library file entry metadata persistence
279             */
280            public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
281                    return dlFileEntryMetadataPersistence;
282            }
283    
284            /**
285             * Sets the document library file entry metadata persistence.
286             *
287             * @param dlFileEntryMetadataPersistence the document library file entry metadata persistence
288             */
289            public void setDLFileEntryMetadataPersistence(
290                    DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
291                    this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
292            }
293    
294            /**
295             * Returns the document library file entry type local service.
296             *
297             * @return the document library file entry type local service
298             */
299            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
300                    return dlFileEntryTypeLocalService;
301            }
302    
303            /**
304             * Sets the document library file entry type local service.
305             *
306             * @param dlFileEntryTypeLocalService the document library file entry type local service
307             */
308            public void setDLFileEntryTypeLocalService(
309                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
310                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
311            }
312    
313            /**
314             * Returns the document library file entry type remote service.
315             *
316             * @return the document library file entry type remote service
317             */
318            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
319                    return dlFileEntryTypeService;
320            }
321    
322            /**
323             * Sets the document library file entry type remote service.
324             *
325             * @param dlFileEntryTypeService the document library file entry type remote service
326             */
327            public void setDLFileEntryTypeService(
328                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
329                    this.dlFileEntryTypeService = dlFileEntryTypeService;
330            }
331    
332            /**
333             * Returns the document library file entry type persistence.
334             *
335             * @return the document library file entry type persistence
336             */
337            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
338                    return dlFileEntryTypePersistence;
339            }
340    
341            /**
342             * Sets the document library file entry type persistence.
343             *
344             * @param dlFileEntryTypePersistence the document library file entry type persistence
345             */
346            public void setDLFileEntryTypePersistence(
347                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
348                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
349            }
350    
351            /**
352             * Returns the document library file entry type finder.
353             *
354             * @return the document library file entry type finder
355             */
356            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
357                    return dlFileEntryTypeFinder;
358            }
359    
360            /**
361             * Sets the document library file entry type finder.
362             *
363             * @param dlFileEntryTypeFinder the document library file entry type finder
364             */
365            public void setDLFileEntryTypeFinder(
366                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
367                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
368            }
369    
370            /**
371             * Returns the document library file rank local service.
372             *
373             * @return the document library file rank local service
374             */
375            public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
376                    return dlFileRankLocalService;
377            }
378    
379            /**
380             * Sets the document library file rank local service.
381             *
382             * @param dlFileRankLocalService the document library file rank local service
383             */
384            public void setDLFileRankLocalService(
385                    com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
386                    this.dlFileRankLocalService = dlFileRankLocalService;
387            }
388    
389            /**
390             * Returns the document library file rank persistence.
391             *
392             * @return the document library file rank persistence
393             */
394            public DLFileRankPersistence getDLFileRankPersistence() {
395                    return dlFileRankPersistence;
396            }
397    
398            /**
399             * Sets the document library file rank persistence.
400             *
401             * @param dlFileRankPersistence the document library file rank persistence
402             */
403            public void setDLFileRankPersistence(
404                    DLFileRankPersistence dlFileRankPersistence) {
405                    this.dlFileRankPersistence = dlFileRankPersistence;
406            }
407    
408            /**
409             * Returns the document library file rank finder.
410             *
411             * @return the document library file rank finder
412             */
413            public DLFileRankFinder getDLFileRankFinder() {
414                    return dlFileRankFinder;
415            }
416    
417            /**
418             * Sets the document library file rank finder.
419             *
420             * @param dlFileRankFinder the document library file rank finder
421             */
422            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
423                    this.dlFileRankFinder = dlFileRankFinder;
424            }
425    
426            /**
427             * Returns the document library file shortcut local service.
428             *
429             * @return the document library file shortcut local service
430             */
431            public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
432                    return dlFileShortcutLocalService;
433            }
434    
435            /**
436             * Sets the document library file shortcut local service.
437             *
438             * @param dlFileShortcutLocalService the document library file shortcut local service
439             */
440            public void setDLFileShortcutLocalService(
441                    com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
442                    this.dlFileShortcutLocalService = dlFileShortcutLocalService;
443            }
444    
445            /**
446             * Returns the document library file shortcut remote service.
447             *
448             * @return the document library file shortcut remote service
449             */
450            public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
451                    return dlFileShortcutService;
452            }
453    
454            /**
455             * Sets the document library file shortcut remote service.
456             *
457             * @param dlFileShortcutService the document library file shortcut remote service
458             */
459            public void setDLFileShortcutService(
460                    com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
461                    this.dlFileShortcutService = dlFileShortcutService;
462            }
463    
464            /**
465             * Returns the document library file shortcut persistence.
466             *
467             * @return the document library file shortcut persistence
468             */
469            public DLFileShortcutPersistence getDLFileShortcutPersistence() {
470                    return dlFileShortcutPersistence;
471            }
472    
473            /**
474             * Sets the document library file shortcut persistence.
475             *
476             * @param dlFileShortcutPersistence the document library file shortcut persistence
477             */
478            public void setDLFileShortcutPersistence(
479                    DLFileShortcutPersistence dlFileShortcutPersistence) {
480                    this.dlFileShortcutPersistence = dlFileShortcutPersistence;
481            }
482    
483            /**
484             * Returns the document library file version local service.
485             *
486             * @return the document library file version local service
487             */
488            public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
489                    return dlFileVersionLocalService;
490            }
491    
492            /**
493             * Sets the document library file version local service.
494             *
495             * @param dlFileVersionLocalService the document library file version local service
496             */
497            public void setDLFileVersionLocalService(
498                    com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
499                    this.dlFileVersionLocalService = dlFileVersionLocalService;
500            }
501    
502            /**
503             * Returns the document library file version remote service.
504             *
505             * @return the document library file version remote service
506             */
507            public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
508                    return dlFileVersionService;
509            }
510    
511            /**
512             * Sets the document library file version remote service.
513             *
514             * @param dlFileVersionService the document library file version remote service
515             */
516            public void setDLFileVersionService(
517                    com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
518                    this.dlFileVersionService = dlFileVersionService;
519            }
520    
521            /**
522             * Returns the document library file version persistence.
523             *
524             * @return the document library file version persistence
525             */
526            public DLFileVersionPersistence getDLFileVersionPersistence() {
527                    return dlFileVersionPersistence;
528            }
529    
530            /**
531             * Sets the document library file version persistence.
532             *
533             * @param dlFileVersionPersistence the document library file version persistence
534             */
535            public void setDLFileVersionPersistence(
536                    DLFileVersionPersistence dlFileVersionPersistence) {
537                    this.dlFileVersionPersistence = dlFileVersionPersistence;
538            }
539    
540            /**
541             * Returns the document library folder local service.
542             *
543             * @return the document library folder local service
544             */
545            public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
546                    return dlFolderLocalService;
547            }
548    
549            /**
550             * Sets the document library folder local service.
551             *
552             * @param dlFolderLocalService the document library folder local service
553             */
554            public void setDLFolderLocalService(
555                    com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
556                    this.dlFolderLocalService = dlFolderLocalService;
557            }
558    
559            /**
560             * Returns the document library folder remote service.
561             *
562             * @return the document library folder remote service
563             */
564            public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
565                    return dlFolderService;
566            }
567    
568            /**
569             * Sets the document library folder remote service.
570             *
571             * @param dlFolderService the document library folder remote service
572             */
573            public void setDLFolderService(
574                    com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
575                    this.dlFolderService = dlFolderService;
576            }
577    
578            /**
579             * Returns the document library folder persistence.
580             *
581             * @return the document library folder persistence
582             */
583            public DLFolderPersistence getDLFolderPersistence() {
584                    return dlFolderPersistence;
585            }
586    
587            /**
588             * Sets the document library folder persistence.
589             *
590             * @param dlFolderPersistence the document library folder persistence
591             */
592            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
593                    this.dlFolderPersistence = dlFolderPersistence;
594            }
595    
596            /**
597             * Returns the document library folder finder.
598             *
599             * @return the document library folder finder
600             */
601            public DLFolderFinder getDLFolderFinder() {
602                    return dlFolderFinder;
603            }
604    
605            /**
606             * Sets the document library folder finder.
607             *
608             * @param dlFolderFinder the document library folder finder
609             */
610            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
611                    this.dlFolderFinder = dlFolderFinder;
612            }
613    
614            /**
615             * Returns the d l sync event local service.
616             *
617             * @return the d l sync event local service
618             */
619            public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
620                    return dlSyncEventLocalService;
621            }
622    
623            /**
624             * Sets the d l sync event local service.
625             *
626             * @param dlSyncEventLocalService the d l sync event local service
627             */
628            public void setDLSyncEventLocalService(
629                    com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
630                    this.dlSyncEventLocalService = dlSyncEventLocalService;
631            }
632    
633            /**
634             * Returns the d l sync event persistence.
635             *
636             * @return the d l sync event persistence
637             */
638            public DLSyncEventPersistence getDLSyncEventPersistence() {
639                    return dlSyncEventPersistence;
640            }
641    
642            /**
643             * Sets the d l sync event persistence.
644             *
645             * @param dlSyncEventPersistence the d l sync event persistence
646             */
647            public void setDLSyncEventPersistence(
648                    DLSyncEventPersistence dlSyncEventPersistence) {
649                    this.dlSyncEventPersistence = dlSyncEventPersistence;
650            }
651    
652            /**
653             * Returns the counter local service.
654             *
655             * @return the counter local service
656             */
657            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
658                    return counterLocalService;
659            }
660    
661            /**
662             * Sets the counter local service.
663             *
664             * @param counterLocalService the counter local service
665             */
666            public void setCounterLocalService(
667                    com.liferay.counter.service.CounterLocalService counterLocalService) {
668                    this.counterLocalService = counterLocalService;
669            }
670    
671            /**
672             * Returns the group local service.
673             *
674             * @return the group local service
675             */
676            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
677                    return groupLocalService;
678            }
679    
680            /**
681             * Sets the group local service.
682             *
683             * @param groupLocalService the group local service
684             */
685            public void setGroupLocalService(
686                    com.liferay.portal.service.GroupLocalService groupLocalService) {
687                    this.groupLocalService = groupLocalService;
688            }
689    
690            /**
691             * Returns the group remote service.
692             *
693             * @return the group remote service
694             */
695            public com.liferay.portal.service.GroupService getGroupService() {
696                    return groupService;
697            }
698    
699            /**
700             * Sets the group remote service.
701             *
702             * @param groupService the group remote service
703             */
704            public void setGroupService(
705                    com.liferay.portal.service.GroupService groupService) {
706                    this.groupService = groupService;
707            }
708    
709            /**
710             * Returns the group persistence.
711             *
712             * @return the group persistence
713             */
714            public GroupPersistence getGroupPersistence() {
715                    return groupPersistence;
716            }
717    
718            /**
719             * Sets the group persistence.
720             *
721             * @param groupPersistence the group persistence
722             */
723            public void setGroupPersistence(GroupPersistence groupPersistence) {
724                    this.groupPersistence = groupPersistence;
725            }
726    
727            /**
728             * Returns the group finder.
729             *
730             * @return the group finder
731             */
732            public GroupFinder getGroupFinder() {
733                    return groupFinder;
734            }
735    
736            /**
737             * Sets the group finder.
738             *
739             * @param groupFinder the group finder
740             */
741            public void setGroupFinder(GroupFinder groupFinder) {
742                    this.groupFinder = groupFinder;
743            }
744    
745            /**
746             * Returns the image local service.
747             *
748             * @return the image local service
749             */
750            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
751                    return imageLocalService;
752            }
753    
754            /**
755             * Sets the image local service.
756             *
757             * @param imageLocalService the image local service
758             */
759            public void setImageLocalService(
760                    com.liferay.portal.service.ImageLocalService imageLocalService) {
761                    this.imageLocalService = imageLocalService;
762            }
763    
764            /**
765             * Returns the image remote service.
766             *
767             * @return the image remote service
768             */
769            public com.liferay.portal.service.ImageService getImageService() {
770                    return imageService;
771            }
772    
773            /**
774             * Sets the image remote service.
775             *
776             * @param imageService the image remote service
777             */
778            public void setImageService(
779                    com.liferay.portal.service.ImageService imageService) {
780                    this.imageService = imageService;
781            }
782    
783            /**
784             * Returns the image persistence.
785             *
786             * @return the image persistence
787             */
788            public ImagePersistence getImagePersistence() {
789                    return imagePersistence;
790            }
791    
792            /**
793             * Sets the image persistence.
794             *
795             * @param imagePersistence the image persistence
796             */
797            public void setImagePersistence(ImagePersistence imagePersistence) {
798                    this.imagePersistence = imagePersistence;
799            }
800    
801            /**
802             * Returns the lock local service.
803             *
804             * @return the lock local service
805             */
806            public com.liferay.portal.service.LockLocalService getLockLocalService() {
807                    return lockLocalService;
808            }
809    
810            /**
811             * Sets the lock local service.
812             *
813             * @param lockLocalService the lock local service
814             */
815            public void setLockLocalService(
816                    com.liferay.portal.service.LockLocalService lockLocalService) {
817                    this.lockLocalService = lockLocalService;
818            }
819    
820            /**
821             * Returns the lock persistence.
822             *
823             * @return the lock persistence
824             */
825            public LockPersistence getLockPersistence() {
826                    return lockPersistence;
827            }
828    
829            /**
830             * Sets the lock persistence.
831             *
832             * @param lockPersistence the lock persistence
833             */
834            public void setLockPersistence(LockPersistence lockPersistence) {
835                    this.lockPersistence = lockPersistence;
836            }
837    
838            /**
839             * Returns the lock finder.
840             *
841             * @return the lock finder
842             */
843            public LockFinder getLockFinder() {
844                    return lockFinder;
845            }
846    
847            /**
848             * Sets the lock finder.
849             *
850             * @param lockFinder the lock finder
851             */
852            public void setLockFinder(LockFinder lockFinder) {
853                    this.lockFinder = lockFinder;
854            }
855    
856            /**
857             * Returns the repository local service.
858             *
859             * @return the repository local service
860             */
861            public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
862                    return repositoryLocalService;
863            }
864    
865            /**
866             * Sets the repository local service.
867             *
868             * @param repositoryLocalService the repository local service
869             */
870            public void setRepositoryLocalService(
871                    com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
872                    this.repositoryLocalService = repositoryLocalService;
873            }
874    
875            /**
876             * Returns the repository remote service.
877             *
878             * @return the repository remote service
879             */
880            public com.liferay.portal.service.RepositoryService getRepositoryService() {
881                    return repositoryService;
882            }
883    
884            /**
885             * Sets the repository remote service.
886             *
887             * @param repositoryService the repository remote service
888             */
889            public void setRepositoryService(
890                    com.liferay.portal.service.RepositoryService repositoryService) {
891                    this.repositoryService = repositoryService;
892            }
893    
894            /**
895             * Returns the repository persistence.
896             *
897             * @return the repository persistence
898             */
899            public RepositoryPersistence getRepositoryPersistence() {
900                    return repositoryPersistence;
901            }
902    
903            /**
904             * Sets the repository persistence.
905             *
906             * @param repositoryPersistence the repository persistence
907             */
908            public void setRepositoryPersistence(
909                    RepositoryPersistence repositoryPersistence) {
910                    this.repositoryPersistence = repositoryPersistence;
911            }
912    
913            /**
914             * Returns the resource local service.
915             *
916             * @return the resource local service
917             */
918            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
919                    return resourceLocalService;
920            }
921    
922            /**
923             * Sets the resource local service.
924             *
925             * @param resourceLocalService the resource local service
926             */
927            public void setResourceLocalService(
928                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
929                    this.resourceLocalService = resourceLocalService;
930            }
931    
932            /**
933             * Returns the user local service.
934             *
935             * @return the user local service
936             */
937            public com.liferay.portal.service.UserLocalService getUserLocalService() {
938                    return userLocalService;
939            }
940    
941            /**
942             * Sets the user local service.
943             *
944             * @param userLocalService the user local service
945             */
946            public void setUserLocalService(
947                    com.liferay.portal.service.UserLocalService userLocalService) {
948                    this.userLocalService = userLocalService;
949            }
950    
951            /**
952             * Returns the user remote service.
953             *
954             * @return the user remote service
955             */
956            public com.liferay.portal.service.UserService getUserService() {
957                    return userService;
958            }
959    
960            /**
961             * Sets the user remote service.
962             *
963             * @param userService the user remote service
964             */
965            public void setUserService(
966                    com.liferay.portal.service.UserService userService) {
967                    this.userService = userService;
968            }
969    
970            /**
971             * Returns the user persistence.
972             *
973             * @return the user persistence
974             */
975            public UserPersistence getUserPersistence() {
976                    return userPersistence;
977            }
978    
979            /**
980             * Sets the user persistence.
981             *
982             * @param userPersistence the user persistence
983             */
984            public void setUserPersistence(UserPersistence userPersistence) {
985                    this.userPersistence = userPersistence;
986            }
987    
988            /**
989             * Returns the user finder.
990             *
991             * @return the user finder
992             */
993            public UserFinder getUserFinder() {
994                    return userFinder;
995            }
996    
997            /**
998             * Sets the user finder.
999             *
1000             * @param userFinder the user finder
1001             */
1002            public void setUserFinder(UserFinder userFinder) {
1003                    this.userFinder = userFinder;
1004            }
1005    
1006            /**
1007             * Returns the web d a v props local service.
1008             *
1009             * @return the web d a v props local service
1010             */
1011            public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
1012                    return webDAVPropsLocalService;
1013            }
1014    
1015            /**
1016             * Sets the web d a v props local service.
1017             *
1018             * @param webDAVPropsLocalService the web d a v props local service
1019             */
1020            public void setWebDAVPropsLocalService(
1021                    com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
1022                    this.webDAVPropsLocalService = webDAVPropsLocalService;
1023            }
1024    
1025            /**
1026             * Returns the web d a v props persistence.
1027             *
1028             * @return the web d a v props persistence
1029             */
1030            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1031                    return webDAVPropsPersistence;
1032            }
1033    
1034            /**
1035             * Sets the web d a v props persistence.
1036             *
1037             * @param webDAVPropsPersistence the web d a v props persistence
1038             */
1039            public void setWebDAVPropsPersistence(
1040                    WebDAVPropsPersistence webDAVPropsPersistence) {
1041                    this.webDAVPropsPersistence = webDAVPropsPersistence;
1042            }
1043    
1044            /**
1045             * Returns the workflow instance link local service.
1046             *
1047             * @return the workflow instance link local service
1048             */
1049            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1050                    return workflowInstanceLinkLocalService;
1051            }
1052    
1053            /**
1054             * Sets the workflow instance link local service.
1055             *
1056             * @param workflowInstanceLinkLocalService the workflow instance link local service
1057             */
1058            public void setWorkflowInstanceLinkLocalService(
1059                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1060                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1061            }
1062    
1063            /**
1064             * Returns the workflow instance link persistence.
1065             *
1066             * @return the workflow instance link persistence
1067             */
1068            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1069                    return workflowInstanceLinkPersistence;
1070            }
1071    
1072            /**
1073             * Sets the workflow instance link persistence.
1074             *
1075             * @param workflowInstanceLinkPersistence the workflow instance link persistence
1076             */
1077            public void setWorkflowInstanceLinkPersistence(
1078                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1079                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1080            }
1081    
1082            /**
1083             * Returns the asset category local service.
1084             *
1085             * @return the asset category local service
1086             */
1087            public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
1088                    return assetCategoryLocalService;
1089            }
1090    
1091            /**
1092             * Sets the asset category local service.
1093             *
1094             * @param assetCategoryLocalService the asset category local service
1095             */
1096            public void setAssetCategoryLocalService(
1097                    com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
1098                    this.assetCategoryLocalService = assetCategoryLocalService;
1099            }
1100    
1101            /**
1102             * Returns the asset category remote service.
1103             *
1104             * @return the asset category remote service
1105             */
1106            public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
1107                    return assetCategoryService;
1108            }
1109    
1110            /**
1111             * Sets the asset category remote service.
1112             *
1113             * @param assetCategoryService the asset category remote service
1114             */
1115            public void setAssetCategoryService(
1116                    com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
1117                    this.assetCategoryService = assetCategoryService;
1118            }
1119    
1120            /**
1121             * Returns the asset category persistence.
1122             *
1123             * @return the asset category persistence
1124             */
1125            public AssetCategoryPersistence getAssetCategoryPersistence() {
1126                    return assetCategoryPersistence;
1127            }
1128    
1129            /**
1130             * Sets the asset category persistence.
1131             *
1132             * @param assetCategoryPersistence the asset category persistence
1133             */
1134            public void setAssetCategoryPersistence(
1135                    AssetCategoryPersistence assetCategoryPersistence) {
1136                    this.assetCategoryPersistence = assetCategoryPersistence;
1137            }
1138    
1139            /**
1140             * Returns the asset category finder.
1141             *
1142             * @return the asset category finder
1143             */
1144            public AssetCategoryFinder getAssetCategoryFinder() {
1145                    return assetCategoryFinder;
1146            }
1147    
1148            /**
1149             * Sets the asset category finder.
1150             *
1151             * @param assetCategoryFinder the asset category finder
1152             */
1153            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1154                    this.assetCategoryFinder = assetCategoryFinder;
1155            }
1156    
1157            /**
1158             * Returns the asset entry local service.
1159             *
1160             * @return the asset entry local service
1161             */
1162            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1163                    return assetEntryLocalService;
1164            }
1165    
1166            /**
1167             * Sets the asset entry local service.
1168             *
1169             * @param assetEntryLocalService the asset entry local service
1170             */
1171            public void setAssetEntryLocalService(
1172                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1173                    this.assetEntryLocalService = assetEntryLocalService;
1174            }
1175    
1176            /**
1177             * Returns the asset entry remote service.
1178             *
1179             * @return the asset entry remote service
1180             */
1181            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1182                    return assetEntryService;
1183            }
1184    
1185            /**
1186             * Sets the asset entry remote service.
1187             *
1188             * @param assetEntryService the asset entry remote service
1189             */
1190            public void setAssetEntryService(
1191                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1192                    this.assetEntryService = assetEntryService;
1193            }
1194    
1195            /**
1196             * Returns the asset entry persistence.
1197             *
1198             * @return the asset entry persistence
1199             */
1200            public AssetEntryPersistence getAssetEntryPersistence() {
1201                    return assetEntryPersistence;
1202            }
1203    
1204            /**
1205             * Sets the asset entry persistence.
1206             *
1207             * @param assetEntryPersistence the asset entry persistence
1208             */
1209            public void setAssetEntryPersistence(
1210                    AssetEntryPersistence assetEntryPersistence) {
1211                    this.assetEntryPersistence = assetEntryPersistence;
1212            }
1213    
1214            /**
1215             * Returns the asset entry finder.
1216             *
1217             * @return the asset entry finder
1218             */
1219            public AssetEntryFinder getAssetEntryFinder() {
1220                    return assetEntryFinder;
1221            }
1222    
1223            /**
1224             * Sets the asset entry finder.
1225             *
1226             * @param assetEntryFinder the asset entry finder
1227             */
1228            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1229                    this.assetEntryFinder = assetEntryFinder;
1230            }
1231    
1232            /**
1233             * Returns the asset link local service.
1234             *
1235             * @return the asset link local service
1236             */
1237            public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
1238                    return assetLinkLocalService;
1239            }
1240    
1241            /**
1242             * Sets the asset link local service.
1243             *
1244             * @param assetLinkLocalService the asset link local service
1245             */
1246            public void setAssetLinkLocalService(
1247                    com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
1248                    this.assetLinkLocalService = assetLinkLocalService;
1249            }
1250    
1251            /**
1252             * Returns the asset link persistence.
1253             *
1254             * @return the asset link persistence
1255             */
1256            public AssetLinkPersistence getAssetLinkPersistence() {
1257                    return assetLinkPersistence;
1258            }
1259    
1260            /**
1261             * Sets the asset link persistence.
1262             *
1263             * @param assetLinkPersistence the asset link persistence
1264             */
1265            public void setAssetLinkPersistence(
1266                    AssetLinkPersistence assetLinkPersistence) {
1267                    this.assetLinkPersistence = assetLinkPersistence;
1268            }
1269    
1270            /**
1271             * Returns the asset tag local service.
1272             *
1273             * @return the asset tag local service
1274             */
1275            public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1276                    return assetTagLocalService;
1277            }
1278    
1279            /**
1280             * Sets the asset tag local service.
1281             *
1282             * @param assetTagLocalService the asset tag local service
1283             */
1284            public void setAssetTagLocalService(
1285                    com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1286                    this.assetTagLocalService = assetTagLocalService;
1287            }
1288    
1289            /**
1290             * Returns the asset tag remote service.
1291             *
1292             * @return the asset tag remote service
1293             */
1294            public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1295                    return assetTagService;
1296            }
1297    
1298            /**
1299             * Sets the asset tag remote service.
1300             *
1301             * @param assetTagService the asset tag remote service
1302             */
1303            public void setAssetTagService(
1304                    com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1305                    this.assetTagService = assetTagService;
1306            }
1307    
1308            /**
1309             * Returns the asset tag persistence.
1310             *
1311             * @return the asset tag persistence
1312             */
1313            public AssetTagPersistence getAssetTagPersistence() {
1314                    return assetTagPersistence;
1315            }
1316    
1317            /**
1318             * Sets the asset tag persistence.
1319             *
1320             * @param assetTagPersistence the asset tag persistence
1321             */
1322            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1323                    this.assetTagPersistence = assetTagPersistence;
1324            }
1325    
1326            /**
1327             * Returns the asset tag finder.
1328             *
1329             * @return the asset tag finder
1330             */
1331            public AssetTagFinder getAssetTagFinder() {
1332                    return assetTagFinder;
1333            }
1334    
1335            /**
1336             * Sets the asset tag finder.
1337             *
1338             * @param assetTagFinder the asset tag finder
1339             */
1340            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1341                    this.assetTagFinder = assetTagFinder;
1342            }
1343    
1344            /**
1345             * Returns the d d m structure local service.
1346             *
1347             * @return the d d m structure local service
1348             */
1349            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
1350                    return ddmStructureLocalService;
1351            }
1352    
1353            /**
1354             * Sets the d d m structure local service.
1355             *
1356             * @param ddmStructureLocalService the d d m structure local service
1357             */
1358            public void setDDMStructureLocalService(
1359                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
1360                    this.ddmStructureLocalService = ddmStructureLocalService;
1361            }
1362    
1363            /**
1364             * Returns the d d m structure remote service.
1365             *
1366             * @return the d d m structure remote service
1367             */
1368            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
1369                    return ddmStructureService;
1370            }
1371    
1372            /**
1373             * Sets the d d m structure remote service.
1374             *
1375             * @param ddmStructureService the d d m structure remote service
1376             */
1377            public void setDDMStructureService(
1378                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
1379                    this.ddmStructureService = ddmStructureService;
1380            }
1381    
1382            /**
1383             * Returns the d d m structure persistence.
1384             *
1385             * @return the d d m structure persistence
1386             */
1387            public DDMStructurePersistence getDDMStructurePersistence() {
1388                    return ddmStructurePersistence;
1389            }
1390    
1391            /**
1392             * Sets the d d m structure persistence.
1393             *
1394             * @param ddmStructurePersistence the d d m structure persistence
1395             */
1396            public void setDDMStructurePersistence(
1397                    DDMStructurePersistence ddmStructurePersistence) {
1398                    this.ddmStructurePersistence = ddmStructurePersistence;
1399            }
1400    
1401            /**
1402             * Returns the d d m structure finder.
1403             *
1404             * @return the d d m structure finder
1405             */
1406            public DDMStructureFinder getDDMStructureFinder() {
1407                    return ddmStructureFinder;
1408            }
1409    
1410            /**
1411             * Sets the d d m structure finder.
1412             *
1413             * @param ddmStructureFinder the d d m structure finder
1414             */
1415            public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1416                    this.ddmStructureFinder = ddmStructureFinder;
1417            }
1418    
1419            /**
1420             * Returns the expando row local service.
1421             *
1422             * @return the expando row local service
1423             */
1424            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1425                    return expandoRowLocalService;
1426            }
1427    
1428            /**
1429             * Sets the expando row local service.
1430             *
1431             * @param expandoRowLocalService the expando row local service
1432             */
1433            public void setExpandoRowLocalService(
1434                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1435                    this.expandoRowLocalService = expandoRowLocalService;
1436            }
1437    
1438            /**
1439             * Returns the expando row persistence.
1440             *
1441             * @return the expando row persistence
1442             */
1443            public ExpandoRowPersistence getExpandoRowPersistence() {
1444                    return expandoRowPersistence;
1445            }
1446    
1447            /**
1448             * Sets the expando row persistence.
1449             *
1450             * @param expandoRowPersistence the expando row persistence
1451             */
1452            public void setExpandoRowPersistence(
1453                    ExpandoRowPersistence expandoRowPersistence) {
1454                    this.expandoRowPersistence = expandoRowPersistence;
1455            }
1456    
1457            /**
1458             * Returns the expando table local service.
1459             *
1460             * @return the expando table local service
1461             */
1462            public com.liferay.portlet.expando.service.ExpandoTableLocalService getExpandoTableLocalService() {
1463                    return expandoTableLocalService;
1464            }
1465    
1466            /**
1467             * Sets the expando table local service.
1468             *
1469             * @param expandoTableLocalService the expando table local service
1470             */
1471            public void setExpandoTableLocalService(
1472                    com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService) {
1473                    this.expandoTableLocalService = expandoTableLocalService;
1474            }
1475    
1476            /**
1477             * Returns the expando table persistence.
1478             *
1479             * @return the expando table persistence
1480             */
1481            public ExpandoTablePersistence getExpandoTablePersistence() {
1482                    return expandoTablePersistence;
1483            }
1484    
1485            /**
1486             * Sets the expando table persistence.
1487             *
1488             * @param expandoTablePersistence the expando table persistence
1489             */
1490            public void setExpandoTablePersistence(
1491                    ExpandoTablePersistence expandoTablePersistence) {
1492                    this.expandoTablePersistence = expandoTablePersistence;
1493            }
1494    
1495            /**
1496             * Returns the message-boards message local service.
1497             *
1498             * @return the message-boards message local service
1499             */
1500            public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
1501                    return mbMessageLocalService;
1502            }
1503    
1504            /**
1505             * Sets the message-boards message local service.
1506             *
1507             * @param mbMessageLocalService the message-boards message local service
1508             */
1509            public void setMBMessageLocalService(
1510                    com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
1511                    this.mbMessageLocalService = mbMessageLocalService;
1512            }
1513    
1514            /**
1515             * Returns the message-boards message remote service.
1516             *
1517             * @return the message-boards message remote service
1518             */
1519            public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
1520                    return mbMessageService;
1521            }
1522    
1523            /**
1524             * Sets the message-boards message remote service.
1525             *
1526             * @param mbMessageService the message-boards message remote service
1527             */
1528            public void setMBMessageService(
1529                    com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
1530                    this.mbMessageService = mbMessageService;
1531            }
1532    
1533            /**
1534             * Returns the message-boards message persistence.
1535             *
1536             * @return the message-boards message persistence
1537             */
1538            public MBMessagePersistence getMBMessagePersistence() {
1539                    return mbMessagePersistence;
1540            }
1541    
1542            /**
1543             * Sets the message-boards message persistence.
1544             *
1545             * @param mbMessagePersistence the message-boards message persistence
1546             */
1547            public void setMBMessagePersistence(
1548                    MBMessagePersistence mbMessagePersistence) {
1549                    this.mbMessagePersistence = mbMessagePersistence;
1550            }
1551    
1552            /**
1553             * Returns the message-boards message finder.
1554             *
1555             * @return the message-boards message finder
1556             */
1557            public MBMessageFinder getMBMessageFinder() {
1558                    return mbMessageFinder;
1559            }
1560    
1561            /**
1562             * Sets the message-boards message finder.
1563             *
1564             * @param mbMessageFinder the message-boards message finder
1565             */
1566            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1567                    this.mbMessageFinder = mbMessageFinder;
1568            }
1569    
1570            /**
1571             * Returns the trash entry local service.
1572             *
1573             * @return the trash entry local service
1574             */
1575            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1576                    return trashEntryLocalService;
1577            }
1578    
1579            /**
1580             * Sets the trash entry local service.
1581             *
1582             * @param trashEntryLocalService the trash entry local service
1583             */
1584            public void setTrashEntryLocalService(
1585                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1586                    this.trashEntryLocalService = trashEntryLocalService;
1587            }
1588    
1589            /**
1590             * Returns the trash entry remote service.
1591             *
1592             * @return the trash entry remote service
1593             */
1594            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1595                    return trashEntryService;
1596            }
1597    
1598            /**
1599             * Sets the trash entry remote service.
1600             *
1601             * @param trashEntryService the trash entry remote service
1602             */
1603            public void setTrashEntryService(
1604                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1605                    this.trashEntryService = trashEntryService;
1606            }
1607    
1608            /**
1609             * Returns the trash entry persistence.
1610             *
1611             * @return the trash entry persistence
1612             */
1613            public TrashEntryPersistence getTrashEntryPersistence() {
1614                    return trashEntryPersistence;
1615            }
1616    
1617            /**
1618             * Sets the trash entry persistence.
1619             *
1620             * @param trashEntryPersistence the trash entry persistence
1621             */
1622            public void setTrashEntryPersistence(
1623                    TrashEntryPersistence trashEntryPersistence) {
1624                    this.trashEntryPersistence = trashEntryPersistence;
1625            }
1626    
1627            public void afterPropertiesSet() {
1628            }
1629    
1630            public void destroy() {
1631            }
1632    
1633            /**
1634             * Returns the Spring bean ID for this bean.
1635             *
1636             * @return the Spring bean ID for this bean
1637             */
1638            @Override
1639            public String getBeanIdentifier() {
1640                    return _beanIdentifier;
1641            }
1642    
1643            /**
1644             * Sets the Spring bean ID for this bean.
1645             *
1646             * @param beanIdentifier the Spring bean ID for this bean
1647             */
1648            @Override
1649            public void setBeanIdentifier(String beanIdentifier) {
1650                    _beanIdentifier = beanIdentifier;
1651            }
1652    
1653            protected Class<?> getModelClass() {
1654                    return DLFileEntry.class;
1655            }
1656    
1657            protected String getModelClassName() {
1658                    return DLFileEntry.class.getName();
1659            }
1660    
1661            /**
1662             * Performs an SQL query.
1663             *
1664             * @param sql the sql query
1665             */
1666            protected void runSQL(String sql) throws SystemException {
1667                    try {
1668                            DataSource dataSource = dlFileEntryPersistence.getDataSource();
1669    
1670                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1671                                            sql, new int[0]);
1672    
1673                            sqlUpdate.update();
1674                    }
1675                    catch (Exception e) {
1676                            throw new SystemException(e);
1677                    }
1678            }
1679    
1680            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1681            protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1682            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1683            protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1684            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1685            protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1686            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1687            protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1688            @BeanReference(type = DLContentPersistence.class)
1689            protected DLContentPersistence dlContentPersistence;
1690            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1691            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1692            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1693            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1694            @BeanReference(type = DLFileEntryPersistence.class)
1695            protected DLFileEntryPersistence dlFileEntryPersistence;
1696            @BeanReference(type = DLFileEntryFinder.class)
1697            protected DLFileEntryFinder dlFileEntryFinder;
1698            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1699            protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1700            @BeanReference(type = DLFileEntryMetadataPersistence.class)
1701            protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1702            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1703            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1704            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1705            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1706            @BeanReference(type = DLFileEntryTypePersistence.class)
1707            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1708            @BeanReference(type = DLFileEntryTypeFinder.class)
1709            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1710            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
1711            protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
1712            @BeanReference(type = DLFileRankPersistence.class)
1713            protected DLFileRankPersistence dlFileRankPersistence;
1714            @BeanReference(type = DLFileRankFinder.class)
1715            protected DLFileRankFinder dlFileRankFinder;
1716            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1717            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1718            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1719            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1720            @BeanReference(type = DLFileShortcutPersistence.class)
1721            protected DLFileShortcutPersistence dlFileShortcutPersistence;
1722            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1723            protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1724            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1725            protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1726            @BeanReference(type = DLFileVersionPersistence.class)
1727            protected DLFileVersionPersistence dlFileVersionPersistence;
1728            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1729            protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1730            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1731            protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1732            @BeanReference(type = DLFolderPersistence.class)
1733            protected DLFolderPersistence dlFolderPersistence;
1734            @BeanReference(type = DLFolderFinder.class)
1735            protected DLFolderFinder dlFolderFinder;
1736            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1737            protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1738            @BeanReference(type = DLSyncEventPersistence.class)
1739            protected DLSyncEventPersistence dlSyncEventPersistence;
1740            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1741            protected com.liferay.counter.service.CounterLocalService counterLocalService;
1742            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1743            protected com.liferay.portal.service.GroupLocalService groupLocalService;
1744            @BeanReference(type = com.liferay.portal.service.GroupService.class)
1745            protected com.liferay.portal.service.GroupService groupService;
1746            @BeanReference(type = GroupPersistence.class)
1747            protected GroupPersistence groupPersistence;
1748            @BeanReference(type = GroupFinder.class)
1749            protected GroupFinder groupFinder;
1750            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1751            protected com.liferay.portal.service.ImageLocalService imageLocalService;
1752            @BeanReference(type = com.liferay.portal.service.ImageService.class)
1753            protected com.liferay.portal.service.ImageService imageService;
1754            @BeanReference(type = ImagePersistence.class)
1755            protected ImagePersistence imagePersistence;
1756            @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1757            protected com.liferay.portal.service.LockLocalService lockLocalService;
1758            @BeanReference(type = LockPersistence.class)
1759            protected LockPersistence lockPersistence;
1760            @BeanReference(type = LockFinder.class)
1761            protected LockFinder lockFinder;
1762            @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1763            protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1764            @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1765            protected com.liferay.portal.service.RepositoryService repositoryService;
1766            @BeanReference(type = RepositoryPersistence.class)
1767            protected RepositoryPersistence repositoryPersistence;
1768            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1769            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1770            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1771            protected com.liferay.portal.service.UserLocalService userLocalService;
1772            @BeanReference(type = com.liferay.portal.service.UserService.class)
1773            protected com.liferay.portal.service.UserService userService;
1774            @BeanReference(type = UserPersistence.class)
1775            protected UserPersistence userPersistence;
1776            @BeanReference(type = UserFinder.class)
1777            protected UserFinder userFinder;
1778            @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1779            protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1780            @BeanReference(type = WebDAVPropsPersistence.class)
1781            protected WebDAVPropsPersistence webDAVPropsPersistence;
1782            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1783            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1784            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1785            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1786            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
1787            protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
1788            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
1789            protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
1790            @BeanReference(type = AssetCategoryPersistence.class)
1791            protected AssetCategoryPersistence assetCategoryPersistence;
1792            @BeanReference(type = AssetCategoryFinder.class)
1793            protected AssetCategoryFinder assetCategoryFinder;
1794            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1795            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1796            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1797            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1798            @BeanReference(type = AssetEntryPersistence.class)
1799            protected AssetEntryPersistence assetEntryPersistence;
1800            @BeanReference(type = AssetEntryFinder.class)
1801            protected AssetEntryFinder assetEntryFinder;
1802            @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1803            protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1804            @BeanReference(type = AssetLinkPersistence.class)
1805            protected AssetLinkPersistence assetLinkPersistence;
1806            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1807            protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1808            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1809            protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1810            @BeanReference(type = AssetTagPersistence.class)
1811            protected AssetTagPersistence assetTagPersistence;
1812            @BeanReference(type = AssetTagFinder.class)
1813            protected AssetTagFinder assetTagFinder;
1814            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
1815            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
1816            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
1817            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
1818            @BeanReference(type = DDMStructurePersistence.class)
1819            protected DDMStructurePersistence ddmStructurePersistence;
1820            @BeanReference(type = DDMStructureFinder.class)
1821            protected DDMStructureFinder ddmStructureFinder;
1822            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1823            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1824            @BeanReference(type = ExpandoRowPersistence.class)
1825            protected ExpandoRowPersistence expandoRowPersistence;
1826            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoTableLocalService.class)
1827            protected com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService;
1828            @BeanReference(type = ExpandoTablePersistence.class)
1829            protected ExpandoTablePersistence expandoTablePersistence;
1830            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1831            protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1832            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1833            protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1834            @BeanReference(type = MBMessagePersistence.class)
1835            protected MBMessagePersistence mbMessagePersistence;
1836            @BeanReference(type = MBMessageFinder.class)
1837            protected MBMessageFinder mbMessageFinder;
1838            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1839            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1840            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1841            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1842            @BeanReference(type = TrashEntryPersistence.class)
1843            protected TrashEntryPersistence trashEntryPersistence;
1844            private String _beanIdentifier;
1845    }