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.UserFinder;
024    import com.liferay.portal.service.persistence.UserPersistence;
025    import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
026    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
027    
028    import com.liferay.portlet.documentlibrary.model.DLFileEntryType;
029    import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
030    import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
031    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
032    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
033    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
034    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
035    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
036    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
037    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
038    import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
039    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
040    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
041    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
042    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
043    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
044    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
045    
046    import javax.sql.DataSource;
047    
048    /**
049     * Provides the base implementation for the document library file entry type remote service.
050     *
051     * <p>
052     * 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.DLFileEntryTypeServiceImpl}.
053     * </p>
054     *
055     * @author Brian Wing Shun Chan
056     * @see com.liferay.portlet.documentlibrary.service.impl.DLFileEntryTypeServiceImpl
057     * @see com.liferay.portlet.documentlibrary.service.DLFileEntryTypeServiceUtil
058     * @generated
059     */
060    public abstract class DLFileEntryTypeServiceBaseImpl extends BaseServiceImpl
061            implements DLFileEntryTypeService, IdentifiableBean {
062            /*
063             * NOTE FOR DEVELOPERS:
064             *
065             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLFileEntryTypeServiceUtil} to access the document library file entry type remote service.
066             */
067    
068            /**
069             * Returns the d l app local service.
070             *
071             * @return the d l app local service
072             */
073            public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
074                    return dlAppLocalService;
075            }
076    
077            /**
078             * Sets the d l app local service.
079             *
080             * @param dlAppLocalService the d l app local service
081             */
082            public void setDLAppLocalService(
083                    com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
084                    this.dlAppLocalService = dlAppLocalService;
085            }
086    
087            /**
088             * Returns the d l app remote service.
089             *
090             * @return the d l app remote service
091             */
092            public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
093                    return dlAppService;
094            }
095    
096            /**
097             * Sets the d l app remote service.
098             *
099             * @param dlAppService the d l app remote service
100             */
101            public void setDLAppService(
102                    com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
103                    this.dlAppService = dlAppService;
104            }
105    
106            /**
107             * Returns the d l app helper local service.
108             *
109             * @return the d l app helper local service
110             */
111            public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
112                    return dlAppHelperLocalService;
113            }
114    
115            /**
116             * Sets the d l app helper local service.
117             *
118             * @param dlAppHelperLocalService the d l app helper local service
119             */
120            public void setDLAppHelperLocalService(
121                    com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
122                    this.dlAppHelperLocalService = dlAppHelperLocalService;
123            }
124    
125            /**
126             * Returns the document library content local service.
127             *
128             * @return the document library content local service
129             */
130            public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
131                    return dlContentLocalService;
132            }
133    
134            /**
135             * Sets the document library content local service.
136             *
137             * @param dlContentLocalService the document library content local service
138             */
139            public void setDLContentLocalService(
140                    com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
141                    this.dlContentLocalService = dlContentLocalService;
142            }
143    
144            /**
145             * Returns the document library content persistence.
146             *
147             * @return the document library content persistence
148             */
149            public DLContentPersistence getDLContentPersistence() {
150                    return dlContentPersistence;
151            }
152    
153            /**
154             * Sets the document library content persistence.
155             *
156             * @param dlContentPersistence the document library content persistence
157             */
158            public void setDLContentPersistence(
159                    DLContentPersistence dlContentPersistence) {
160                    this.dlContentPersistence = dlContentPersistence;
161            }
162    
163            /**
164             * Returns the document library file entry local service.
165             *
166             * @return the document library file entry local service
167             */
168            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
169                    return dlFileEntryLocalService;
170            }
171    
172            /**
173             * Sets the document library file entry local service.
174             *
175             * @param dlFileEntryLocalService the document library file entry local service
176             */
177            public void setDLFileEntryLocalService(
178                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
179                    this.dlFileEntryLocalService = dlFileEntryLocalService;
180            }
181    
182            /**
183             * Returns the document library file entry remote service.
184             *
185             * @return the document library file entry remote service
186             */
187            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
188                    return dlFileEntryService;
189            }
190    
191            /**
192             * Sets the document library file entry remote service.
193             *
194             * @param dlFileEntryService the document library file entry remote service
195             */
196            public void setDLFileEntryService(
197                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
198                    this.dlFileEntryService = dlFileEntryService;
199            }
200    
201            /**
202             * Returns the document library file entry persistence.
203             *
204             * @return the document library file entry persistence
205             */
206            public DLFileEntryPersistence getDLFileEntryPersistence() {
207                    return dlFileEntryPersistence;
208            }
209    
210            /**
211             * Sets the document library file entry persistence.
212             *
213             * @param dlFileEntryPersistence the document library file entry persistence
214             */
215            public void setDLFileEntryPersistence(
216                    DLFileEntryPersistence dlFileEntryPersistence) {
217                    this.dlFileEntryPersistence = dlFileEntryPersistence;
218            }
219    
220            /**
221             * Returns the document library file entry finder.
222             *
223             * @return the document library file entry finder
224             */
225            public DLFileEntryFinder getDLFileEntryFinder() {
226                    return dlFileEntryFinder;
227            }
228    
229            /**
230             * Sets the document library file entry finder.
231             *
232             * @param dlFileEntryFinder the document library file entry finder
233             */
234            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
235                    this.dlFileEntryFinder = dlFileEntryFinder;
236            }
237    
238            /**
239             * Returns the document library file entry metadata local service.
240             *
241             * @return the document library file entry metadata local service
242             */
243            public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
244                    return dlFileEntryMetadataLocalService;
245            }
246    
247            /**
248             * Sets the document library file entry metadata local service.
249             *
250             * @param dlFileEntryMetadataLocalService the document library file entry metadata local service
251             */
252            public void setDLFileEntryMetadataLocalService(
253                    com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
254                    this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
255            }
256    
257            /**
258             * Returns the document library file entry metadata persistence.
259             *
260             * @return the document library file entry metadata persistence
261             */
262            public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
263                    return dlFileEntryMetadataPersistence;
264            }
265    
266            /**
267             * Sets the document library file entry metadata persistence.
268             *
269             * @param dlFileEntryMetadataPersistence the document library file entry metadata persistence
270             */
271            public void setDLFileEntryMetadataPersistence(
272                    DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
273                    this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
274            }
275    
276            /**
277             * Returns the document library file entry type local service.
278             *
279             * @return the document library file entry type local service
280             */
281            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
282                    return dlFileEntryTypeLocalService;
283            }
284    
285            /**
286             * Sets the document library file entry type local service.
287             *
288             * @param dlFileEntryTypeLocalService the document library file entry type local service
289             */
290            public void setDLFileEntryTypeLocalService(
291                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
292                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
293            }
294    
295            /**
296             * Returns the document library file entry type remote service.
297             *
298             * @return the document library file entry type remote service
299             */
300            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
301                    return dlFileEntryTypeService;
302            }
303    
304            /**
305             * Sets the document library file entry type remote service.
306             *
307             * @param dlFileEntryTypeService the document library file entry type remote service
308             */
309            public void setDLFileEntryTypeService(
310                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
311                    this.dlFileEntryTypeService = dlFileEntryTypeService;
312            }
313    
314            /**
315             * Returns the document library file entry type persistence.
316             *
317             * @return the document library file entry type persistence
318             */
319            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
320                    return dlFileEntryTypePersistence;
321            }
322    
323            /**
324             * Sets the document library file entry type persistence.
325             *
326             * @param dlFileEntryTypePersistence the document library file entry type persistence
327             */
328            public void setDLFileEntryTypePersistence(
329                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
330                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
331            }
332    
333            /**
334             * Returns the document library file entry type finder.
335             *
336             * @return the document library file entry type finder
337             */
338            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
339                    return dlFileEntryTypeFinder;
340            }
341    
342            /**
343             * Sets the document library file entry type finder.
344             *
345             * @param dlFileEntryTypeFinder the document library file entry type finder
346             */
347            public void setDLFileEntryTypeFinder(
348                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
349                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
350            }
351    
352            /**
353             * Returns the document library file rank local service.
354             *
355             * @return the document library file rank local service
356             */
357            public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
358                    return dlFileRankLocalService;
359            }
360    
361            /**
362             * Sets the document library file rank local service.
363             *
364             * @param dlFileRankLocalService the document library file rank local service
365             */
366            public void setDLFileRankLocalService(
367                    com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
368                    this.dlFileRankLocalService = dlFileRankLocalService;
369            }
370    
371            /**
372             * Returns the document library file rank persistence.
373             *
374             * @return the document library file rank persistence
375             */
376            public DLFileRankPersistence getDLFileRankPersistence() {
377                    return dlFileRankPersistence;
378            }
379    
380            /**
381             * Sets the document library file rank persistence.
382             *
383             * @param dlFileRankPersistence the document library file rank persistence
384             */
385            public void setDLFileRankPersistence(
386                    DLFileRankPersistence dlFileRankPersistence) {
387                    this.dlFileRankPersistence = dlFileRankPersistence;
388            }
389    
390            /**
391             * Returns the document library file rank finder.
392             *
393             * @return the document library file rank finder
394             */
395            public DLFileRankFinder getDLFileRankFinder() {
396                    return dlFileRankFinder;
397            }
398    
399            /**
400             * Sets the document library file rank finder.
401             *
402             * @param dlFileRankFinder the document library file rank finder
403             */
404            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
405                    this.dlFileRankFinder = dlFileRankFinder;
406            }
407    
408            /**
409             * Returns the document library file shortcut local service.
410             *
411             * @return the document library file shortcut local service
412             */
413            public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
414                    return dlFileShortcutLocalService;
415            }
416    
417            /**
418             * Sets the document library file shortcut local service.
419             *
420             * @param dlFileShortcutLocalService the document library file shortcut local service
421             */
422            public void setDLFileShortcutLocalService(
423                    com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
424                    this.dlFileShortcutLocalService = dlFileShortcutLocalService;
425            }
426    
427            /**
428             * Returns the document library file shortcut remote service.
429             *
430             * @return the document library file shortcut remote service
431             */
432            public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
433                    return dlFileShortcutService;
434            }
435    
436            /**
437             * Sets the document library file shortcut remote service.
438             *
439             * @param dlFileShortcutService the document library file shortcut remote service
440             */
441            public void setDLFileShortcutService(
442                    com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
443                    this.dlFileShortcutService = dlFileShortcutService;
444            }
445    
446            /**
447             * Returns the document library file shortcut persistence.
448             *
449             * @return the document library file shortcut persistence
450             */
451            public DLFileShortcutPersistence getDLFileShortcutPersistence() {
452                    return dlFileShortcutPersistence;
453            }
454    
455            /**
456             * Sets the document library file shortcut persistence.
457             *
458             * @param dlFileShortcutPersistence the document library file shortcut persistence
459             */
460            public void setDLFileShortcutPersistence(
461                    DLFileShortcutPersistence dlFileShortcutPersistence) {
462                    this.dlFileShortcutPersistence = dlFileShortcutPersistence;
463            }
464    
465            /**
466             * Returns the document library file version local service.
467             *
468             * @return the document library file version local service
469             */
470            public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
471                    return dlFileVersionLocalService;
472            }
473    
474            /**
475             * Sets the document library file version local service.
476             *
477             * @param dlFileVersionLocalService the document library file version local service
478             */
479            public void setDLFileVersionLocalService(
480                    com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
481                    this.dlFileVersionLocalService = dlFileVersionLocalService;
482            }
483    
484            /**
485             * Returns the document library file version remote service.
486             *
487             * @return the document library file version remote service
488             */
489            public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
490                    return dlFileVersionService;
491            }
492    
493            /**
494             * Sets the document library file version remote service.
495             *
496             * @param dlFileVersionService the document library file version remote service
497             */
498            public void setDLFileVersionService(
499                    com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
500                    this.dlFileVersionService = dlFileVersionService;
501            }
502    
503            /**
504             * Returns the document library file version persistence.
505             *
506             * @return the document library file version persistence
507             */
508            public DLFileVersionPersistence getDLFileVersionPersistence() {
509                    return dlFileVersionPersistence;
510            }
511    
512            /**
513             * Sets the document library file version persistence.
514             *
515             * @param dlFileVersionPersistence the document library file version persistence
516             */
517            public void setDLFileVersionPersistence(
518                    DLFileVersionPersistence dlFileVersionPersistence) {
519                    this.dlFileVersionPersistence = dlFileVersionPersistence;
520            }
521    
522            /**
523             * Returns the document library folder local service.
524             *
525             * @return the document library folder local service
526             */
527            public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
528                    return dlFolderLocalService;
529            }
530    
531            /**
532             * Sets the document library folder local service.
533             *
534             * @param dlFolderLocalService the document library folder local service
535             */
536            public void setDLFolderLocalService(
537                    com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
538                    this.dlFolderLocalService = dlFolderLocalService;
539            }
540    
541            /**
542             * Returns the document library folder remote service.
543             *
544             * @return the document library folder remote service
545             */
546            public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
547                    return dlFolderService;
548            }
549    
550            /**
551             * Sets the document library folder remote service.
552             *
553             * @param dlFolderService the document library folder remote service
554             */
555            public void setDLFolderService(
556                    com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
557                    this.dlFolderService = dlFolderService;
558            }
559    
560            /**
561             * Returns the document library folder persistence.
562             *
563             * @return the document library folder persistence
564             */
565            public DLFolderPersistence getDLFolderPersistence() {
566                    return dlFolderPersistence;
567            }
568    
569            /**
570             * Sets the document library folder persistence.
571             *
572             * @param dlFolderPersistence the document library folder persistence
573             */
574            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
575                    this.dlFolderPersistence = dlFolderPersistence;
576            }
577    
578            /**
579             * Returns the document library folder finder.
580             *
581             * @return the document library folder finder
582             */
583            public DLFolderFinder getDLFolderFinder() {
584                    return dlFolderFinder;
585            }
586    
587            /**
588             * Sets the document library folder finder.
589             *
590             * @param dlFolderFinder the document library folder finder
591             */
592            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
593                    this.dlFolderFinder = dlFolderFinder;
594            }
595    
596            /**
597             * Returns the d l sync event local service.
598             *
599             * @return the d l sync event local service
600             */
601            public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
602                    return dlSyncEventLocalService;
603            }
604    
605            /**
606             * Sets the d l sync event local service.
607             *
608             * @param dlSyncEventLocalService the d l sync event local service
609             */
610            public void setDLSyncEventLocalService(
611                    com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
612                    this.dlSyncEventLocalService = dlSyncEventLocalService;
613            }
614    
615            /**
616             * Returns the d l sync event persistence.
617             *
618             * @return the d l sync event persistence
619             */
620            public DLSyncEventPersistence getDLSyncEventPersistence() {
621                    return dlSyncEventPersistence;
622            }
623    
624            /**
625             * Sets the d l sync event persistence.
626             *
627             * @param dlSyncEventPersistence the d l sync event persistence
628             */
629            public void setDLSyncEventPersistence(
630                    DLSyncEventPersistence dlSyncEventPersistence) {
631                    this.dlSyncEventPersistence = dlSyncEventPersistence;
632            }
633    
634            /**
635             * Returns the counter local service.
636             *
637             * @return the counter local service
638             */
639            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
640                    return counterLocalService;
641            }
642    
643            /**
644             * Sets the counter local service.
645             *
646             * @param counterLocalService the counter local service
647             */
648            public void setCounterLocalService(
649                    com.liferay.counter.service.CounterLocalService counterLocalService) {
650                    this.counterLocalService = counterLocalService;
651            }
652    
653            /**
654             * Returns the resource local service.
655             *
656             * @return the resource local service
657             */
658            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
659                    return resourceLocalService;
660            }
661    
662            /**
663             * Sets the resource local service.
664             *
665             * @param resourceLocalService the resource local service
666             */
667            public void setResourceLocalService(
668                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
669                    this.resourceLocalService = resourceLocalService;
670            }
671    
672            /**
673             * Returns the user local service.
674             *
675             * @return the user local service
676             */
677            public com.liferay.portal.service.UserLocalService getUserLocalService() {
678                    return userLocalService;
679            }
680    
681            /**
682             * Sets the user local service.
683             *
684             * @param userLocalService the user local service
685             */
686            public void setUserLocalService(
687                    com.liferay.portal.service.UserLocalService userLocalService) {
688                    this.userLocalService = userLocalService;
689            }
690    
691            /**
692             * Returns the user remote service.
693             *
694             * @return the user remote service
695             */
696            public com.liferay.portal.service.UserService getUserService() {
697                    return userService;
698            }
699    
700            /**
701             * Sets the user remote service.
702             *
703             * @param userService the user remote service
704             */
705            public void setUserService(
706                    com.liferay.portal.service.UserService userService) {
707                    this.userService = userService;
708            }
709    
710            /**
711             * Returns the user persistence.
712             *
713             * @return the user persistence
714             */
715            public UserPersistence getUserPersistence() {
716                    return userPersistence;
717            }
718    
719            /**
720             * Sets the user persistence.
721             *
722             * @param userPersistence the user persistence
723             */
724            public void setUserPersistence(UserPersistence userPersistence) {
725                    this.userPersistence = userPersistence;
726            }
727    
728            /**
729             * Returns the user finder.
730             *
731             * @return the user finder
732             */
733            public UserFinder getUserFinder() {
734                    return userFinder;
735            }
736    
737            /**
738             * Sets the user finder.
739             *
740             * @param userFinder the user finder
741             */
742            public void setUserFinder(UserFinder userFinder) {
743                    this.userFinder = userFinder;
744            }
745    
746            /**
747             * Returns the workflow definition link local service.
748             *
749             * @return the workflow definition link local service
750             */
751            public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
752                    return workflowDefinitionLinkLocalService;
753            }
754    
755            /**
756             * Sets the workflow definition link local service.
757             *
758             * @param workflowDefinitionLinkLocalService the workflow definition link local service
759             */
760            public void setWorkflowDefinitionLinkLocalService(
761                    com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
762                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
763            }
764    
765            /**
766             * Returns the workflow definition link persistence.
767             *
768             * @return the workflow definition link persistence
769             */
770            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
771                    return workflowDefinitionLinkPersistence;
772            }
773    
774            /**
775             * Sets the workflow definition link persistence.
776             *
777             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
778             */
779            public void setWorkflowDefinitionLinkPersistence(
780                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
781                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
782            }
783    
784            /**
785             * Returns the workflow instance link local service.
786             *
787             * @return the workflow instance link local service
788             */
789            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
790                    return workflowInstanceLinkLocalService;
791            }
792    
793            /**
794             * Sets the workflow instance link local service.
795             *
796             * @param workflowInstanceLinkLocalService the workflow instance link local service
797             */
798            public void setWorkflowInstanceLinkLocalService(
799                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
800                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
801            }
802    
803            /**
804             * Returns the workflow instance link persistence.
805             *
806             * @return the workflow instance link persistence
807             */
808            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
809                    return workflowInstanceLinkPersistence;
810            }
811    
812            /**
813             * Sets the workflow instance link persistence.
814             *
815             * @param workflowInstanceLinkPersistence the workflow instance link persistence
816             */
817            public void setWorkflowInstanceLinkPersistence(
818                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
819                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
820            }
821    
822            /**
823             * Returns the d d m structure local service.
824             *
825             * @return the d d m structure local service
826             */
827            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
828                    return ddmStructureLocalService;
829            }
830    
831            /**
832             * Sets the d d m structure local service.
833             *
834             * @param ddmStructureLocalService the d d m structure local service
835             */
836            public void setDDMStructureLocalService(
837                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
838                    this.ddmStructureLocalService = ddmStructureLocalService;
839            }
840    
841            /**
842             * Returns the d d m structure remote service.
843             *
844             * @return the d d m structure remote service
845             */
846            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
847                    return ddmStructureService;
848            }
849    
850            /**
851             * Sets the d d m structure remote service.
852             *
853             * @param ddmStructureService the d d m structure remote service
854             */
855            public void setDDMStructureService(
856                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
857                    this.ddmStructureService = ddmStructureService;
858            }
859    
860            /**
861             * Returns the d d m structure persistence.
862             *
863             * @return the d d m structure persistence
864             */
865            public DDMStructurePersistence getDDMStructurePersistence() {
866                    return ddmStructurePersistence;
867            }
868    
869            /**
870             * Sets the d d m structure persistence.
871             *
872             * @param ddmStructurePersistence the d d m structure persistence
873             */
874            public void setDDMStructurePersistence(
875                    DDMStructurePersistence ddmStructurePersistence) {
876                    this.ddmStructurePersistence = ddmStructurePersistence;
877            }
878    
879            /**
880             * Returns the d d m structure finder.
881             *
882             * @return the d d m structure finder
883             */
884            public DDMStructureFinder getDDMStructureFinder() {
885                    return ddmStructureFinder;
886            }
887    
888            /**
889             * Sets the d d m structure finder.
890             *
891             * @param ddmStructureFinder the d d m structure finder
892             */
893            public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
894                    this.ddmStructureFinder = ddmStructureFinder;
895            }
896    
897            public void afterPropertiesSet() {
898            }
899    
900            public void destroy() {
901            }
902    
903            /**
904             * Returns the Spring bean ID for this bean.
905             *
906             * @return the Spring bean ID for this bean
907             */
908            @Override
909            public String getBeanIdentifier() {
910                    return _beanIdentifier;
911            }
912    
913            /**
914             * Sets the Spring bean ID for this bean.
915             *
916             * @param beanIdentifier the Spring bean ID for this bean
917             */
918            @Override
919            public void setBeanIdentifier(String beanIdentifier) {
920                    _beanIdentifier = beanIdentifier;
921            }
922    
923            protected Class<?> getModelClass() {
924                    return DLFileEntryType.class;
925            }
926    
927            protected String getModelClassName() {
928                    return DLFileEntryType.class.getName();
929            }
930    
931            /**
932             * Performs an SQL query.
933             *
934             * @param sql the sql query
935             */
936            protected void runSQL(String sql) throws SystemException {
937                    try {
938                            DataSource dataSource = dlFileEntryTypePersistence.getDataSource();
939    
940                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
941                                            sql, new int[0]);
942    
943                            sqlUpdate.update();
944                    }
945                    catch (Exception e) {
946                            throw new SystemException(e);
947                    }
948            }
949    
950            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
951            protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
952            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
953            protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
954            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
955            protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
956            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
957            protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
958            @BeanReference(type = DLContentPersistence.class)
959            protected DLContentPersistence dlContentPersistence;
960            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
961            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
962            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
963            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
964            @BeanReference(type = DLFileEntryPersistence.class)
965            protected DLFileEntryPersistence dlFileEntryPersistence;
966            @BeanReference(type = DLFileEntryFinder.class)
967            protected DLFileEntryFinder dlFileEntryFinder;
968            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
969            protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
970            @BeanReference(type = DLFileEntryMetadataPersistence.class)
971            protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
972            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
973            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
974            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
975            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
976            @BeanReference(type = DLFileEntryTypePersistence.class)
977            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
978            @BeanReference(type = DLFileEntryTypeFinder.class)
979            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
980            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
981            protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
982            @BeanReference(type = DLFileRankPersistence.class)
983            protected DLFileRankPersistence dlFileRankPersistence;
984            @BeanReference(type = DLFileRankFinder.class)
985            protected DLFileRankFinder dlFileRankFinder;
986            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
987            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
988            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
989            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
990            @BeanReference(type = DLFileShortcutPersistence.class)
991            protected DLFileShortcutPersistence dlFileShortcutPersistence;
992            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
993            protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
994            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
995            protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
996            @BeanReference(type = DLFileVersionPersistence.class)
997            protected DLFileVersionPersistence dlFileVersionPersistence;
998            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
999            protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1000            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1001            protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1002            @BeanReference(type = DLFolderPersistence.class)
1003            protected DLFolderPersistence dlFolderPersistence;
1004            @BeanReference(type = DLFolderFinder.class)
1005            protected DLFolderFinder dlFolderFinder;
1006            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1007            protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1008            @BeanReference(type = DLSyncEventPersistence.class)
1009            protected DLSyncEventPersistence dlSyncEventPersistence;
1010            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1011            protected com.liferay.counter.service.CounterLocalService counterLocalService;
1012            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1013            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1014            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1015            protected com.liferay.portal.service.UserLocalService userLocalService;
1016            @BeanReference(type = com.liferay.portal.service.UserService.class)
1017            protected com.liferay.portal.service.UserService userService;
1018            @BeanReference(type = UserPersistence.class)
1019            protected UserPersistence userPersistence;
1020            @BeanReference(type = UserFinder.class)
1021            protected UserFinder userFinder;
1022            @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
1023            protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1024            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1025            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1026            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1027            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1028            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1029            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1030            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
1031            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
1032            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
1033            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
1034            @BeanReference(type = DDMStructurePersistence.class)
1035            protected DDMStructurePersistence ddmStructurePersistence;
1036            @BeanReference(type = DDMStructureFinder.class)
1037            protected DDMStructureFinder ddmStructureFinder;
1038            private String _beanIdentifier;
1039    }