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.LockFinder;
028 import com.liferay.portal.service.persistence.LockPersistence;
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.WorkflowDefinitionLinkPersistence;
034 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
035 import com.liferay.portal.util.PortalUtil;
036
037 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
038 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
039 import com.liferay.portlet.documentlibrary.model.DLFolder;
040 import com.liferay.portlet.documentlibrary.service.DLFolderService;
041 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
042 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
043 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
044 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
045 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
046 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
047 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
048 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
049 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
050 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
051
052 import javax.sql.DataSource;
053
054
066 public abstract class DLFolderServiceBaseImpl extends BaseServiceImpl
067 implements DLFolderService, IdentifiableBean {
068
073
074
079 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
080 return dlFolderLocalService;
081 }
082
083
088 public void setDLFolderLocalService(
089 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
090 this.dlFolderLocalService = dlFolderLocalService;
091 }
092
093
098 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
099 return dlFolderService;
100 }
101
102
107 public void setDLFolderService(
108 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
109 this.dlFolderService = dlFolderService;
110 }
111
112
117 public DLFolderPersistence getDLFolderPersistence() {
118 return dlFolderPersistence;
119 }
120
121
126 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
127 this.dlFolderPersistence = dlFolderPersistence;
128 }
129
130
135 public DLFolderFinder getDLFolderFinder() {
136 return dlFolderFinder;
137 }
138
139
144 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
145 this.dlFolderFinder = dlFolderFinder;
146 }
147
148
153 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
154 return counterLocalService;
155 }
156
157
162 public void setCounterLocalService(
163 com.liferay.counter.service.CounterLocalService counterLocalService) {
164 this.counterLocalService = counterLocalService;
165 }
166
167
172 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
173 return groupLocalService;
174 }
175
176
181 public void setGroupLocalService(
182 com.liferay.portal.service.GroupLocalService groupLocalService) {
183 this.groupLocalService = groupLocalService;
184 }
185
186
191 public com.liferay.portal.service.GroupService getGroupService() {
192 return groupService;
193 }
194
195
200 public void setGroupService(
201 com.liferay.portal.service.GroupService groupService) {
202 this.groupService = groupService;
203 }
204
205
210 public GroupPersistence getGroupPersistence() {
211 return groupPersistence;
212 }
213
214
219 public void setGroupPersistence(GroupPersistence groupPersistence) {
220 this.groupPersistence = groupPersistence;
221 }
222
223
228 public GroupFinder getGroupFinder() {
229 return groupFinder;
230 }
231
232
237 public void setGroupFinder(GroupFinder groupFinder) {
238 this.groupFinder = groupFinder;
239 }
240
241
246 public com.liferay.portal.service.LockLocalService getLockLocalService() {
247 return lockLocalService;
248 }
249
250
255 public void setLockLocalService(
256 com.liferay.portal.service.LockLocalService lockLocalService) {
257 this.lockLocalService = lockLocalService;
258 }
259
260
265 public LockPersistence getLockPersistence() {
266 return lockPersistence;
267 }
268
269
274 public void setLockPersistence(LockPersistence lockPersistence) {
275 this.lockPersistence = lockPersistence;
276 }
277
278
283 public LockFinder getLockFinder() {
284 return lockFinder;
285 }
286
287
292 public void setLockFinder(LockFinder lockFinder) {
293 this.lockFinder = lockFinder;
294 }
295
296
301 public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
302 return repositoryLocalService;
303 }
304
305
310 public void setRepositoryLocalService(
311 com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
312 this.repositoryLocalService = repositoryLocalService;
313 }
314
315
320 public com.liferay.portal.service.RepositoryService getRepositoryService() {
321 return repositoryService;
322 }
323
324
329 public void setRepositoryService(
330 com.liferay.portal.service.RepositoryService repositoryService) {
331 this.repositoryService = repositoryService;
332 }
333
334
339 public RepositoryPersistence getRepositoryPersistence() {
340 return repositoryPersistence;
341 }
342
343
348 public void setRepositoryPersistence(
349 RepositoryPersistence repositoryPersistence) {
350 this.repositoryPersistence = repositoryPersistence;
351 }
352
353
358 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
359 return resourceLocalService;
360 }
361
362
367 public void setResourceLocalService(
368 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
369 this.resourceLocalService = resourceLocalService;
370 }
371
372
377 public com.liferay.portal.service.UserLocalService getUserLocalService() {
378 return userLocalService;
379 }
380
381
386 public void setUserLocalService(
387 com.liferay.portal.service.UserLocalService userLocalService) {
388 this.userLocalService = userLocalService;
389 }
390
391
396 public com.liferay.portal.service.UserService getUserService() {
397 return userService;
398 }
399
400
405 public void setUserService(
406 com.liferay.portal.service.UserService userService) {
407 this.userService = userService;
408 }
409
410
415 public UserPersistence getUserPersistence() {
416 return userPersistence;
417 }
418
419
424 public void setUserPersistence(UserPersistence userPersistence) {
425 this.userPersistence = userPersistence;
426 }
427
428
433 public UserFinder getUserFinder() {
434 return userFinder;
435 }
436
437
442 public void setUserFinder(UserFinder userFinder) {
443 this.userFinder = userFinder;
444 }
445
446
451 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
452 return webDAVPropsLocalService;
453 }
454
455
460 public void setWebDAVPropsLocalService(
461 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
462 this.webDAVPropsLocalService = webDAVPropsLocalService;
463 }
464
465
470 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
471 return webDAVPropsPersistence;
472 }
473
474
479 public void setWebDAVPropsPersistence(
480 WebDAVPropsPersistence webDAVPropsPersistence) {
481 this.webDAVPropsPersistence = webDAVPropsPersistence;
482 }
483
484
489 public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
490 return workflowDefinitionLinkLocalService;
491 }
492
493
498 public void setWorkflowDefinitionLinkLocalService(
499 com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
500 this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
501 }
502
503
508 public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
509 return workflowDefinitionLinkPersistence;
510 }
511
512
517 public void setWorkflowDefinitionLinkPersistence(
518 WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
519 this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
520 }
521
522
527 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
528 return workflowInstanceLinkLocalService;
529 }
530
531
536 public void setWorkflowInstanceLinkLocalService(
537 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
538 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
539 }
540
541
546 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
547 return workflowInstanceLinkPersistence;
548 }
549
550
555 public void setWorkflowInstanceLinkPersistence(
556 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
557 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
558 }
559
560
565 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
566 return assetEntryLocalService;
567 }
568
569
574 public void setAssetEntryLocalService(
575 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
576 this.assetEntryLocalService = assetEntryLocalService;
577 }
578
579
584 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
585 return assetEntryService;
586 }
587
588
593 public void setAssetEntryService(
594 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
595 this.assetEntryService = assetEntryService;
596 }
597
598
603 public AssetEntryPersistence getAssetEntryPersistence() {
604 return assetEntryPersistence;
605 }
606
607
612 public void setAssetEntryPersistence(
613 AssetEntryPersistence assetEntryPersistence) {
614 this.assetEntryPersistence = assetEntryPersistence;
615 }
616
617
622 public AssetEntryFinder getAssetEntryFinder() {
623 return assetEntryFinder;
624 }
625
626
631 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
632 this.assetEntryFinder = assetEntryFinder;
633 }
634
635
640 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
641 return dlAppHelperLocalService;
642 }
643
644
649 public void setDLAppHelperLocalService(
650 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
651 this.dlAppHelperLocalService = dlAppHelperLocalService;
652 }
653
654
659 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
660 return dlFileEntryLocalService;
661 }
662
663
668 public void setDLFileEntryLocalService(
669 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
670 this.dlFileEntryLocalService = dlFileEntryLocalService;
671 }
672
673
678 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
679 return dlFileEntryService;
680 }
681
682
687 public void setDLFileEntryService(
688 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
689 this.dlFileEntryService = dlFileEntryService;
690 }
691
692
697 public DLFileEntryPersistence getDLFileEntryPersistence() {
698 return dlFileEntryPersistence;
699 }
700
701
706 public void setDLFileEntryPersistence(
707 DLFileEntryPersistence dlFileEntryPersistence) {
708 this.dlFileEntryPersistence = dlFileEntryPersistence;
709 }
710
711
716 public DLFileEntryFinder getDLFileEntryFinder() {
717 return dlFileEntryFinder;
718 }
719
720
725 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
726 this.dlFileEntryFinder = dlFileEntryFinder;
727 }
728
729
734 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
735 return dlFileEntryTypeLocalService;
736 }
737
738
743 public void setDLFileEntryTypeLocalService(
744 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
745 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
746 }
747
748
753 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
754 return dlFileEntryTypeService;
755 }
756
757
762 public void setDLFileEntryTypeService(
763 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
764 this.dlFileEntryTypeService = dlFileEntryTypeService;
765 }
766
767
772 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
773 return dlFileEntryTypePersistence;
774 }
775
776
781 public void setDLFileEntryTypePersistence(
782 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
783 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
784 }
785
786
791 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
792 return dlFileEntryTypeFinder;
793 }
794
795
800 public void setDLFileEntryTypeFinder(
801 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
802 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
803 }
804
805
810 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
811 return dlFileShortcutLocalService;
812 }
813
814
819 public void setDLFileShortcutLocalService(
820 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
821 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
822 }
823
824
829 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
830 return dlFileShortcutService;
831 }
832
833
838 public void setDLFileShortcutService(
839 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
840 this.dlFileShortcutService = dlFileShortcutService;
841 }
842
843
848 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
849 return dlFileShortcutPersistence;
850 }
851
852
857 public void setDLFileShortcutPersistence(
858 DLFileShortcutPersistence dlFileShortcutPersistence) {
859 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
860 }
861
862
867 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
868 return dlFileVersionLocalService;
869 }
870
871
876 public void setDLFileVersionLocalService(
877 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
878 this.dlFileVersionLocalService = dlFileVersionLocalService;
879 }
880
881
886 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
887 return dlFileVersionService;
888 }
889
890
895 public void setDLFileVersionService(
896 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
897 this.dlFileVersionService = dlFileVersionService;
898 }
899
900
905 public DLFileVersionPersistence getDLFileVersionPersistence() {
906 return dlFileVersionPersistence;
907 }
908
909
914 public void setDLFileVersionPersistence(
915 DLFileVersionPersistence dlFileVersionPersistence) {
916 this.dlFileVersionPersistence = dlFileVersionPersistence;
917 }
918
919
924 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
925 return expandoRowLocalService;
926 }
927
928
933 public void setExpandoRowLocalService(
934 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
935 this.expandoRowLocalService = expandoRowLocalService;
936 }
937
938
943 public ExpandoRowPersistence getExpandoRowPersistence() {
944 return expandoRowPersistence;
945 }
946
947
952 public void setExpandoRowPersistence(
953 ExpandoRowPersistence expandoRowPersistence) {
954 this.expandoRowPersistence = expandoRowPersistence;
955 }
956
957
962 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
963 return trashEntryLocalService;
964 }
965
966
971 public void setTrashEntryLocalService(
972 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
973 this.trashEntryLocalService = trashEntryLocalService;
974 }
975
976
981 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
982 return trashEntryService;
983 }
984
985
990 public void setTrashEntryService(
991 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
992 this.trashEntryService = trashEntryService;
993 }
994
995
1000 public TrashEntryPersistence getTrashEntryPersistence() {
1001 return trashEntryPersistence;
1002 }
1003
1004
1009 public void setTrashEntryPersistence(
1010 TrashEntryPersistence trashEntryPersistence) {
1011 this.trashEntryPersistence = trashEntryPersistence;
1012 }
1013
1014 public void afterPropertiesSet() {
1015 }
1016
1017 public void destroy() {
1018 }
1019
1020
1025 @Override
1026 public String getBeanIdentifier() {
1027 return _beanIdentifier;
1028 }
1029
1030
1035 @Override
1036 public void setBeanIdentifier(String beanIdentifier) {
1037 _beanIdentifier = beanIdentifier;
1038 }
1039
1040 protected Class<?> getModelClass() {
1041 return DLFolder.class;
1042 }
1043
1044 protected String getModelClassName() {
1045 return DLFolder.class.getName();
1046 }
1047
1048
1053 protected void runSQL(String sql) {
1054 try {
1055 DataSource dataSource = dlFolderPersistence.getDataSource();
1056
1057 DB db = DBFactoryUtil.getDB();
1058
1059 sql = db.buildSQL(sql);
1060 sql = PortalUtil.transformSQL(sql);
1061
1062 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1063 sql, new int[0]);
1064
1065 sqlUpdate.update();
1066 }
1067 catch (Exception e) {
1068 throw new SystemException(e);
1069 }
1070 }
1071
1072 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1073 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1074 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1075 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1076 @BeanReference(type = DLFolderPersistence.class)
1077 protected DLFolderPersistence dlFolderPersistence;
1078 @BeanReference(type = DLFolderFinder.class)
1079 protected DLFolderFinder dlFolderFinder;
1080 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1081 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1082 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1083 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1084 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1085 protected com.liferay.portal.service.GroupService groupService;
1086 @BeanReference(type = GroupPersistence.class)
1087 protected GroupPersistence groupPersistence;
1088 @BeanReference(type = GroupFinder.class)
1089 protected GroupFinder groupFinder;
1090 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1091 protected com.liferay.portal.service.LockLocalService lockLocalService;
1092 @BeanReference(type = LockPersistence.class)
1093 protected LockPersistence lockPersistence;
1094 @BeanReference(type = LockFinder.class)
1095 protected LockFinder lockFinder;
1096 @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1097 protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1098 @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1099 protected com.liferay.portal.service.RepositoryService repositoryService;
1100 @BeanReference(type = RepositoryPersistence.class)
1101 protected RepositoryPersistence repositoryPersistence;
1102 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1103 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1104 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1105 protected com.liferay.portal.service.UserLocalService userLocalService;
1106 @BeanReference(type = com.liferay.portal.service.UserService.class)
1107 protected com.liferay.portal.service.UserService userService;
1108 @BeanReference(type = UserPersistence.class)
1109 protected UserPersistence userPersistence;
1110 @BeanReference(type = UserFinder.class)
1111 protected UserFinder userFinder;
1112 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1113 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1114 @BeanReference(type = WebDAVPropsPersistence.class)
1115 protected WebDAVPropsPersistence webDAVPropsPersistence;
1116 @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
1117 protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1118 @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1119 protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1120 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1121 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1122 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1123 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1124 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1125 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1126 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1127 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1128 @BeanReference(type = AssetEntryPersistence.class)
1129 protected AssetEntryPersistence assetEntryPersistence;
1130 @BeanReference(type = AssetEntryFinder.class)
1131 protected AssetEntryFinder assetEntryFinder;
1132 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1133 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1134 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1135 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1136 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1137 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1138 @BeanReference(type = DLFileEntryPersistence.class)
1139 protected DLFileEntryPersistence dlFileEntryPersistence;
1140 @BeanReference(type = DLFileEntryFinder.class)
1141 protected DLFileEntryFinder dlFileEntryFinder;
1142 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1143 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1144 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1145 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1146 @BeanReference(type = DLFileEntryTypePersistence.class)
1147 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1148 @BeanReference(type = DLFileEntryTypeFinder.class)
1149 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1150 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1151 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1152 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1153 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1154 @BeanReference(type = DLFileShortcutPersistence.class)
1155 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1156 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1157 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1158 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1159 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1160 @BeanReference(type = DLFileVersionPersistence.class)
1161 protected DLFileVersionPersistence dlFileVersionPersistence;
1162 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1163 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1164 @BeanReference(type = ExpandoRowPersistence.class)
1165 protected ExpandoRowPersistence expandoRowPersistence;
1166 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1167 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1168 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1169 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1170 @BeanReference(type = TrashEntryPersistence.class)
1171 protected TrashEntryPersistence trashEntryPersistence;
1172 private String _beanIdentifier;
1173 }