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