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