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