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.LockFinder;
026    import com.liferay.portal.service.persistence.LockPersistence;
027    import com.liferay.portal.service.persistence.RepositoryPersistence;
028    import com.liferay.portal.service.persistence.UserFinder;
029    import com.liferay.portal.service.persistence.UserPersistence;
030    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
031    import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
032    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
033    
034    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
035    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
036    import com.liferay.portlet.documentlibrary.model.DLFolder;
037    import com.liferay.portlet.documentlibrary.service.DLFolderService;
038    import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
039    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
040    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
041    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
042    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
043    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
044    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
045    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
046    import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
047    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
048    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
049    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
050    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
051    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
052    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
053    
054    import javax.sql.DataSource;
055    
056    /**
057     * Provides the base implementation for the document library folder remote service.
058     *
059     * <p>
060     * 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.DLFolderServiceImpl}.
061     * </p>
062     *
063     * @author Brian Wing Shun Chan
064     * @see com.liferay.portlet.documentlibrary.service.impl.DLFolderServiceImpl
065     * @see com.liferay.portlet.documentlibrary.service.DLFolderServiceUtil
066     * @generated
067     */
068    public abstract class DLFolderServiceBaseImpl extends BaseServiceImpl
069            implements DLFolderService, IdentifiableBean {
070            /*
071             * NOTE FOR DEVELOPERS:
072             *
073             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLFolderServiceUtil} to access the document library folder remote service.
074             */
075    
076            /**
077             * Returns the d l app local service.
078             *
079             * @return the d l app local service
080             */
081            public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
082                    return dlAppLocalService;
083            }
084    
085            /**
086             * Sets the d l app local service.
087             *
088             * @param dlAppLocalService the d l app local service
089             */
090            public void setDLAppLocalService(
091                    com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
092                    this.dlAppLocalService = dlAppLocalService;
093            }
094    
095            /**
096             * Returns the d l app remote service.
097             *
098             * @return the d l app remote service
099             */
100            public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
101                    return dlAppService;
102            }
103    
104            /**
105             * Sets the d l app remote service.
106             *
107             * @param dlAppService the d l app remote service
108             */
109            public void setDLAppService(
110                    com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
111                    this.dlAppService = dlAppService;
112            }
113    
114            /**
115             * Returns the d l app helper local service.
116             *
117             * @return the d l app helper local service
118             */
119            public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
120                    return dlAppHelperLocalService;
121            }
122    
123            /**
124             * Sets the d l app helper local service.
125             *
126             * @param dlAppHelperLocalService the d l app helper local service
127             */
128            public void setDLAppHelperLocalService(
129                    com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
130                    this.dlAppHelperLocalService = dlAppHelperLocalService;
131            }
132    
133            /**
134             * Returns the document library content local service.
135             *
136             * @return the document library content local service
137             */
138            public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
139                    return dlContentLocalService;
140            }
141    
142            /**
143             * Sets the document library content local service.
144             *
145             * @param dlContentLocalService the document library content local service
146             */
147            public void setDLContentLocalService(
148                    com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
149                    this.dlContentLocalService = dlContentLocalService;
150            }
151    
152            /**
153             * Returns the document library content persistence.
154             *
155             * @return the document library content persistence
156             */
157            public DLContentPersistence getDLContentPersistence() {
158                    return dlContentPersistence;
159            }
160    
161            /**
162             * Sets the document library content persistence.
163             *
164             * @param dlContentPersistence the document library content persistence
165             */
166            public void setDLContentPersistence(
167                    DLContentPersistence dlContentPersistence) {
168                    this.dlContentPersistence = dlContentPersistence;
169            }
170    
171            /**
172             * Returns the document library file entry local service.
173             *
174             * @return the document library file entry local service
175             */
176            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
177                    return dlFileEntryLocalService;
178            }
179    
180            /**
181             * Sets the document library file entry local service.
182             *
183             * @param dlFileEntryLocalService the document library file entry local service
184             */
185            public void setDLFileEntryLocalService(
186                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
187                    this.dlFileEntryLocalService = dlFileEntryLocalService;
188            }
189    
190            /**
191             * Returns the document library file entry remote service.
192             *
193             * @return the document library file entry remote service
194             */
195            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
196                    return dlFileEntryService;
197            }
198    
199            /**
200             * Sets the document library file entry remote service.
201             *
202             * @param dlFileEntryService the document library file entry remote service
203             */
204            public void setDLFileEntryService(
205                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
206                    this.dlFileEntryService = dlFileEntryService;
207            }
208    
209            /**
210             * Returns the document library file entry persistence.
211             *
212             * @return the document library file entry persistence
213             */
214            public DLFileEntryPersistence getDLFileEntryPersistence() {
215                    return dlFileEntryPersistence;
216            }
217    
218            /**
219             * Sets the document library file entry persistence.
220             *
221             * @param dlFileEntryPersistence the document library file entry persistence
222             */
223            public void setDLFileEntryPersistence(
224                    DLFileEntryPersistence dlFileEntryPersistence) {
225                    this.dlFileEntryPersistence = dlFileEntryPersistence;
226            }
227    
228            /**
229             * Returns the document library file entry finder.
230             *
231             * @return the document library file entry finder
232             */
233            public DLFileEntryFinder getDLFileEntryFinder() {
234                    return dlFileEntryFinder;
235            }
236    
237            /**
238             * Sets the document library file entry finder.
239             *
240             * @param dlFileEntryFinder the document library file entry finder
241             */
242            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
243                    this.dlFileEntryFinder = dlFileEntryFinder;
244            }
245    
246            /**
247             * Returns the document library file entry metadata local service.
248             *
249             * @return the document library file entry metadata local service
250             */
251            public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
252                    return dlFileEntryMetadataLocalService;
253            }
254    
255            /**
256             * Sets the document library file entry metadata local service.
257             *
258             * @param dlFileEntryMetadataLocalService the document library file entry metadata local service
259             */
260            public void setDLFileEntryMetadataLocalService(
261                    com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
262                    this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
263            }
264    
265            /**
266             * Returns the document library file entry metadata persistence.
267             *
268             * @return the document library file entry metadata persistence
269             */
270            public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
271                    return dlFileEntryMetadataPersistence;
272            }
273    
274            /**
275             * Sets the document library file entry metadata persistence.
276             *
277             * @param dlFileEntryMetadataPersistence the document library file entry metadata persistence
278             */
279            public void setDLFileEntryMetadataPersistence(
280                    DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
281                    this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
282            }
283    
284            /**
285             * Returns the document library file entry type local service.
286             *
287             * @return the document library file entry type local service
288             */
289            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
290                    return dlFileEntryTypeLocalService;
291            }
292    
293            /**
294             * Sets the document library file entry type local service.
295             *
296             * @param dlFileEntryTypeLocalService the document library file entry type local service
297             */
298            public void setDLFileEntryTypeLocalService(
299                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
300                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
301            }
302    
303            /**
304             * Returns the document library file entry type remote service.
305             *
306             * @return the document library file entry type remote service
307             */
308            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
309                    return dlFileEntryTypeService;
310            }
311    
312            /**
313             * Sets the document library file entry type remote service.
314             *
315             * @param dlFileEntryTypeService the document library file entry type remote service
316             */
317            public void setDLFileEntryTypeService(
318                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
319                    this.dlFileEntryTypeService = dlFileEntryTypeService;
320            }
321    
322            /**
323             * Returns the document library file entry type persistence.
324             *
325             * @return the document library file entry type persistence
326             */
327            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
328                    return dlFileEntryTypePersistence;
329            }
330    
331            /**
332             * Sets the document library file entry type persistence.
333             *
334             * @param dlFileEntryTypePersistence the document library file entry type persistence
335             */
336            public void setDLFileEntryTypePersistence(
337                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
338                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
339            }
340    
341            /**
342             * Returns the document library file entry type finder.
343             *
344             * @return the document library file entry type finder
345             */
346            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
347                    return dlFileEntryTypeFinder;
348            }
349    
350            /**
351             * Sets the document library file entry type finder.
352             *
353             * @param dlFileEntryTypeFinder the document library file entry type finder
354             */
355            public void setDLFileEntryTypeFinder(
356                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
357                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
358            }
359    
360            /**
361             * Returns the document library file rank local service.
362             *
363             * @return the document library file rank local service
364             */
365            public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
366                    return dlFileRankLocalService;
367            }
368    
369            /**
370             * Sets the document library file rank local service.
371             *
372             * @param dlFileRankLocalService the document library file rank local service
373             */
374            public void setDLFileRankLocalService(
375                    com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
376                    this.dlFileRankLocalService = dlFileRankLocalService;
377            }
378    
379            /**
380             * Returns the document library file rank persistence.
381             *
382             * @return the document library file rank persistence
383             */
384            public DLFileRankPersistence getDLFileRankPersistence() {
385                    return dlFileRankPersistence;
386            }
387    
388            /**
389             * Sets the document library file rank persistence.
390             *
391             * @param dlFileRankPersistence the document library file rank persistence
392             */
393            public void setDLFileRankPersistence(
394                    DLFileRankPersistence dlFileRankPersistence) {
395                    this.dlFileRankPersistence = dlFileRankPersistence;
396            }
397    
398            /**
399             * Returns the document library file rank finder.
400             *
401             * @return the document library file rank finder
402             */
403            public DLFileRankFinder getDLFileRankFinder() {
404                    return dlFileRankFinder;
405            }
406    
407            /**
408             * Sets the document library file rank finder.
409             *
410             * @param dlFileRankFinder the document library file rank finder
411             */
412            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
413                    this.dlFileRankFinder = dlFileRankFinder;
414            }
415    
416            /**
417             * Returns the document library file shortcut local service.
418             *
419             * @return the document library file shortcut local service
420             */
421            public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
422                    return dlFileShortcutLocalService;
423            }
424    
425            /**
426             * Sets the document library file shortcut local service.
427             *
428             * @param dlFileShortcutLocalService the document library file shortcut local service
429             */
430            public void setDLFileShortcutLocalService(
431                    com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
432                    this.dlFileShortcutLocalService = dlFileShortcutLocalService;
433            }
434    
435            /**
436             * Returns the document library file shortcut remote service.
437             *
438             * @return the document library file shortcut remote service
439             */
440            public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
441                    return dlFileShortcutService;
442            }
443    
444            /**
445             * Sets the document library file shortcut remote service.
446             *
447             * @param dlFileShortcutService the document library file shortcut remote service
448             */
449            public void setDLFileShortcutService(
450                    com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
451                    this.dlFileShortcutService = dlFileShortcutService;
452            }
453    
454            /**
455             * Returns the document library file shortcut persistence.
456             *
457             * @return the document library file shortcut persistence
458             */
459            public DLFileShortcutPersistence getDLFileShortcutPersistence() {
460                    return dlFileShortcutPersistence;
461            }
462    
463            /**
464             * Sets the document library file shortcut persistence.
465             *
466             * @param dlFileShortcutPersistence the document library file shortcut persistence
467             */
468            public void setDLFileShortcutPersistence(
469                    DLFileShortcutPersistence dlFileShortcutPersistence) {
470                    this.dlFileShortcutPersistence = dlFileShortcutPersistence;
471            }
472    
473            /**
474             * Returns the document library file version local service.
475             *
476             * @return the document library file version local service
477             */
478            public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
479                    return dlFileVersionLocalService;
480            }
481    
482            /**
483             * Sets the document library file version local service.
484             *
485             * @param dlFileVersionLocalService the document library file version local service
486             */
487            public void setDLFileVersionLocalService(
488                    com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
489                    this.dlFileVersionLocalService = dlFileVersionLocalService;
490            }
491    
492            /**
493             * Returns the document library file version remote service.
494             *
495             * @return the document library file version remote service
496             */
497            public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
498                    return dlFileVersionService;
499            }
500    
501            /**
502             * Sets the document library file version remote service.
503             *
504             * @param dlFileVersionService the document library file version remote service
505             */
506            public void setDLFileVersionService(
507                    com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
508                    this.dlFileVersionService = dlFileVersionService;
509            }
510    
511            /**
512             * Returns the document library file version persistence.
513             *
514             * @return the document library file version persistence
515             */
516            public DLFileVersionPersistence getDLFileVersionPersistence() {
517                    return dlFileVersionPersistence;
518            }
519    
520            /**
521             * Sets the document library file version persistence.
522             *
523             * @param dlFileVersionPersistence the document library file version persistence
524             */
525            public void setDLFileVersionPersistence(
526                    DLFileVersionPersistence dlFileVersionPersistence) {
527                    this.dlFileVersionPersistence = dlFileVersionPersistence;
528            }
529    
530            /**
531             * Returns the document library folder local service.
532             *
533             * @return the document library folder local service
534             */
535            public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
536                    return dlFolderLocalService;
537            }
538    
539            /**
540             * Sets the document library folder local service.
541             *
542             * @param dlFolderLocalService the document library folder local service
543             */
544            public void setDLFolderLocalService(
545                    com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
546                    this.dlFolderLocalService = dlFolderLocalService;
547            }
548    
549            /**
550             * Returns the document library folder remote service.
551             *
552             * @return the document library folder remote service
553             */
554            public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
555                    return dlFolderService;
556            }
557    
558            /**
559             * Sets the document library folder remote service.
560             *
561             * @param dlFolderService the document library folder remote service
562             */
563            public void setDLFolderService(
564                    com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
565                    this.dlFolderService = dlFolderService;
566            }
567    
568            /**
569             * Returns the document library folder persistence.
570             *
571             * @return the document library folder persistence
572             */
573            public DLFolderPersistence getDLFolderPersistence() {
574                    return dlFolderPersistence;
575            }
576    
577            /**
578             * Sets the document library folder persistence.
579             *
580             * @param dlFolderPersistence the document library folder persistence
581             */
582            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
583                    this.dlFolderPersistence = dlFolderPersistence;
584            }
585    
586            /**
587             * Returns the document library folder finder.
588             *
589             * @return the document library folder finder
590             */
591            public DLFolderFinder getDLFolderFinder() {
592                    return dlFolderFinder;
593            }
594    
595            /**
596             * Sets the document library folder finder.
597             *
598             * @param dlFolderFinder the document library folder finder
599             */
600            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
601                    this.dlFolderFinder = dlFolderFinder;
602            }
603    
604            /**
605             * Returns the d l sync event local service.
606             *
607             * @return the d l sync event local service
608             */
609            public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
610                    return dlSyncEventLocalService;
611            }
612    
613            /**
614             * Sets the d l sync event local service.
615             *
616             * @param dlSyncEventLocalService the d l sync event local service
617             */
618            public void setDLSyncEventLocalService(
619                    com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
620                    this.dlSyncEventLocalService = dlSyncEventLocalService;
621            }
622    
623            /**
624             * Returns the d l sync event persistence.
625             *
626             * @return the d l sync event persistence
627             */
628            public DLSyncEventPersistence getDLSyncEventPersistence() {
629                    return dlSyncEventPersistence;
630            }
631    
632            /**
633             * Sets the d l sync event persistence.
634             *
635             * @param dlSyncEventPersistence the d l sync event persistence
636             */
637            public void setDLSyncEventPersistence(
638                    DLSyncEventPersistence dlSyncEventPersistence) {
639                    this.dlSyncEventPersistence = dlSyncEventPersistence;
640            }
641    
642            /**
643             * Returns the counter local service.
644             *
645             * @return the counter local service
646             */
647            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
648                    return counterLocalService;
649            }
650    
651            /**
652             * Sets the counter local service.
653             *
654             * @param counterLocalService the counter local service
655             */
656            public void setCounterLocalService(
657                    com.liferay.counter.service.CounterLocalService counterLocalService) {
658                    this.counterLocalService = counterLocalService;
659            }
660    
661            /**
662             * Returns the group local service.
663             *
664             * @return the group local service
665             */
666            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
667                    return groupLocalService;
668            }
669    
670            /**
671             * Sets the group local service.
672             *
673             * @param groupLocalService the group local service
674             */
675            public void setGroupLocalService(
676                    com.liferay.portal.service.GroupLocalService groupLocalService) {
677                    this.groupLocalService = groupLocalService;
678            }
679    
680            /**
681             * Returns the group remote service.
682             *
683             * @return the group remote service
684             */
685            public com.liferay.portal.service.GroupService getGroupService() {
686                    return groupService;
687            }
688    
689            /**
690             * Sets the group remote service.
691             *
692             * @param groupService the group remote service
693             */
694            public void setGroupService(
695                    com.liferay.portal.service.GroupService groupService) {
696                    this.groupService = groupService;
697            }
698    
699            /**
700             * Returns the group persistence.
701             *
702             * @return the group persistence
703             */
704            public GroupPersistence getGroupPersistence() {
705                    return groupPersistence;
706            }
707    
708            /**
709             * Sets the group persistence.
710             *
711             * @param groupPersistence the group persistence
712             */
713            public void setGroupPersistence(GroupPersistence groupPersistence) {
714                    this.groupPersistence = groupPersistence;
715            }
716    
717            /**
718             * Returns the group finder.
719             *
720             * @return the group finder
721             */
722            public GroupFinder getGroupFinder() {
723                    return groupFinder;
724            }
725    
726            /**
727             * Sets the group finder.
728             *
729             * @param groupFinder the group finder
730             */
731            public void setGroupFinder(GroupFinder groupFinder) {
732                    this.groupFinder = groupFinder;
733            }
734    
735            /**
736             * Returns the lock local service.
737             *
738             * @return the lock local service
739             */
740            public com.liferay.portal.service.LockLocalService getLockLocalService() {
741                    return lockLocalService;
742            }
743    
744            /**
745             * Sets the lock local service.
746             *
747             * @param lockLocalService the lock local service
748             */
749            public void setLockLocalService(
750                    com.liferay.portal.service.LockLocalService lockLocalService) {
751                    this.lockLocalService = lockLocalService;
752            }
753    
754            /**
755             * Returns the lock persistence.
756             *
757             * @return the lock persistence
758             */
759            public LockPersistence getLockPersistence() {
760                    return lockPersistence;
761            }
762    
763            /**
764             * Sets the lock persistence.
765             *
766             * @param lockPersistence the lock persistence
767             */
768            public void setLockPersistence(LockPersistence lockPersistence) {
769                    this.lockPersistence = lockPersistence;
770            }
771    
772            /**
773             * Returns the lock finder.
774             *
775             * @return the lock finder
776             */
777            public LockFinder getLockFinder() {
778                    return lockFinder;
779            }
780    
781            /**
782             * Sets the lock finder.
783             *
784             * @param lockFinder the lock finder
785             */
786            public void setLockFinder(LockFinder lockFinder) {
787                    this.lockFinder = lockFinder;
788            }
789    
790            /**
791             * Returns the repository local service.
792             *
793             * @return the repository local service
794             */
795            public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
796                    return repositoryLocalService;
797            }
798    
799            /**
800             * Sets the repository local service.
801             *
802             * @param repositoryLocalService the repository local service
803             */
804            public void setRepositoryLocalService(
805                    com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
806                    this.repositoryLocalService = repositoryLocalService;
807            }
808    
809            /**
810             * Returns the repository remote service.
811             *
812             * @return the repository remote service
813             */
814            public com.liferay.portal.service.RepositoryService getRepositoryService() {
815                    return repositoryService;
816            }
817    
818            /**
819             * Sets the repository remote service.
820             *
821             * @param repositoryService the repository remote service
822             */
823            public void setRepositoryService(
824                    com.liferay.portal.service.RepositoryService repositoryService) {
825                    this.repositoryService = repositoryService;
826            }
827    
828            /**
829             * Returns the repository persistence.
830             *
831             * @return the repository persistence
832             */
833            public RepositoryPersistence getRepositoryPersistence() {
834                    return repositoryPersistence;
835            }
836    
837            /**
838             * Sets the repository persistence.
839             *
840             * @param repositoryPersistence the repository persistence
841             */
842            public void setRepositoryPersistence(
843                    RepositoryPersistence repositoryPersistence) {
844                    this.repositoryPersistence = repositoryPersistence;
845            }
846    
847            /**
848             * Returns the resource local service.
849             *
850             * @return the resource local service
851             */
852            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
853                    return resourceLocalService;
854            }
855    
856            /**
857             * Sets the resource local service.
858             *
859             * @param resourceLocalService the resource local service
860             */
861            public void setResourceLocalService(
862                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
863                    this.resourceLocalService = resourceLocalService;
864            }
865    
866            /**
867             * Returns the user local service.
868             *
869             * @return the user local service
870             */
871            public com.liferay.portal.service.UserLocalService getUserLocalService() {
872                    return userLocalService;
873            }
874    
875            /**
876             * Sets the user local service.
877             *
878             * @param userLocalService the user local service
879             */
880            public void setUserLocalService(
881                    com.liferay.portal.service.UserLocalService userLocalService) {
882                    this.userLocalService = userLocalService;
883            }
884    
885            /**
886             * Returns the user remote service.
887             *
888             * @return the user remote service
889             */
890            public com.liferay.portal.service.UserService getUserService() {
891                    return userService;
892            }
893    
894            /**
895             * Sets the user remote service.
896             *
897             * @param userService the user remote service
898             */
899            public void setUserService(
900                    com.liferay.portal.service.UserService userService) {
901                    this.userService = userService;
902            }
903    
904            /**
905             * Returns the user persistence.
906             *
907             * @return the user persistence
908             */
909            public UserPersistence getUserPersistence() {
910                    return userPersistence;
911            }
912    
913            /**
914             * Sets the user persistence.
915             *
916             * @param userPersistence the user persistence
917             */
918            public void setUserPersistence(UserPersistence userPersistence) {
919                    this.userPersistence = userPersistence;
920            }
921    
922            /**
923             * Returns the user finder.
924             *
925             * @return the user finder
926             */
927            public UserFinder getUserFinder() {
928                    return userFinder;
929            }
930    
931            /**
932             * Sets the user finder.
933             *
934             * @param userFinder the user finder
935             */
936            public void setUserFinder(UserFinder userFinder) {
937                    this.userFinder = userFinder;
938            }
939    
940            /**
941             * Returns the web d a v props local service.
942             *
943             * @return the web d a v props local service
944             */
945            public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
946                    return webDAVPropsLocalService;
947            }
948    
949            /**
950             * Sets the web d a v props local service.
951             *
952             * @param webDAVPropsLocalService the web d a v props local service
953             */
954            public void setWebDAVPropsLocalService(
955                    com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
956                    this.webDAVPropsLocalService = webDAVPropsLocalService;
957            }
958    
959            /**
960             * Returns the web d a v props persistence.
961             *
962             * @return the web d a v props persistence
963             */
964            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
965                    return webDAVPropsPersistence;
966            }
967    
968            /**
969             * Sets the web d a v props persistence.
970             *
971             * @param webDAVPropsPersistence the web d a v props persistence
972             */
973            public void setWebDAVPropsPersistence(
974                    WebDAVPropsPersistence webDAVPropsPersistence) {
975                    this.webDAVPropsPersistence = webDAVPropsPersistence;
976            }
977    
978            /**
979             * Returns the workflow definition link local service.
980             *
981             * @return the workflow definition link local service
982             */
983            public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
984                    return workflowDefinitionLinkLocalService;
985            }
986    
987            /**
988             * Sets the workflow definition link local service.
989             *
990             * @param workflowDefinitionLinkLocalService the workflow definition link local service
991             */
992            public void setWorkflowDefinitionLinkLocalService(
993                    com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
994                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
995            }
996    
997            /**
998             * Returns the workflow definition link persistence.
999             *
1000             * @return the workflow definition link persistence
1001             */
1002            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
1003                    return workflowDefinitionLinkPersistence;
1004            }
1005    
1006            /**
1007             * Sets the workflow definition link persistence.
1008             *
1009             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
1010             */
1011            public void setWorkflowDefinitionLinkPersistence(
1012                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
1013                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
1014            }
1015    
1016            /**
1017             * Returns the workflow instance link local service.
1018             *
1019             * @return the workflow instance link local service
1020             */
1021            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1022                    return workflowInstanceLinkLocalService;
1023            }
1024    
1025            /**
1026             * Sets the workflow instance link local service.
1027             *
1028             * @param workflowInstanceLinkLocalService the workflow instance link local service
1029             */
1030            public void setWorkflowInstanceLinkLocalService(
1031                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1032                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1033            }
1034    
1035            /**
1036             * Returns the workflow instance link persistence.
1037             *
1038             * @return the workflow instance link persistence
1039             */
1040            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1041                    return workflowInstanceLinkPersistence;
1042            }
1043    
1044            /**
1045             * Sets the workflow instance link persistence.
1046             *
1047             * @param workflowInstanceLinkPersistence the workflow instance link persistence
1048             */
1049            public void setWorkflowInstanceLinkPersistence(
1050                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1051                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1052            }
1053    
1054            /**
1055             * Returns the asset entry local service.
1056             *
1057             * @return the asset entry local service
1058             */
1059            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1060                    return assetEntryLocalService;
1061            }
1062    
1063            /**
1064             * Sets the asset entry local service.
1065             *
1066             * @param assetEntryLocalService the asset entry local service
1067             */
1068            public void setAssetEntryLocalService(
1069                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1070                    this.assetEntryLocalService = assetEntryLocalService;
1071            }
1072    
1073            /**
1074             * Returns the asset entry remote service.
1075             *
1076             * @return the asset entry remote service
1077             */
1078            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1079                    return assetEntryService;
1080            }
1081    
1082            /**
1083             * Sets the asset entry remote service.
1084             *
1085             * @param assetEntryService the asset entry remote service
1086             */
1087            public void setAssetEntryService(
1088                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1089                    this.assetEntryService = assetEntryService;
1090            }
1091    
1092            /**
1093             * Returns the asset entry persistence.
1094             *
1095             * @return the asset entry persistence
1096             */
1097            public AssetEntryPersistence getAssetEntryPersistence() {
1098                    return assetEntryPersistence;
1099            }
1100    
1101            /**
1102             * Sets the asset entry persistence.
1103             *
1104             * @param assetEntryPersistence the asset entry persistence
1105             */
1106            public void setAssetEntryPersistence(
1107                    AssetEntryPersistence assetEntryPersistence) {
1108                    this.assetEntryPersistence = assetEntryPersistence;
1109            }
1110    
1111            /**
1112             * Returns the asset entry finder.
1113             *
1114             * @return the asset entry finder
1115             */
1116            public AssetEntryFinder getAssetEntryFinder() {
1117                    return assetEntryFinder;
1118            }
1119    
1120            /**
1121             * Sets the asset entry finder.
1122             *
1123             * @param assetEntryFinder the asset entry finder
1124             */
1125            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1126                    this.assetEntryFinder = assetEntryFinder;
1127            }
1128    
1129            /**
1130             * Returns the expando row local service.
1131             *
1132             * @return the expando row local service
1133             */
1134            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1135                    return expandoRowLocalService;
1136            }
1137    
1138            /**
1139             * Sets the expando row local service.
1140             *
1141             * @param expandoRowLocalService the expando row local service
1142             */
1143            public void setExpandoRowLocalService(
1144                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1145                    this.expandoRowLocalService = expandoRowLocalService;
1146            }
1147    
1148            /**
1149             * Returns the expando row persistence.
1150             *
1151             * @return the expando row persistence
1152             */
1153            public ExpandoRowPersistence getExpandoRowPersistence() {
1154                    return expandoRowPersistence;
1155            }
1156    
1157            /**
1158             * Sets the expando row persistence.
1159             *
1160             * @param expandoRowPersistence the expando row persistence
1161             */
1162            public void setExpandoRowPersistence(
1163                    ExpandoRowPersistence expandoRowPersistence) {
1164                    this.expandoRowPersistence = expandoRowPersistence;
1165            }
1166    
1167            /**
1168             * Returns the trash entry local service.
1169             *
1170             * @return the trash entry local service
1171             */
1172            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1173                    return trashEntryLocalService;
1174            }
1175    
1176            /**
1177             * Sets the trash entry local service.
1178             *
1179             * @param trashEntryLocalService the trash entry local service
1180             */
1181            public void setTrashEntryLocalService(
1182                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1183                    this.trashEntryLocalService = trashEntryLocalService;
1184            }
1185    
1186            /**
1187             * Returns the trash entry remote service.
1188             *
1189             * @return the trash entry remote service
1190             */
1191            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1192                    return trashEntryService;
1193            }
1194    
1195            /**
1196             * Sets the trash entry remote service.
1197             *
1198             * @param trashEntryService the trash entry remote service
1199             */
1200            public void setTrashEntryService(
1201                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1202                    this.trashEntryService = trashEntryService;
1203            }
1204    
1205            /**
1206             * Returns the trash entry persistence.
1207             *
1208             * @return the trash entry persistence
1209             */
1210            public TrashEntryPersistence getTrashEntryPersistence() {
1211                    return trashEntryPersistence;
1212            }
1213    
1214            /**
1215             * Sets the trash entry persistence.
1216             *
1217             * @param trashEntryPersistence the trash entry persistence
1218             */
1219            public void setTrashEntryPersistence(
1220                    TrashEntryPersistence trashEntryPersistence) {
1221                    this.trashEntryPersistence = trashEntryPersistence;
1222            }
1223    
1224            public void afterPropertiesSet() {
1225            }
1226    
1227            public void destroy() {
1228            }
1229    
1230            /**
1231             * Returns the Spring bean ID for this bean.
1232             *
1233             * @return the Spring bean ID for this bean
1234             */
1235            @Override
1236            public String getBeanIdentifier() {
1237                    return _beanIdentifier;
1238            }
1239    
1240            /**
1241             * Sets the Spring bean ID for this bean.
1242             *
1243             * @param beanIdentifier the Spring bean ID for this bean
1244             */
1245            @Override
1246            public void setBeanIdentifier(String beanIdentifier) {
1247                    _beanIdentifier = beanIdentifier;
1248            }
1249    
1250            protected Class<?> getModelClass() {
1251                    return DLFolder.class;
1252            }
1253    
1254            protected String getModelClassName() {
1255                    return DLFolder.class.getName();
1256            }
1257    
1258            /**
1259             * Performs an SQL query.
1260             *
1261             * @param sql the sql query
1262             */
1263            protected void runSQL(String sql) throws SystemException {
1264                    try {
1265                            DataSource dataSource = dlFolderPersistence.getDataSource();
1266    
1267                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1268                                            sql, new int[0]);
1269    
1270                            sqlUpdate.update();
1271                    }
1272                    catch (Exception e) {
1273                            throw new SystemException(e);
1274                    }
1275            }
1276    
1277            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1278            protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1279            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1280            protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1281            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1282            protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1283            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1284            protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1285            @BeanReference(type = DLContentPersistence.class)
1286            protected DLContentPersistence dlContentPersistence;
1287            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1288            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1289            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1290            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1291            @BeanReference(type = DLFileEntryPersistence.class)
1292            protected DLFileEntryPersistence dlFileEntryPersistence;
1293            @BeanReference(type = DLFileEntryFinder.class)
1294            protected DLFileEntryFinder dlFileEntryFinder;
1295            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1296            protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1297            @BeanReference(type = DLFileEntryMetadataPersistence.class)
1298            protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1299            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1300            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1301            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1302            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1303            @BeanReference(type = DLFileEntryTypePersistence.class)
1304            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1305            @BeanReference(type = DLFileEntryTypeFinder.class)
1306            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1307            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
1308            protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
1309            @BeanReference(type = DLFileRankPersistence.class)
1310            protected DLFileRankPersistence dlFileRankPersistence;
1311            @BeanReference(type = DLFileRankFinder.class)
1312            protected DLFileRankFinder dlFileRankFinder;
1313            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1314            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1315            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1316            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1317            @BeanReference(type = DLFileShortcutPersistence.class)
1318            protected DLFileShortcutPersistence dlFileShortcutPersistence;
1319            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1320            protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1321            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1322            protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1323            @BeanReference(type = DLFileVersionPersistence.class)
1324            protected DLFileVersionPersistence dlFileVersionPersistence;
1325            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1326            protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1327            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1328            protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1329            @BeanReference(type = DLFolderPersistence.class)
1330            protected DLFolderPersistence dlFolderPersistence;
1331            @BeanReference(type = DLFolderFinder.class)
1332            protected DLFolderFinder dlFolderFinder;
1333            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1334            protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1335            @BeanReference(type = DLSyncEventPersistence.class)
1336            protected DLSyncEventPersistence dlSyncEventPersistence;
1337            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1338            protected com.liferay.counter.service.CounterLocalService counterLocalService;
1339            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1340            protected com.liferay.portal.service.GroupLocalService groupLocalService;
1341            @BeanReference(type = com.liferay.portal.service.GroupService.class)
1342            protected com.liferay.portal.service.GroupService groupService;
1343            @BeanReference(type = GroupPersistence.class)
1344            protected GroupPersistence groupPersistence;
1345            @BeanReference(type = GroupFinder.class)
1346            protected GroupFinder groupFinder;
1347            @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1348            protected com.liferay.portal.service.LockLocalService lockLocalService;
1349            @BeanReference(type = LockPersistence.class)
1350            protected LockPersistence lockPersistence;
1351            @BeanReference(type = LockFinder.class)
1352            protected LockFinder lockFinder;
1353            @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1354            protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1355            @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1356            protected com.liferay.portal.service.RepositoryService repositoryService;
1357            @BeanReference(type = RepositoryPersistence.class)
1358            protected RepositoryPersistence repositoryPersistence;
1359            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1360            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1361            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1362            protected com.liferay.portal.service.UserLocalService userLocalService;
1363            @BeanReference(type = com.liferay.portal.service.UserService.class)
1364            protected com.liferay.portal.service.UserService userService;
1365            @BeanReference(type = UserPersistence.class)
1366            protected UserPersistence userPersistence;
1367            @BeanReference(type = UserFinder.class)
1368            protected UserFinder userFinder;
1369            @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1370            protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1371            @BeanReference(type = WebDAVPropsPersistence.class)
1372            protected WebDAVPropsPersistence webDAVPropsPersistence;
1373            @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
1374            protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1375            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1376            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1377            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1378            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1379            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1380            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1381            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1382            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1383            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1384            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1385            @BeanReference(type = AssetEntryPersistence.class)
1386            protected AssetEntryPersistence assetEntryPersistence;
1387            @BeanReference(type = AssetEntryFinder.class)
1388            protected AssetEntryFinder assetEntryFinder;
1389            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1390            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1391            @BeanReference(type = ExpandoRowPersistence.class)
1392            protected ExpandoRowPersistence expandoRowPersistence;
1393            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1394            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1395            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1396            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1397            @BeanReference(type = TrashEntryPersistence.class)
1398            protected TrashEntryPersistence trashEntryPersistence;
1399            private String _beanIdentifier;
1400    }