001
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.GroupFinder;
026 import com.liferay.portal.service.persistence.GroupPersistence;
027 import com.liferay.portal.service.persistence.RepositoryPersistence;
028 import com.liferay.portal.service.persistence.UserFinder;
029 import com.liferay.portal.service.persistence.UserPersistence;
030 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
031 import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
032 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
033 import com.liferay.portal.util.PortalUtil;
034
035 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
036 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
037 import com.liferay.portlet.documentlibrary.model.DLFolder;
038 import com.liferay.portlet.documentlibrary.service.DLFolderService;
039 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
040 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
041 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
042 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
043 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
044 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
045 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
046 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
047 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
048 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
049
050 import javax.sql.DataSource;
051
052
064 public abstract class DLFolderServiceBaseImpl extends BaseServiceImpl
065 implements DLFolderService, IdentifiableBean {
066
071
072
077 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
078 return dlFolderLocalService;
079 }
080
081
086 public void setDLFolderLocalService(
087 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
088 this.dlFolderLocalService = dlFolderLocalService;
089 }
090
091
096 public DLFolderService getDLFolderService() {
097 return dlFolderService;
098 }
099
100
105 public void setDLFolderService(DLFolderService dlFolderService) {
106 this.dlFolderService = dlFolderService;
107 }
108
109
114 public DLFolderPersistence getDLFolderPersistence() {
115 return dlFolderPersistence;
116 }
117
118
123 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
124 this.dlFolderPersistence = dlFolderPersistence;
125 }
126
127
132 public DLFolderFinder getDLFolderFinder() {
133 return dlFolderFinder;
134 }
135
136
141 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
142 this.dlFolderFinder = dlFolderFinder;
143 }
144
145
150 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
151 return counterLocalService;
152 }
153
154
159 public void setCounterLocalService(
160 com.liferay.counter.service.CounterLocalService counterLocalService) {
161 this.counterLocalService = counterLocalService;
162 }
163
164
169 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
170 return groupLocalService;
171 }
172
173
178 public void setGroupLocalService(
179 com.liferay.portal.service.GroupLocalService groupLocalService) {
180 this.groupLocalService = groupLocalService;
181 }
182
183
188 public com.liferay.portal.service.GroupService getGroupService() {
189 return groupService;
190 }
191
192
197 public void setGroupService(
198 com.liferay.portal.service.GroupService groupService) {
199 this.groupService = groupService;
200 }
201
202
207 public GroupPersistence getGroupPersistence() {
208 return groupPersistence;
209 }
210
211
216 public void setGroupPersistence(GroupPersistence groupPersistence) {
217 this.groupPersistence = groupPersistence;
218 }
219
220
225 public GroupFinder getGroupFinder() {
226 return groupFinder;
227 }
228
229
234 public void setGroupFinder(GroupFinder groupFinder) {
235 this.groupFinder = groupFinder;
236 }
237
238
243 public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
244 return repositoryLocalService;
245 }
246
247
252 public void setRepositoryLocalService(
253 com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
254 this.repositoryLocalService = repositoryLocalService;
255 }
256
257
262 public com.liferay.portal.service.RepositoryService getRepositoryService() {
263 return repositoryService;
264 }
265
266
271 public void setRepositoryService(
272 com.liferay.portal.service.RepositoryService repositoryService) {
273 this.repositoryService = repositoryService;
274 }
275
276
281 public RepositoryPersistence getRepositoryPersistence() {
282 return repositoryPersistence;
283 }
284
285
290 public void setRepositoryPersistence(
291 RepositoryPersistence repositoryPersistence) {
292 this.repositoryPersistence = repositoryPersistence;
293 }
294
295
300 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
301 return resourceLocalService;
302 }
303
304
309 public void setResourceLocalService(
310 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
311 this.resourceLocalService = resourceLocalService;
312 }
313
314
319 public com.liferay.portal.service.UserLocalService getUserLocalService() {
320 return userLocalService;
321 }
322
323
328 public void setUserLocalService(
329 com.liferay.portal.service.UserLocalService userLocalService) {
330 this.userLocalService = userLocalService;
331 }
332
333
338 public com.liferay.portal.service.UserService getUserService() {
339 return userService;
340 }
341
342
347 public void setUserService(
348 com.liferay.portal.service.UserService userService) {
349 this.userService = userService;
350 }
351
352
357 public UserPersistence getUserPersistence() {
358 return userPersistence;
359 }
360
361
366 public void setUserPersistence(UserPersistence userPersistence) {
367 this.userPersistence = userPersistence;
368 }
369
370
375 public UserFinder getUserFinder() {
376 return userFinder;
377 }
378
379
384 public void setUserFinder(UserFinder userFinder) {
385 this.userFinder = userFinder;
386 }
387
388
393 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
394 return webDAVPropsLocalService;
395 }
396
397
402 public void setWebDAVPropsLocalService(
403 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
404 this.webDAVPropsLocalService = webDAVPropsLocalService;
405 }
406
407
412 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
413 return webDAVPropsPersistence;
414 }
415
416
421 public void setWebDAVPropsPersistence(
422 WebDAVPropsPersistence webDAVPropsPersistence) {
423 this.webDAVPropsPersistence = webDAVPropsPersistence;
424 }
425
426
431 public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
432 return workflowDefinitionLinkLocalService;
433 }
434
435
440 public void setWorkflowDefinitionLinkLocalService(
441 com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
442 this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
443 }
444
445
450 public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
451 return workflowDefinitionLinkPersistence;
452 }
453
454
459 public void setWorkflowDefinitionLinkPersistence(
460 WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
461 this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
462 }
463
464
469 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
470 return workflowInstanceLinkLocalService;
471 }
472
473
478 public void setWorkflowInstanceLinkLocalService(
479 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
480 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
481 }
482
483
488 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
489 return workflowInstanceLinkPersistence;
490 }
491
492
497 public void setWorkflowInstanceLinkPersistence(
498 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
499 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
500 }
501
502
507 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
508 return assetEntryLocalService;
509 }
510
511
516 public void setAssetEntryLocalService(
517 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
518 this.assetEntryLocalService = assetEntryLocalService;
519 }
520
521
526 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
527 return assetEntryService;
528 }
529
530
535 public void setAssetEntryService(
536 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
537 this.assetEntryService = assetEntryService;
538 }
539
540
545 public AssetEntryPersistence getAssetEntryPersistence() {
546 return assetEntryPersistence;
547 }
548
549
554 public void setAssetEntryPersistence(
555 AssetEntryPersistence assetEntryPersistence) {
556 this.assetEntryPersistence = assetEntryPersistence;
557 }
558
559
564 public AssetEntryFinder getAssetEntryFinder() {
565 return assetEntryFinder;
566 }
567
568
573 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
574 this.assetEntryFinder = assetEntryFinder;
575 }
576
577
582 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
583 return dlAppHelperLocalService;
584 }
585
586
591 public void setDLAppHelperLocalService(
592 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
593 this.dlAppHelperLocalService = dlAppHelperLocalService;
594 }
595
596
601 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
602 return dlFileEntryLocalService;
603 }
604
605
610 public void setDLFileEntryLocalService(
611 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
612 this.dlFileEntryLocalService = dlFileEntryLocalService;
613 }
614
615
620 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
621 return dlFileEntryService;
622 }
623
624
629 public void setDLFileEntryService(
630 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
631 this.dlFileEntryService = dlFileEntryService;
632 }
633
634
639 public DLFileEntryPersistence getDLFileEntryPersistence() {
640 return dlFileEntryPersistence;
641 }
642
643
648 public void setDLFileEntryPersistence(
649 DLFileEntryPersistence dlFileEntryPersistence) {
650 this.dlFileEntryPersistence = dlFileEntryPersistence;
651 }
652
653
658 public DLFileEntryFinder getDLFileEntryFinder() {
659 return dlFileEntryFinder;
660 }
661
662
667 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
668 this.dlFileEntryFinder = dlFileEntryFinder;
669 }
670
671
676 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
677 return dlFileEntryTypeLocalService;
678 }
679
680
685 public void setDLFileEntryTypeLocalService(
686 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
687 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
688 }
689
690
695 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
696 return dlFileEntryTypeService;
697 }
698
699
704 public void setDLFileEntryTypeService(
705 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
706 this.dlFileEntryTypeService = dlFileEntryTypeService;
707 }
708
709
714 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
715 return dlFileEntryTypePersistence;
716 }
717
718
723 public void setDLFileEntryTypePersistence(
724 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
725 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
726 }
727
728
733 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
734 return dlFileEntryTypeFinder;
735 }
736
737
742 public void setDLFileEntryTypeFinder(
743 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
744 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
745 }
746
747
752 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
753 return dlFileShortcutLocalService;
754 }
755
756
761 public void setDLFileShortcutLocalService(
762 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
763 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
764 }
765
766
771 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
772 return dlFileShortcutService;
773 }
774
775
780 public void setDLFileShortcutService(
781 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
782 this.dlFileShortcutService = dlFileShortcutService;
783 }
784
785
790 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
791 return dlFileShortcutPersistence;
792 }
793
794
799 public void setDLFileShortcutPersistence(
800 DLFileShortcutPersistence dlFileShortcutPersistence) {
801 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
802 }
803
804
809 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
810 return dlFileVersionLocalService;
811 }
812
813
818 public void setDLFileVersionLocalService(
819 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
820 this.dlFileVersionLocalService = dlFileVersionLocalService;
821 }
822
823
828 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
829 return dlFileVersionService;
830 }
831
832
837 public void setDLFileVersionService(
838 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
839 this.dlFileVersionService = dlFileVersionService;
840 }
841
842
847 public DLFileVersionPersistence getDLFileVersionPersistence() {
848 return dlFileVersionPersistence;
849 }
850
851
856 public void setDLFileVersionPersistence(
857 DLFileVersionPersistence dlFileVersionPersistence) {
858 this.dlFileVersionPersistence = dlFileVersionPersistence;
859 }
860
861
866 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
867 return expandoRowLocalService;
868 }
869
870
875 public void setExpandoRowLocalService(
876 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
877 this.expandoRowLocalService = expandoRowLocalService;
878 }
879
880
885 public ExpandoRowPersistence getExpandoRowPersistence() {
886 return expandoRowPersistence;
887 }
888
889
894 public void setExpandoRowPersistence(
895 ExpandoRowPersistence expandoRowPersistence) {
896 this.expandoRowPersistence = expandoRowPersistence;
897 }
898
899
904 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
905 return trashEntryLocalService;
906 }
907
908
913 public void setTrashEntryLocalService(
914 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
915 this.trashEntryLocalService = trashEntryLocalService;
916 }
917
918
923 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
924 return trashEntryService;
925 }
926
927
932 public void setTrashEntryService(
933 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
934 this.trashEntryService = trashEntryService;
935 }
936
937
942 public TrashEntryPersistence getTrashEntryPersistence() {
943 return trashEntryPersistence;
944 }
945
946
951 public void setTrashEntryPersistence(
952 TrashEntryPersistence trashEntryPersistence) {
953 this.trashEntryPersistence = trashEntryPersistence;
954 }
955
956 public void afterPropertiesSet() {
957 }
958
959 public void destroy() {
960 }
961
962
967 @Override
968 public String getBeanIdentifier() {
969 return _beanIdentifier;
970 }
971
972
977 @Override
978 public void setBeanIdentifier(String beanIdentifier) {
979 _beanIdentifier = beanIdentifier;
980 }
981
982 protected Class<?> getModelClass() {
983 return DLFolder.class;
984 }
985
986 protected String getModelClassName() {
987 return DLFolder.class.getName();
988 }
989
990
995 protected void runSQL(String sql) {
996 try {
997 DataSource dataSource = dlFolderPersistence.getDataSource();
998
999 DB db = DBFactoryUtil.getDB();
1000
1001 sql = db.buildSQL(sql);
1002 sql = PortalUtil.transformSQL(sql);
1003
1004 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1005 sql, new int[0]);
1006
1007 sqlUpdate.update();
1008 }
1009 catch (Exception e) {
1010 throw new SystemException(e);
1011 }
1012 }
1013
1014 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1015 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1016 @BeanReference(type = DLFolderService.class)
1017 protected DLFolderService dlFolderService;
1018 @BeanReference(type = DLFolderPersistence.class)
1019 protected DLFolderPersistence dlFolderPersistence;
1020 @BeanReference(type = DLFolderFinder.class)
1021 protected DLFolderFinder dlFolderFinder;
1022 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1023 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1024 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1025 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1026 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1027 protected com.liferay.portal.service.GroupService groupService;
1028 @BeanReference(type = GroupPersistence.class)
1029 protected GroupPersistence groupPersistence;
1030 @BeanReference(type = GroupFinder.class)
1031 protected GroupFinder groupFinder;
1032 @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1033 protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1034 @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1035 protected com.liferay.portal.service.RepositoryService repositoryService;
1036 @BeanReference(type = RepositoryPersistence.class)
1037 protected RepositoryPersistence repositoryPersistence;
1038 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1039 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1040 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1041 protected com.liferay.portal.service.UserLocalService userLocalService;
1042 @BeanReference(type = com.liferay.portal.service.UserService.class)
1043 protected com.liferay.portal.service.UserService userService;
1044 @BeanReference(type = UserPersistence.class)
1045 protected UserPersistence userPersistence;
1046 @BeanReference(type = UserFinder.class)
1047 protected UserFinder userFinder;
1048 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1049 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1050 @BeanReference(type = WebDAVPropsPersistence.class)
1051 protected WebDAVPropsPersistence webDAVPropsPersistence;
1052 @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
1053 protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1054 @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1055 protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1056 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1057 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1058 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1059 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1060 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1061 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1062 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1063 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1064 @BeanReference(type = AssetEntryPersistence.class)
1065 protected AssetEntryPersistence assetEntryPersistence;
1066 @BeanReference(type = AssetEntryFinder.class)
1067 protected AssetEntryFinder assetEntryFinder;
1068 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1069 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1070 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1071 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1072 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1073 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1074 @BeanReference(type = DLFileEntryPersistence.class)
1075 protected DLFileEntryPersistence dlFileEntryPersistence;
1076 @BeanReference(type = DLFileEntryFinder.class)
1077 protected DLFileEntryFinder dlFileEntryFinder;
1078 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1079 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1080 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1081 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1082 @BeanReference(type = DLFileEntryTypePersistence.class)
1083 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1084 @BeanReference(type = DLFileEntryTypeFinder.class)
1085 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1086 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1087 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1088 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1089 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1090 @BeanReference(type = DLFileShortcutPersistence.class)
1091 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1092 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1093 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1094 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1095 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1096 @BeanReference(type = DLFileVersionPersistence.class)
1097 protected DLFileVersionPersistence dlFileVersionPersistence;
1098 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1099 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1100 @BeanReference(type = ExpandoRowPersistence.class)
1101 protected ExpandoRowPersistence expandoRowPersistence;
1102 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1103 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1104 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1105 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1106 @BeanReference(type = TrashEntryPersistence.class)
1107 protected TrashEntryPersistence trashEntryPersistence;
1108 private String _beanIdentifier;
1109 }