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.jdbc.SqlUpdate;
020 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021 import com.liferay.portal.kernel.exception.SystemException;
022 import com.liferay.portal.service.BaseServiceImpl;
023 import com.liferay.portal.service.persistence.GroupFinder;
024 import com.liferay.portal.service.persistence.GroupPersistence;
025 import com.liferay.portal.service.persistence.LockFinder;
026 import com.liferay.portal.service.persistence.LockPersistence;
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
034 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
035 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
036 import com.liferay.portlet.documentlibrary.model.DLFolder;
037 import com.liferay.portlet.documentlibrary.service.DLFolderService;
038 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
039 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
040 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
041 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
042 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
043 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
044 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
045 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
046 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
047 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
048 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
049 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
050 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
051 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
052 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
053
054 import javax.sql.DataSource;
055
056
068 public abstract class DLFolderServiceBaseImpl extends BaseServiceImpl
069 implements DLFolderService, IdentifiableBean {
070
075
076
081 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
082 return dlAppLocalService;
083 }
084
085
090 public void setDLAppLocalService(
091 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
092 this.dlAppLocalService = dlAppLocalService;
093 }
094
095
100 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
101 return dlAppService;
102 }
103
104
109 public void setDLAppService(
110 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
111 this.dlAppService = dlAppService;
112 }
113
114
119 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
120 return dlAppHelperLocalService;
121 }
122
123
128 public void setDLAppHelperLocalService(
129 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
130 this.dlAppHelperLocalService = dlAppHelperLocalService;
131 }
132
133
138 public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
139 return dlContentLocalService;
140 }
141
142
147 public void setDLContentLocalService(
148 com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
149 this.dlContentLocalService = dlContentLocalService;
150 }
151
152
157 public DLContentPersistence getDLContentPersistence() {
158 return dlContentPersistence;
159 }
160
161
166 public void setDLContentPersistence(
167 DLContentPersistence dlContentPersistence) {
168 this.dlContentPersistence = dlContentPersistence;
169 }
170
171
176 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
177 return dlFileEntryLocalService;
178 }
179
180
185 public void setDLFileEntryLocalService(
186 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
187 this.dlFileEntryLocalService = dlFileEntryLocalService;
188 }
189
190
195 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
196 return dlFileEntryService;
197 }
198
199
204 public void setDLFileEntryService(
205 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
206 this.dlFileEntryService = dlFileEntryService;
207 }
208
209
214 public DLFileEntryPersistence getDLFileEntryPersistence() {
215 return dlFileEntryPersistence;
216 }
217
218
223 public void setDLFileEntryPersistence(
224 DLFileEntryPersistence dlFileEntryPersistence) {
225 this.dlFileEntryPersistence = dlFileEntryPersistence;
226 }
227
228
233 public DLFileEntryFinder getDLFileEntryFinder() {
234 return dlFileEntryFinder;
235 }
236
237
242 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
243 this.dlFileEntryFinder = dlFileEntryFinder;
244 }
245
246
251 public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
252 return dlFileEntryMetadataLocalService;
253 }
254
255
260 public void setDLFileEntryMetadataLocalService(
261 com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
262 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
263 }
264
265
270 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
271 return dlFileEntryMetadataPersistence;
272 }
273
274
279 public void setDLFileEntryMetadataPersistence(
280 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
281 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
282 }
283
284
289 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
290 return dlFileEntryTypeLocalService;
291 }
292
293
298 public void setDLFileEntryTypeLocalService(
299 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
300 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
301 }
302
303
308 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
309 return dlFileEntryTypeService;
310 }
311
312
317 public void setDLFileEntryTypeService(
318 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
319 this.dlFileEntryTypeService = dlFileEntryTypeService;
320 }
321
322
327 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
328 return dlFileEntryTypePersistence;
329 }
330
331
336 public void setDLFileEntryTypePersistence(
337 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
338 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
339 }
340
341
346 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
347 return dlFileEntryTypeFinder;
348 }
349
350
355 public void setDLFileEntryTypeFinder(
356 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
357 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
358 }
359
360
365 public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
366 return dlFileRankLocalService;
367 }
368
369
374 public void setDLFileRankLocalService(
375 com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
376 this.dlFileRankLocalService = dlFileRankLocalService;
377 }
378
379
384 public DLFileRankPersistence getDLFileRankPersistence() {
385 return dlFileRankPersistence;
386 }
387
388
393 public void setDLFileRankPersistence(
394 DLFileRankPersistence dlFileRankPersistence) {
395 this.dlFileRankPersistence = dlFileRankPersistence;
396 }
397
398
403 public DLFileRankFinder getDLFileRankFinder() {
404 return dlFileRankFinder;
405 }
406
407
412 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
413 this.dlFileRankFinder = dlFileRankFinder;
414 }
415
416
421 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
422 return dlFileShortcutLocalService;
423 }
424
425
430 public void setDLFileShortcutLocalService(
431 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
432 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
433 }
434
435
440 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
441 return dlFileShortcutService;
442 }
443
444
449 public void setDLFileShortcutService(
450 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
451 this.dlFileShortcutService = dlFileShortcutService;
452 }
453
454
459 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
460 return dlFileShortcutPersistence;
461 }
462
463
468 public void setDLFileShortcutPersistence(
469 DLFileShortcutPersistence dlFileShortcutPersistence) {
470 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
471 }
472
473
478 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
479 return dlFileVersionLocalService;
480 }
481
482
487 public void setDLFileVersionLocalService(
488 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
489 this.dlFileVersionLocalService = dlFileVersionLocalService;
490 }
491
492
497 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
498 return dlFileVersionService;
499 }
500
501
506 public void setDLFileVersionService(
507 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
508 this.dlFileVersionService = dlFileVersionService;
509 }
510
511
516 public DLFileVersionPersistence getDLFileVersionPersistence() {
517 return dlFileVersionPersistence;
518 }
519
520
525 public void setDLFileVersionPersistence(
526 DLFileVersionPersistence dlFileVersionPersistence) {
527 this.dlFileVersionPersistence = dlFileVersionPersistence;
528 }
529
530
535 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
536 return dlFolderLocalService;
537 }
538
539
544 public void setDLFolderLocalService(
545 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
546 this.dlFolderLocalService = dlFolderLocalService;
547 }
548
549
554 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
555 return dlFolderService;
556 }
557
558
563 public void setDLFolderService(
564 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
565 this.dlFolderService = dlFolderService;
566 }
567
568
573 public DLFolderPersistence getDLFolderPersistence() {
574 return dlFolderPersistence;
575 }
576
577
582 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
583 this.dlFolderPersistence = dlFolderPersistence;
584 }
585
586
591 public DLFolderFinder getDLFolderFinder() {
592 return dlFolderFinder;
593 }
594
595
600 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
601 this.dlFolderFinder = dlFolderFinder;
602 }
603
604
609 public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
610 return dlSyncEventLocalService;
611 }
612
613
618 public void setDLSyncEventLocalService(
619 com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
620 this.dlSyncEventLocalService = dlSyncEventLocalService;
621 }
622
623
628 public DLSyncEventPersistence getDLSyncEventPersistence() {
629 return dlSyncEventPersistence;
630 }
631
632
637 public void setDLSyncEventPersistence(
638 DLSyncEventPersistence dlSyncEventPersistence) {
639 this.dlSyncEventPersistence = dlSyncEventPersistence;
640 }
641
642
647 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
648 return counterLocalService;
649 }
650
651
656 public void setCounterLocalService(
657 com.liferay.counter.service.CounterLocalService counterLocalService) {
658 this.counterLocalService = counterLocalService;
659 }
660
661
666 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
667 return groupLocalService;
668 }
669
670
675 public void setGroupLocalService(
676 com.liferay.portal.service.GroupLocalService groupLocalService) {
677 this.groupLocalService = groupLocalService;
678 }
679
680
685 public com.liferay.portal.service.GroupService getGroupService() {
686 return groupService;
687 }
688
689
694 public void setGroupService(
695 com.liferay.portal.service.GroupService groupService) {
696 this.groupService = groupService;
697 }
698
699
704 public GroupPersistence getGroupPersistence() {
705 return groupPersistence;
706 }
707
708
713 public void setGroupPersistence(GroupPersistence groupPersistence) {
714 this.groupPersistence = groupPersistence;
715 }
716
717
722 public GroupFinder getGroupFinder() {
723 return groupFinder;
724 }
725
726
731 public void setGroupFinder(GroupFinder groupFinder) {
732 this.groupFinder = groupFinder;
733 }
734
735
740 public com.liferay.portal.service.LockLocalService getLockLocalService() {
741 return lockLocalService;
742 }
743
744
749 public void setLockLocalService(
750 com.liferay.portal.service.LockLocalService lockLocalService) {
751 this.lockLocalService = lockLocalService;
752 }
753
754
759 public LockPersistence getLockPersistence() {
760 return lockPersistence;
761 }
762
763
768 public void setLockPersistence(LockPersistence lockPersistence) {
769 this.lockPersistence = lockPersistence;
770 }
771
772
777 public LockFinder getLockFinder() {
778 return lockFinder;
779 }
780
781
786 public void setLockFinder(LockFinder lockFinder) {
787 this.lockFinder = lockFinder;
788 }
789
790
795 public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
796 return repositoryLocalService;
797 }
798
799
804 public void setRepositoryLocalService(
805 com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
806 this.repositoryLocalService = repositoryLocalService;
807 }
808
809
814 public com.liferay.portal.service.RepositoryService getRepositoryService() {
815 return repositoryService;
816 }
817
818
823 public void setRepositoryService(
824 com.liferay.portal.service.RepositoryService repositoryService) {
825 this.repositoryService = repositoryService;
826 }
827
828
833 public RepositoryPersistence getRepositoryPersistence() {
834 return repositoryPersistence;
835 }
836
837
842 public void setRepositoryPersistence(
843 RepositoryPersistence repositoryPersistence) {
844 this.repositoryPersistence = repositoryPersistence;
845 }
846
847
852 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
853 return resourceLocalService;
854 }
855
856
861 public void setResourceLocalService(
862 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
863 this.resourceLocalService = resourceLocalService;
864 }
865
866
871 public com.liferay.portal.service.UserLocalService getUserLocalService() {
872 return userLocalService;
873 }
874
875
880 public void setUserLocalService(
881 com.liferay.portal.service.UserLocalService userLocalService) {
882 this.userLocalService = userLocalService;
883 }
884
885
890 public com.liferay.portal.service.UserService getUserService() {
891 return userService;
892 }
893
894
899 public void setUserService(
900 com.liferay.portal.service.UserService userService) {
901 this.userService = userService;
902 }
903
904
909 public UserPersistence getUserPersistence() {
910 return userPersistence;
911 }
912
913
918 public void setUserPersistence(UserPersistence userPersistence) {
919 this.userPersistence = userPersistence;
920 }
921
922
927 public UserFinder getUserFinder() {
928 return userFinder;
929 }
930
931
936 public void setUserFinder(UserFinder userFinder) {
937 this.userFinder = userFinder;
938 }
939
940
945 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
946 return webDAVPropsLocalService;
947 }
948
949
954 public void setWebDAVPropsLocalService(
955 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
956 this.webDAVPropsLocalService = webDAVPropsLocalService;
957 }
958
959
964 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
965 return webDAVPropsPersistence;
966 }
967
968
973 public void setWebDAVPropsPersistence(
974 WebDAVPropsPersistence webDAVPropsPersistence) {
975 this.webDAVPropsPersistence = webDAVPropsPersistence;
976 }
977
978
983 public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
984 return workflowDefinitionLinkLocalService;
985 }
986
987
992 public void setWorkflowDefinitionLinkLocalService(
993 com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
994 this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
995 }
996
997
1002 public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
1003 return workflowDefinitionLinkPersistence;
1004 }
1005
1006
1011 public void setWorkflowDefinitionLinkPersistence(
1012 WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
1013 this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
1014 }
1015
1016
1021 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1022 return workflowInstanceLinkLocalService;
1023 }
1024
1025
1030 public void setWorkflowInstanceLinkLocalService(
1031 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1032 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1033 }
1034
1035
1040 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1041 return workflowInstanceLinkPersistence;
1042 }
1043
1044
1049 public void setWorkflowInstanceLinkPersistence(
1050 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1051 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1052 }
1053
1054
1059 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1060 return assetEntryLocalService;
1061 }
1062
1063
1068 public void setAssetEntryLocalService(
1069 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1070 this.assetEntryLocalService = assetEntryLocalService;
1071 }
1072
1073
1078 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1079 return assetEntryService;
1080 }
1081
1082
1087 public void setAssetEntryService(
1088 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1089 this.assetEntryService = assetEntryService;
1090 }
1091
1092
1097 public AssetEntryPersistence getAssetEntryPersistence() {
1098 return assetEntryPersistence;
1099 }
1100
1101
1106 public void setAssetEntryPersistence(
1107 AssetEntryPersistence assetEntryPersistence) {
1108 this.assetEntryPersistence = assetEntryPersistence;
1109 }
1110
1111
1116 public AssetEntryFinder getAssetEntryFinder() {
1117 return assetEntryFinder;
1118 }
1119
1120
1125 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1126 this.assetEntryFinder = assetEntryFinder;
1127 }
1128
1129
1134 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1135 return expandoRowLocalService;
1136 }
1137
1138
1143 public void setExpandoRowLocalService(
1144 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1145 this.expandoRowLocalService = expandoRowLocalService;
1146 }
1147
1148
1153 public ExpandoRowPersistence getExpandoRowPersistence() {
1154 return expandoRowPersistence;
1155 }
1156
1157
1162 public void setExpandoRowPersistence(
1163 ExpandoRowPersistence expandoRowPersistence) {
1164 this.expandoRowPersistence = expandoRowPersistence;
1165 }
1166
1167
1172 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1173 return trashEntryLocalService;
1174 }
1175
1176
1181 public void setTrashEntryLocalService(
1182 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1183 this.trashEntryLocalService = trashEntryLocalService;
1184 }
1185
1186
1191 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1192 return trashEntryService;
1193 }
1194
1195
1200 public void setTrashEntryService(
1201 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1202 this.trashEntryService = trashEntryService;
1203 }
1204
1205
1210 public TrashEntryPersistence getTrashEntryPersistence() {
1211 return trashEntryPersistence;
1212 }
1213
1214
1219 public void setTrashEntryPersistence(
1220 TrashEntryPersistence trashEntryPersistence) {
1221 this.trashEntryPersistence = trashEntryPersistence;
1222 }
1223
1224 public void afterPropertiesSet() {
1225 }
1226
1227 public void destroy() {
1228 }
1229
1230
1235 @Override
1236 public String getBeanIdentifier() {
1237 return _beanIdentifier;
1238 }
1239
1240
1245 @Override
1246 public void setBeanIdentifier(String beanIdentifier) {
1247 _beanIdentifier = beanIdentifier;
1248 }
1249
1250 protected Class<?> getModelClass() {
1251 return DLFolder.class;
1252 }
1253
1254 protected String getModelClassName() {
1255 return DLFolder.class.getName();
1256 }
1257
1258
1263 protected void runSQL(String sql) throws SystemException {
1264 try {
1265 DataSource dataSource = dlFolderPersistence.getDataSource();
1266
1267 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1268 sql, new int[0]);
1269
1270 sqlUpdate.update();
1271 }
1272 catch (Exception e) {
1273 throw new SystemException(e);
1274 }
1275 }
1276
1277 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1278 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1279 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1280 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1281 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1282 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1283 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1284 protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1285 @BeanReference(type = DLContentPersistence.class)
1286 protected DLContentPersistence dlContentPersistence;
1287 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1288 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1289 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1290 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1291 @BeanReference(type = DLFileEntryPersistence.class)
1292 protected DLFileEntryPersistence dlFileEntryPersistence;
1293 @BeanReference(type = DLFileEntryFinder.class)
1294 protected DLFileEntryFinder dlFileEntryFinder;
1295 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1296 protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1297 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1298 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1299 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1300 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1301 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1302 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1303 @BeanReference(type = DLFileEntryTypePersistence.class)
1304 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1305 @BeanReference(type = DLFileEntryTypeFinder.class)
1306 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1307 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
1308 protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
1309 @BeanReference(type = DLFileRankPersistence.class)
1310 protected DLFileRankPersistence dlFileRankPersistence;
1311 @BeanReference(type = DLFileRankFinder.class)
1312 protected DLFileRankFinder dlFileRankFinder;
1313 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1314 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1315 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1316 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1317 @BeanReference(type = DLFileShortcutPersistence.class)
1318 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1319 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1320 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1321 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1322 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1323 @BeanReference(type = DLFileVersionPersistence.class)
1324 protected DLFileVersionPersistence dlFileVersionPersistence;
1325 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1326 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1327 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1328 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1329 @BeanReference(type = DLFolderPersistence.class)
1330 protected DLFolderPersistence dlFolderPersistence;
1331 @BeanReference(type = DLFolderFinder.class)
1332 protected DLFolderFinder dlFolderFinder;
1333 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1334 protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1335 @BeanReference(type = DLSyncEventPersistence.class)
1336 protected DLSyncEventPersistence dlSyncEventPersistence;
1337 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1338 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1339 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1340 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1341 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1342 protected com.liferay.portal.service.GroupService groupService;
1343 @BeanReference(type = GroupPersistence.class)
1344 protected GroupPersistence groupPersistence;
1345 @BeanReference(type = GroupFinder.class)
1346 protected GroupFinder groupFinder;
1347 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1348 protected com.liferay.portal.service.LockLocalService lockLocalService;
1349 @BeanReference(type = LockPersistence.class)
1350 protected LockPersistence lockPersistence;
1351 @BeanReference(type = LockFinder.class)
1352 protected LockFinder lockFinder;
1353 @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1354 protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1355 @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1356 protected com.liferay.portal.service.RepositoryService repositoryService;
1357 @BeanReference(type = RepositoryPersistence.class)
1358 protected RepositoryPersistence repositoryPersistence;
1359 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1360 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1361 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1362 protected com.liferay.portal.service.UserLocalService userLocalService;
1363 @BeanReference(type = com.liferay.portal.service.UserService.class)
1364 protected com.liferay.portal.service.UserService userService;
1365 @BeanReference(type = UserPersistence.class)
1366 protected UserPersistence userPersistence;
1367 @BeanReference(type = UserFinder.class)
1368 protected UserFinder userFinder;
1369 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1370 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1371 @BeanReference(type = WebDAVPropsPersistence.class)
1372 protected WebDAVPropsPersistence webDAVPropsPersistence;
1373 @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
1374 protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1375 @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1376 protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1377 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1378 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1379 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1380 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1381 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1382 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1383 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1384 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1385 @BeanReference(type = AssetEntryPersistence.class)
1386 protected AssetEntryPersistence assetEntryPersistence;
1387 @BeanReference(type = AssetEntryFinder.class)
1388 protected AssetEntryFinder assetEntryFinder;
1389 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1390 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1391 @BeanReference(type = ExpandoRowPersistence.class)
1392 protected ExpandoRowPersistence expandoRowPersistence;
1393 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1394 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1395 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1396 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1397 @BeanReference(type = TrashEntryPersistence.class)
1398 protected TrashEntryPersistence trashEntryPersistence;
1399 private String _beanIdentifier;
1400 }