001
014
015 package com.liferay.portlet.documentlibrary.service.base;
016
017 import com.liferay.asset.kernel.service.persistence.AssetEntryFinder;
018 import com.liferay.asset.kernel.service.persistence.AssetEntryPersistence;
019
020 import com.liferay.document.library.kernel.model.DLFolder;
021 import com.liferay.document.library.kernel.service.DLFolderService;
022 import com.liferay.document.library.kernel.service.persistence.DLFileEntryFinder;
023 import com.liferay.document.library.kernel.service.persistence.DLFileEntryPersistence;
024 import com.liferay.document.library.kernel.service.persistence.DLFileEntryTypeFinder;
025 import com.liferay.document.library.kernel.service.persistence.DLFileEntryTypePersistence;
026 import com.liferay.document.library.kernel.service.persistence.DLFileShortcutPersistence;
027 import com.liferay.document.library.kernel.service.persistence.DLFileVersionPersistence;
028 import com.liferay.document.library.kernel.service.persistence.DLFolderFinder;
029 import com.liferay.document.library.kernel.service.persistence.DLFolderPersistence;
030
031 import com.liferay.expando.kernel.service.persistence.ExpandoRowPersistence;
032
033 import com.liferay.portal.kernel.bean.BeanReference;
034 import com.liferay.portal.kernel.dao.db.DB;
035 import com.liferay.portal.kernel.dao.db.DBManagerUtil;
036 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
037 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
038 import com.liferay.portal.kernel.exception.SystemException;
039 import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService;
040 import com.liferay.portal.kernel.service.BaseServiceImpl;
041 import com.liferay.portal.kernel.service.persistence.GroupFinder;
042 import com.liferay.portal.kernel.service.persistence.GroupPersistence;
043 import com.liferay.portal.kernel.service.persistence.RepositoryPersistence;
044 import com.liferay.portal.kernel.service.persistence.UserFinder;
045 import com.liferay.portal.kernel.service.persistence.UserPersistence;
046 import com.liferay.portal.kernel.service.persistence.WebDAVPropsPersistence;
047 import com.liferay.portal.kernel.service.persistence.WorkflowDefinitionLinkPersistence;
048 import com.liferay.portal.kernel.service.persistence.WorkflowInstanceLinkPersistence;
049 import com.liferay.portal.kernel.util.PortalUtil;
050
051 import com.liferay.ratings.kernel.service.persistence.RatingsStatsFinder;
052 import com.liferay.ratings.kernel.service.persistence.RatingsStatsPersistence;
053
054 import com.liferay.trash.kernel.service.persistence.TrashEntryPersistence;
055
056 import javax.sql.DataSource;
057
058
070 public abstract class DLFolderServiceBaseImpl extends BaseServiceImpl
071 implements DLFolderService, IdentifiableOSGiService {
072
077
078
083 public com.liferay.document.library.kernel.service.DLFolderLocalService getDLFolderLocalService() {
084 return dlFolderLocalService;
085 }
086
087
092 public void setDLFolderLocalService(
093 com.liferay.document.library.kernel.service.DLFolderLocalService dlFolderLocalService) {
094 this.dlFolderLocalService = dlFolderLocalService;
095 }
096
097
102 public DLFolderService getDLFolderService() {
103 return dlFolderService;
104 }
105
106
111 public void setDLFolderService(DLFolderService dlFolderService) {
112 this.dlFolderService = dlFolderService;
113 }
114
115
120 public DLFolderPersistence getDLFolderPersistence() {
121 return dlFolderPersistence;
122 }
123
124
129 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
130 this.dlFolderPersistence = dlFolderPersistence;
131 }
132
133
138 public DLFolderFinder getDLFolderFinder() {
139 return dlFolderFinder;
140 }
141
142
147 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
148 this.dlFolderFinder = dlFolderFinder;
149 }
150
151
156 public com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService() {
157 return counterLocalService;
158 }
159
160
165 public void setCounterLocalService(
166 com.liferay.counter.kernel.service.CounterLocalService counterLocalService) {
167 this.counterLocalService = counterLocalService;
168 }
169
170
175 public com.liferay.portal.kernel.service.GroupLocalService getGroupLocalService() {
176 return groupLocalService;
177 }
178
179
184 public void setGroupLocalService(
185 com.liferay.portal.kernel.service.GroupLocalService groupLocalService) {
186 this.groupLocalService = groupLocalService;
187 }
188
189
194 public com.liferay.portal.kernel.service.GroupService getGroupService() {
195 return groupService;
196 }
197
198
203 public void setGroupService(
204 com.liferay.portal.kernel.service.GroupService groupService) {
205 this.groupService = groupService;
206 }
207
208
213 public GroupPersistence getGroupPersistence() {
214 return groupPersistence;
215 }
216
217
222 public void setGroupPersistence(GroupPersistence groupPersistence) {
223 this.groupPersistence = groupPersistence;
224 }
225
226
231 public GroupFinder getGroupFinder() {
232 return groupFinder;
233 }
234
235
240 public void setGroupFinder(GroupFinder groupFinder) {
241 this.groupFinder = groupFinder;
242 }
243
244
249 public com.liferay.portal.kernel.service.RepositoryLocalService getRepositoryLocalService() {
250 return repositoryLocalService;
251 }
252
253
258 public void setRepositoryLocalService(
259 com.liferay.portal.kernel.service.RepositoryLocalService repositoryLocalService) {
260 this.repositoryLocalService = repositoryLocalService;
261 }
262
263
268 public com.liferay.portal.kernel.service.RepositoryService getRepositoryService() {
269 return repositoryService;
270 }
271
272
277 public void setRepositoryService(
278 com.liferay.portal.kernel.service.RepositoryService repositoryService) {
279 this.repositoryService = repositoryService;
280 }
281
282
287 public RepositoryPersistence getRepositoryPersistence() {
288 return repositoryPersistence;
289 }
290
291
296 public void setRepositoryPersistence(
297 RepositoryPersistence repositoryPersistence) {
298 this.repositoryPersistence = repositoryPersistence;
299 }
300
301
306 public com.liferay.portal.kernel.service.ResourceLocalService getResourceLocalService() {
307 return resourceLocalService;
308 }
309
310
315 public void setResourceLocalService(
316 com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService) {
317 this.resourceLocalService = resourceLocalService;
318 }
319
320
325 public com.liferay.portal.kernel.service.UserLocalService getUserLocalService() {
326 return userLocalService;
327 }
328
329
334 public void setUserLocalService(
335 com.liferay.portal.kernel.service.UserLocalService userLocalService) {
336 this.userLocalService = userLocalService;
337 }
338
339
344 public com.liferay.portal.kernel.service.UserService getUserService() {
345 return userService;
346 }
347
348
353 public void setUserService(
354 com.liferay.portal.kernel.service.UserService userService) {
355 this.userService = userService;
356 }
357
358
363 public UserPersistence getUserPersistence() {
364 return userPersistence;
365 }
366
367
372 public void setUserPersistence(UserPersistence userPersistence) {
373 this.userPersistence = userPersistence;
374 }
375
376
381 public UserFinder getUserFinder() {
382 return userFinder;
383 }
384
385
390 public void setUserFinder(UserFinder userFinder) {
391 this.userFinder = userFinder;
392 }
393
394
399 public com.liferay.portal.kernel.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
400 return webDAVPropsLocalService;
401 }
402
403
408 public void setWebDAVPropsLocalService(
409 com.liferay.portal.kernel.service.WebDAVPropsLocalService webDAVPropsLocalService) {
410 this.webDAVPropsLocalService = webDAVPropsLocalService;
411 }
412
413
418 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
419 return webDAVPropsPersistence;
420 }
421
422
427 public void setWebDAVPropsPersistence(
428 WebDAVPropsPersistence webDAVPropsPersistence) {
429 this.webDAVPropsPersistence = webDAVPropsPersistence;
430 }
431
432
437 public com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
438 return workflowDefinitionLinkLocalService;
439 }
440
441
446 public void setWorkflowDefinitionLinkLocalService(
447 com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
448 this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
449 }
450
451
456 public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
457 return workflowDefinitionLinkPersistence;
458 }
459
460
465 public void setWorkflowDefinitionLinkPersistence(
466 WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
467 this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
468 }
469
470
475 public com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
476 return workflowInstanceLinkLocalService;
477 }
478
479
484 public void setWorkflowInstanceLinkLocalService(
485 com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
486 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
487 }
488
489
494 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
495 return workflowInstanceLinkPersistence;
496 }
497
498
503 public void setWorkflowInstanceLinkPersistence(
504 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
505 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
506 }
507
508
513 public com.liferay.asset.kernel.service.AssetEntryLocalService getAssetEntryLocalService() {
514 return assetEntryLocalService;
515 }
516
517
522 public void setAssetEntryLocalService(
523 com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService) {
524 this.assetEntryLocalService = assetEntryLocalService;
525 }
526
527
532 public com.liferay.asset.kernel.service.AssetEntryService getAssetEntryService() {
533 return assetEntryService;
534 }
535
536
541 public void setAssetEntryService(
542 com.liferay.asset.kernel.service.AssetEntryService assetEntryService) {
543 this.assetEntryService = assetEntryService;
544 }
545
546
551 public AssetEntryPersistence getAssetEntryPersistence() {
552 return assetEntryPersistence;
553 }
554
555
560 public void setAssetEntryPersistence(
561 AssetEntryPersistence assetEntryPersistence) {
562 this.assetEntryPersistence = assetEntryPersistence;
563 }
564
565
570 public AssetEntryFinder getAssetEntryFinder() {
571 return assetEntryFinder;
572 }
573
574
579 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
580 this.assetEntryFinder = assetEntryFinder;
581 }
582
583
588 public com.liferay.document.library.kernel.service.DLAppHelperLocalService getDLAppHelperLocalService() {
589 return dlAppHelperLocalService;
590 }
591
592
597 public void setDLAppHelperLocalService(
598 com.liferay.document.library.kernel.service.DLAppHelperLocalService dlAppHelperLocalService) {
599 this.dlAppHelperLocalService = dlAppHelperLocalService;
600 }
601
602
607 public com.liferay.document.library.kernel.service.DLFileEntryLocalService getDLFileEntryLocalService() {
608 return dlFileEntryLocalService;
609 }
610
611
616 public void setDLFileEntryLocalService(
617 com.liferay.document.library.kernel.service.DLFileEntryLocalService dlFileEntryLocalService) {
618 this.dlFileEntryLocalService = dlFileEntryLocalService;
619 }
620
621
626 public com.liferay.document.library.kernel.service.DLFileEntryService getDLFileEntryService() {
627 return dlFileEntryService;
628 }
629
630
635 public void setDLFileEntryService(
636 com.liferay.document.library.kernel.service.DLFileEntryService dlFileEntryService) {
637 this.dlFileEntryService = dlFileEntryService;
638 }
639
640
645 public DLFileEntryPersistence getDLFileEntryPersistence() {
646 return dlFileEntryPersistence;
647 }
648
649
654 public void setDLFileEntryPersistence(
655 DLFileEntryPersistence dlFileEntryPersistence) {
656 this.dlFileEntryPersistence = dlFileEntryPersistence;
657 }
658
659
664 public DLFileEntryFinder getDLFileEntryFinder() {
665 return dlFileEntryFinder;
666 }
667
668
673 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
674 this.dlFileEntryFinder = dlFileEntryFinder;
675 }
676
677
682 public com.liferay.document.library.kernel.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
683 return dlFileEntryTypeLocalService;
684 }
685
686
691 public void setDLFileEntryTypeLocalService(
692 com.liferay.document.library.kernel.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
693 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
694 }
695
696
701 public com.liferay.document.library.kernel.service.DLFileEntryTypeService getDLFileEntryTypeService() {
702 return dlFileEntryTypeService;
703 }
704
705
710 public void setDLFileEntryTypeService(
711 com.liferay.document.library.kernel.service.DLFileEntryTypeService dlFileEntryTypeService) {
712 this.dlFileEntryTypeService = dlFileEntryTypeService;
713 }
714
715
720 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
721 return dlFileEntryTypePersistence;
722 }
723
724
729 public void setDLFileEntryTypePersistence(
730 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
731 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
732 }
733
734
739 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
740 return dlFileEntryTypeFinder;
741 }
742
743
748 public void setDLFileEntryTypeFinder(
749 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
750 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
751 }
752
753
758 public com.liferay.document.library.kernel.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
759 return dlFileShortcutLocalService;
760 }
761
762
767 public void setDLFileShortcutLocalService(
768 com.liferay.document.library.kernel.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
769 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
770 }
771
772
777 public com.liferay.document.library.kernel.service.DLFileShortcutService getDLFileShortcutService() {
778 return dlFileShortcutService;
779 }
780
781
786 public void setDLFileShortcutService(
787 com.liferay.document.library.kernel.service.DLFileShortcutService dlFileShortcutService) {
788 this.dlFileShortcutService = dlFileShortcutService;
789 }
790
791
796 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
797 return dlFileShortcutPersistence;
798 }
799
800
805 public void setDLFileShortcutPersistence(
806 DLFileShortcutPersistence dlFileShortcutPersistence) {
807 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
808 }
809
810
815 public com.liferay.document.library.kernel.service.DLFileVersionLocalService getDLFileVersionLocalService() {
816 return dlFileVersionLocalService;
817 }
818
819
824 public void setDLFileVersionLocalService(
825 com.liferay.document.library.kernel.service.DLFileVersionLocalService dlFileVersionLocalService) {
826 this.dlFileVersionLocalService = dlFileVersionLocalService;
827 }
828
829
834 public com.liferay.document.library.kernel.service.DLFileVersionService getDLFileVersionService() {
835 return dlFileVersionService;
836 }
837
838
843 public void setDLFileVersionService(
844 com.liferay.document.library.kernel.service.DLFileVersionService dlFileVersionService) {
845 this.dlFileVersionService = dlFileVersionService;
846 }
847
848
853 public DLFileVersionPersistence getDLFileVersionPersistence() {
854 return dlFileVersionPersistence;
855 }
856
857
862 public void setDLFileVersionPersistence(
863 DLFileVersionPersistence dlFileVersionPersistence) {
864 this.dlFileVersionPersistence = dlFileVersionPersistence;
865 }
866
867
872 public com.liferay.expando.kernel.service.ExpandoRowLocalService getExpandoRowLocalService() {
873 return expandoRowLocalService;
874 }
875
876
881 public void setExpandoRowLocalService(
882 com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService) {
883 this.expandoRowLocalService = expandoRowLocalService;
884 }
885
886
891 public ExpandoRowPersistence getExpandoRowPersistence() {
892 return expandoRowPersistence;
893 }
894
895
900 public void setExpandoRowPersistence(
901 ExpandoRowPersistence expandoRowPersistence) {
902 this.expandoRowPersistence = expandoRowPersistence;
903 }
904
905
910 public com.liferay.ratings.kernel.service.RatingsStatsLocalService getRatingsStatsLocalService() {
911 return ratingsStatsLocalService;
912 }
913
914
919 public void setRatingsStatsLocalService(
920 com.liferay.ratings.kernel.service.RatingsStatsLocalService ratingsStatsLocalService) {
921 this.ratingsStatsLocalService = ratingsStatsLocalService;
922 }
923
924
929 public RatingsStatsPersistence getRatingsStatsPersistence() {
930 return ratingsStatsPersistence;
931 }
932
933
938 public void setRatingsStatsPersistence(
939 RatingsStatsPersistence ratingsStatsPersistence) {
940 this.ratingsStatsPersistence = ratingsStatsPersistence;
941 }
942
943
948 public RatingsStatsFinder getRatingsStatsFinder() {
949 return ratingsStatsFinder;
950 }
951
952
957 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
958 this.ratingsStatsFinder = ratingsStatsFinder;
959 }
960
961
966 public com.liferay.trash.kernel.service.TrashEntryLocalService getTrashEntryLocalService() {
967 return trashEntryLocalService;
968 }
969
970
975 public void setTrashEntryLocalService(
976 com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService) {
977 this.trashEntryLocalService = trashEntryLocalService;
978 }
979
980
985 public com.liferay.trash.kernel.service.TrashEntryService getTrashEntryService() {
986 return trashEntryService;
987 }
988
989
994 public void setTrashEntryService(
995 com.liferay.trash.kernel.service.TrashEntryService trashEntryService) {
996 this.trashEntryService = trashEntryService;
997 }
998
999
1004 public TrashEntryPersistence getTrashEntryPersistence() {
1005 return trashEntryPersistence;
1006 }
1007
1008
1013 public void setTrashEntryPersistence(
1014 TrashEntryPersistence trashEntryPersistence) {
1015 this.trashEntryPersistence = trashEntryPersistence;
1016 }
1017
1018 public void afterPropertiesSet() {
1019 }
1020
1021 public void destroy() {
1022 }
1023
1024
1029 @Override
1030 public String getOSGiServiceIdentifier() {
1031 return DLFolderService.class.getName();
1032 }
1033
1034 protected Class<?> getModelClass() {
1035 return DLFolder.class;
1036 }
1037
1038 protected String getModelClassName() {
1039 return DLFolder.class.getName();
1040 }
1041
1042
1047 protected void runSQL(String sql) {
1048 try {
1049 DataSource dataSource = dlFolderPersistence.getDataSource();
1050
1051 DB db = DBManagerUtil.getDB();
1052
1053 sql = db.buildSQL(sql);
1054 sql = PortalUtil.transformSQL(sql);
1055
1056 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1057 sql, new int[0]);
1058
1059 sqlUpdate.update();
1060 }
1061 catch (Exception e) {
1062 throw new SystemException(e);
1063 }
1064 }
1065
1066 @BeanReference(type = com.liferay.document.library.kernel.service.DLFolderLocalService.class)
1067 protected com.liferay.document.library.kernel.service.DLFolderLocalService dlFolderLocalService;
1068 @BeanReference(type = com.liferay.document.library.kernel.service.DLFolderService.class)
1069 protected DLFolderService dlFolderService;
1070 @BeanReference(type = DLFolderPersistence.class)
1071 protected DLFolderPersistence dlFolderPersistence;
1072 @BeanReference(type = DLFolderFinder.class)
1073 protected DLFolderFinder dlFolderFinder;
1074 @BeanReference(type = com.liferay.counter.kernel.service.CounterLocalService.class)
1075 protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService;
1076 @BeanReference(type = com.liferay.portal.kernel.service.GroupLocalService.class)
1077 protected com.liferay.portal.kernel.service.GroupLocalService groupLocalService;
1078 @BeanReference(type = com.liferay.portal.kernel.service.GroupService.class)
1079 protected com.liferay.portal.kernel.service.GroupService groupService;
1080 @BeanReference(type = GroupPersistence.class)
1081 protected GroupPersistence groupPersistence;
1082 @BeanReference(type = GroupFinder.class)
1083 protected GroupFinder groupFinder;
1084 @BeanReference(type = com.liferay.portal.kernel.service.RepositoryLocalService.class)
1085 protected com.liferay.portal.kernel.service.RepositoryLocalService repositoryLocalService;
1086 @BeanReference(type = com.liferay.portal.kernel.service.RepositoryService.class)
1087 protected com.liferay.portal.kernel.service.RepositoryService repositoryService;
1088 @BeanReference(type = RepositoryPersistence.class)
1089 protected RepositoryPersistence repositoryPersistence;
1090 @BeanReference(type = com.liferay.portal.kernel.service.ResourceLocalService.class)
1091 protected com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService;
1092 @BeanReference(type = com.liferay.portal.kernel.service.UserLocalService.class)
1093 protected com.liferay.portal.kernel.service.UserLocalService userLocalService;
1094 @BeanReference(type = com.liferay.portal.kernel.service.UserService.class)
1095 protected com.liferay.portal.kernel.service.UserService userService;
1096 @BeanReference(type = UserPersistence.class)
1097 protected UserPersistence userPersistence;
1098 @BeanReference(type = UserFinder.class)
1099 protected UserFinder userFinder;
1100 @BeanReference(type = com.liferay.portal.kernel.service.WebDAVPropsLocalService.class)
1101 protected com.liferay.portal.kernel.service.WebDAVPropsLocalService webDAVPropsLocalService;
1102 @BeanReference(type = WebDAVPropsPersistence.class)
1103 protected WebDAVPropsPersistence webDAVPropsPersistence;
1104 @BeanReference(type = com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService.class)
1105 protected com.liferay.portal.kernel.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1106 @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1107 protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1108 @BeanReference(type = com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService.class)
1109 protected com.liferay.portal.kernel.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1110 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1111 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1112 @BeanReference(type = com.liferay.asset.kernel.service.AssetEntryLocalService.class)
1113 protected com.liferay.asset.kernel.service.AssetEntryLocalService assetEntryLocalService;
1114 @BeanReference(type = com.liferay.asset.kernel.service.AssetEntryService.class)
1115 protected com.liferay.asset.kernel.service.AssetEntryService assetEntryService;
1116 @BeanReference(type = AssetEntryPersistence.class)
1117 protected AssetEntryPersistence assetEntryPersistence;
1118 @BeanReference(type = AssetEntryFinder.class)
1119 protected AssetEntryFinder assetEntryFinder;
1120 @BeanReference(type = com.liferay.document.library.kernel.service.DLAppHelperLocalService.class)
1121 protected com.liferay.document.library.kernel.service.DLAppHelperLocalService dlAppHelperLocalService;
1122 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileEntryLocalService.class)
1123 protected com.liferay.document.library.kernel.service.DLFileEntryLocalService dlFileEntryLocalService;
1124 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileEntryService.class)
1125 protected com.liferay.document.library.kernel.service.DLFileEntryService dlFileEntryService;
1126 @BeanReference(type = DLFileEntryPersistence.class)
1127 protected DLFileEntryPersistence dlFileEntryPersistence;
1128 @BeanReference(type = DLFileEntryFinder.class)
1129 protected DLFileEntryFinder dlFileEntryFinder;
1130 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileEntryTypeLocalService.class)
1131 protected com.liferay.document.library.kernel.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1132 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileEntryTypeService.class)
1133 protected com.liferay.document.library.kernel.service.DLFileEntryTypeService dlFileEntryTypeService;
1134 @BeanReference(type = DLFileEntryTypePersistence.class)
1135 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1136 @BeanReference(type = DLFileEntryTypeFinder.class)
1137 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1138 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileShortcutLocalService.class)
1139 protected com.liferay.document.library.kernel.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1140 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileShortcutService.class)
1141 protected com.liferay.document.library.kernel.service.DLFileShortcutService dlFileShortcutService;
1142 @BeanReference(type = DLFileShortcutPersistence.class)
1143 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1144 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileVersionLocalService.class)
1145 protected com.liferay.document.library.kernel.service.DLFileVersionLocalService dlFileVersionLocalService;
1146 @BeanReference(type = com.liferay.document.library.kernel.service.DLFileVersionService.class)
1147 protected com.liferay.document.library.kernel.service.DLFileVersionService dlFileVersionService;
1148 @BeanReference(type = DLFileVersionPersistence.class)
1149 protected DLFileVersionPersistence dlFileVersionPersistence;
1150 @BeanReference(type = com.liferay.expando.kernel.service.ExpandoRowLocalService.class)
1151 protected com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService;
1152 @BeanReference(type = ExpandoRowPersistence.class)
1153 protected ExpandoRowPersistence expandoRowPersistence;
1154 @BeanReference(type = com.liferay.ratings.kernel.service.RatingsStatsLocalService.class)
1155 protected com.liferay.ratings.kernel.service.RatingsStatsLocalService ratingsStatsLocalService;
1156 @BeanReference(type = RatingsStatsPersistence.class)
1157 protected RatingsStatsPersistence ratingsStatsPersistence;
1158 @BeanReference(type = RatingsStatsFinder.class)
1159 protected RatingsStatsFinder ratingsStatsFinder;
1160 @BeanReference(type = com.liferay.trash.kernel.service.TrashEntryLocalService.class)
1161 protected com.liferay.trash.kernel.service.TrashEntryLocalService trashEntryLocalService;
1162 @BeanReference(type = com.liferay.trash.kernel.service.TrashEntryService.class)
1163 protected com.liferay.trash.kernel.service.TrashEntryService trashEntryService;
1164 @BeanReference(type = TrashEntryPersistence.class)
1165 protected TrashEntryPersistence trashEntryPersistence;
1166 }