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.UserFinder;
028 import com.liferay.portal.service.persistence.UserPersistence;
029 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
030 import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
031 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
032
033 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
034 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
035 import com.liferay.portlet.documentlibrary.model.DLFolder;
036 import com.liferay.portlet.documentlibrary.service.DLFolderService;
037 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
038 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
039 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
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.DLFileRankFinder;
044 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
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.documentlibrary.service.persistence.DLSyncEventPersistence;
050 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
051 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
052
053 import javax.sql.DataSource;
054
055
067 public abstract class DLFolderServiceBaseImpl extends BaseServiceImpl
068 implements DLFolderService, IdentifiableBean {
069
074
075
080 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
081 return dlAppLocalService;
082 }
083
084
089 public void setDLAppLocalService(
090 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
091 this.dlAppLocalService = dlAppLocalService;
092 }
093
094
099 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
100 return dlAppService;
101 }
102
103
108 public void setDLAppService(
109 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
110 this.dlAppService = dlAppService;
111 }
112
113
118 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
119 return dlAppHelperLocalService;
120 }
121
122
127 public void setDLAppHelperLocalService(
128 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
129 this.dlAppHelperLocalService = dlAppHelperLocalService;
130 }
131
132
137 public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
138 return dlContentLocalService;
139 }
140
141
146 public void setDLContentLocalService(
147 com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
148 this.dlContentLocalService = dlContentLocalService;
149 }
150
151
156 public DLContentPersistence getDLContentPersistence() {
157 return dlContentPersistence;
158 }
159
160
165 public void setDLContentPersistence(
166 DLContentPersistence dlContentPersistence) {
167 this.dlContentPersistence = dlContentPersistence;
168 }
169
170
175 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
176 return dlFileEntryLocalService;
177 }
178
179
184 public void setDLFileEntryLocalService(
185 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
186 this.dlFileEntryLocalService = dlFileEntryLocalService;
187 }
188
189
194 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
195 return dlFileEntryService;
196 }
197
198
203 public void setDLFileEntryService(
204 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
205 this.dlFileEntryService = dlFileEntryService;
206 }
207
208
213 public DLFileEntryPersistence getDLFileEntryPersistence() {
214 return dlFileEntryPersistence;
215 }
216
217
222 public void setDLFileEntryPersistence(
223 DLFileEntryPersistence dlFileEntryPersistence) {
224 this.dlFileEntryPersistence = dlFileEntryPersistence;
225 }
226
227
232 public DLFileEntryFinder getDLFileEntryFinder() {
233 return dlFileEntryFinder;
234 }
235
236
241 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
242 this.dlFileEntryFinder = dlFileEntryFinder;
243 }
244
245
250 public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
251 return dlFileEntryMetadataLocalService;
252 }
253
254
259 public void setDLFileEntryMetadataLocalService(
260 com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
261 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
262 }
263
264
269 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
270 return dlFileEntryMetadataPersistence;
271 }
272
273
278 public void setDLFileEntryMetadataPersistence(
279 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
280 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
281 }
282
283
288 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
289 return dlFileEntryTypeLocalService;
290 }
291
292
297 public void setDLFileEntryTypeLocalService(
298 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
299 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
300 }
301
302
307 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
308 return dlFileEntryTypeService;
309 }
310
311
316 public void setDLFileEntryTypeService(
317 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
318 this.dlFileEntryTypeService = dlFileEntryTypeService;
319 }
320
321
326 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
327 return dlFileEntryTypePersistence;
328 }
329
330
335 public void setDLFileEntryTypePersistence(
336 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
337 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
338 }
339
340
345 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
346 return dlFileEntryTypeFinder;
347 }
348
349
354 public void setDLFileEntryTypeFinder(
355 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
356 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
357 }
358
359
364 public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
365 return dlFileRankLocalService;
366 }
367
368
373 public void setDLFileRankLocalService(
374 com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
375 this.dlFileRankLocalService = dlFileRankLocalService;
376 }
377
378
383 public DLFileRankPersistence getDLFileRankPersistence() {
384 return dlFileRankPersistence;
385 }
386
387
392 public void setDLFileRankPersistence(
393 DLFileRankPersistence dlFileRankPersistence) {
394 this.dlFileRankPersistence = dlFileRankPersistence;
395 }
396
397
402 public DLFileRankFinder getDLFileRankFinder() {
403 return dlFileRankFinder;
404 }
405
406
411 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
412 this.dlFileRankFinder = dlFileRankFinder;
413 }
414
415
420 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
421 return dlFileShortcutLocalService;
422 }
423
424
429 public void setDLFileShortcutLocalService(
430 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
431 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
432 }
433
434
439 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
440 return dlFileShortcutService;
441 }
442
443
448 public void setDLFileShortcutService(
449 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
450 this.dlFileShortcutService = dlFileShortcutService;
451 }
452
453
458 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
459 return dlFileShortcutPersistence;
460 }
461
462
467 public void setDLFileShortcutPersistence(
468 DLFileShortcutPersistence dlFileShortcutPersistence) {
469 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
470 }
471
472
477 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
478 return dlFileVersionLocalService;
479 }
480
481
486 public void setDLFileVersionLocalService(
487 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
488 this.dlFileVersionLocalService = dlFileVersionLocalService;
489 }
490
491
496 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
497 return dlFileVersionService;
498 }
499
500
505 public void setDLFileVersionService(
506 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
507 this.dlFileVersionService = dlFileVersionService;
508 }
509
510
515 public DLFileVersionPersistence getDLFileVersionPersistence() {
516 return dlFileVersionPersistence;
517 }
518
519
524 public void setDLFileVersionPersistence(
525 DLFileVersionPersistence dlFileVersionPersistence) {
526 this.dlFileVersionPersistence = dlFileVersionPersistence;
527 }
528
529
534 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
535 return dlFolderLocalService;
536 }
537
538
543 public void setDLFolderLocalService(
544 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
545 this.dlFolderLocalService = dlFolderLocalService;
546 }
547
548
553 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
554 return dlFolderService;
555 }
556
557
562 public void setDLFolderService(
563 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
564 this.dlFolderService = dlFolderService;
565 }
566
567
572 public DLFolderPersistence getDLFolderPersistence() {
573 return dlFolderPersistence;
574 }
575
576
581 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
582 this.dlFolderPersistence = dlFolderPersistence;
583 }
584
585
590 public DLFolderFinder getDLFolderFinder() {
591 return dlFolderFinder;
592 }
593
594
599 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
600 this.dlFolderFinder = dlFolderFinder;
601 }
602
603
608 public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
609 return dlSyncEventLocalService;
610 }
611
612
617 public void setDLSyncEventLocalService(
618 com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
619 this.dlSyncEventLocalService = dlSyncEventLocalService;
620 }
621
622
627 public DLSyncEventPersistence getDLSyncEventPersistence() {
628 return dlSyncEventPersistence;
629 }
630
631
636 public void setDLSyncEventPersistence(
637 DLSyncEventPersistence dlSyncEventPersistence) {
638 this.dlSyncEventPersistence = dlSyncEventPersistence;
639 }
640
641
646 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
647 return counterLocalService;
648 }
649
650
655 public void setCounterLocalService(
656 com.liferay.counter.service.CounterLocalService counterLocalService) {
657 this.counterLocalService = counterLocalService;
658 }
659
660
665 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
666 return groupLocalService;
667 }
668
669
674 public void setGroupLocalService(
675 com.liferay.portal.service.GroupLocalService groupLocalService) {
676 this.groupLocalService = groupLocalService;
677 }
678
679
684 public com.liferay.portal.service.GroupService getGroupService() {
685 return groupService;
686 }
687
688
693 public void setGroupService(
694 com.liferay.portal.service.GroupService groupService) {
695 this.groupService = groupService;
696 }
697
698
703 public GroupPersistence getGroupPersistence() {
704 return groupPersistence;
705 }
706
707
712 public void setGroupPersistence(GroupPersistence groupPersistence) {
713 this.groupPersistence = groupPersistence;
714 }
715
716
721 public GroupFinder getGroupFinder() {
722 return groupFinder;
723 }
724
725
730 public void setGroupFinder(GroupFinder groupFinder) {
731 this.groupFinder = groupFinder;
732 }
733
734
739 public com.liferay.portal.service.LockLocalService getLockLocalService() {
740 return lockLocalService;
741 }
742
743
748 public void setLockLocalService(
749 com.liferay.portal.service.LockLocalService lockLocalService) {
750 this.lockLocalService = lockLocalService;
751 }
752
753
758 public LockPersistence getLockPersistence() {
759 return lockPersistence;
760 }
761
762
767 public void setLockPersistence(LockPersistence lockPersistence) {
768 this.lockPersistence = lockPersistence;
769 }
770
771
776 public LockFinder getLockFinder() {
777 return lockFinder;
778 }
779
780
785 public void setLockFinder(LockFinder lockFinder) {
786 this.lockFinder = lockFinder;
787 }
788
789
794 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
795 return resourceLocalService;
796 }
797
798
803 public void setResourceLocalService(
804 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
805 this.resourceLocalService = resourceLocalService;
806 }
807
808
813 public com.liferay.portal.service.UserLocalService getUserLocalService() {
814 return userLocalService;
815 }
816
817
822 public void setUserLocalService(
823 com.liferay.portal.service.UserLocalService userLocalService) {
824 this.userLocalService = userLocalService;
825 }
826
827
832 public com.liferay.portal.service.UserService getUserService() {
833 return userService;
834 }
835
836
841 public void setUserService(
842 com.liferay.portal.service.UserService userService) {
843 this.userService = userService;
844 }
845
846
851 public UserPersistence getUserPersistence() {
852 return userPersistence;
853 }
854
855
860 public void setUserPersistence(UserPersistence userPersistence) {
861 this.userPersistence = userPersistence;
862 }
863
864
869 public UserFinder getUserFinder() {
870 return userFinder;
871 }
872
873
878 public void setUserFinder(UserFinder userFinder) {
879 this.userFinder = userFinder;
880 }
881
882
887 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
888 return webDAVPropsLocalService;
889 }
890
891
896 public void setWebDAVPropsLocalService(
897 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
898 this.webDAVPropsLocalService = webDAVPropsLocalService;
899 }
900
901
906 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
907 return webDAVPropsPersistence;
908 }
909
910
915 public void setWebDAVPropsPersistence(
916 WebDAVPropsPersistence webDAVPropsPersistence) {
917 this.webDAVPropsPersistence = webDAVPropsPersistence;
918 }
919
920
925 public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
926 return workflowDefinitionLinkLocalService;
927 }
928
929
934 public void setWorkflowDefinitionLinkLocalService(
935 com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
936 this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
937 }
938
939
944 public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
945 return workflowDefinitionLinkPersistence;
946 }
947
948
953 public void setWorkflowDefinitionLinkPersistence(
954 WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
955 this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
956 }
957
958
963 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
964 return workflowInstanceLinkLocalService;
965 }
966
967
972 public void setWorkflowInstanceLinkLocalService(
973 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
974 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
975 }
976
977
982 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
983 return workflowInstanceLinkPersistence;
984 }
985
986
991 public void setWorkflowInstanceLinkPersistence(
992 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
993 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
994 }
995
996
1001 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1002 return assetEntryLocalService;
1003 }
1004
1005
1010 public void setAssetEntryLocalService(
1011 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1012 this.assetEntryLocalService = assetEntryLocalService;
1013 }
1014
1015
1020 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1021 return assetEntryService;
1022 }
1023
1024
1029 public void setAssetEntryService(
1030 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1031 this.assetEntryService = assetEntryService;
1032 }
1033
1034
1039 public AssetEntryPersistence getAssetEntryPersistence() {
1040 return assetEntryPersistence;
1041 }
1042
1043
1048 public void setAssetEntryPersistence(
1049 AssetEntryPersistence assetEntryPersistence) {
1050 this.assetEntryPersistence = assetEntryPersistence;
1051 }
1052
1053
1058 public AssetEntryFinder getAssetEntryFinder() {
1059 return assetEntryFinder;
1060 }
1061
1062
1067 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1068 this.assetEntryFinder = assetEntryFinder;
1069 }
1070
1071
1076 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1077 return expandoRowLocalService;
1078 }
1079
1080
1085 public void setExpandoRowLocalService(
1086 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1087 this.expandoRowLocalService = expandoRowLocalService;
1088 }
1089
1090
1095 public ExpandoRowPersistence getExpandoRowPersistence() {
1096 return expandoRowPersistence;
1097 }
1098
1099
1104 public void setExpandoRowPersistence(
1105 ExpandoRowPersistence expandoRowPersistence) {
1106 this.expandoRowPersistence = expandoRowPersistence;
1107 }
1108
1109
1114 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1115 return trashEntryLocalService;
1116 }
1117
1118
1123 public void setTrashEntryLocalService(
1124 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1125 this.trashEntryLocalService = trashEntryLocalService;
1126 }
1127
1128
1133 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1134 return trashEntryService;
1135 }
1136
1137
1142 public void setTrashEntryService(
1143 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1144 this.trashEntryService = trashEntryService;
1145 }
1146
1147
1152 public TrashEntryPersistence getTrashEntryPersistence() {
1153 return trashEntryPersistence;
1154 }
1155
1156
1161 public void setTrashEntryPersistence(
1162 TrashEntryPersistence trashEntryPersistence) {
1163 this.trashEntryPersistence = trashEntryPersistence;
1164 }
1165
1166 public void afterPropertiesSet() {
1167 }
1168
1169 public void destroy() {
1170 }
1171
1172
1177 @Override
1178 public String getBeanIdentifier() {
1179 return _beanIdentifier;
1180 }
1181
1182
1187 @Override
1188 public void setBeanIdentifier(String beanIdentifier) {
1189 _beanIdentifier = beanIdentifier;
1190 }
1191
1192 protected Class<?> getModelClass() {
1193 return DLFolder.class;
1194 }
1195
1196 protected String getModelClassName() {
1197 return DLFolder.class.getName();
1198 }
1199
1200
1205 protected void runSQL(String sql) throws SystemException {
1206 try {
1207 DataSource dataSource = dlFolderPersistence.getDataSource();
1208
1209 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1210 sql, new int[0]);
1211
1212 sqlUpdate.update();
1213 }
1214 catch (Exception e) {
1215 throw new SystemException(e);
1216 }
1217 }
1218
1219 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1220 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1221 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1222 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1223 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1224 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1225 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1226 protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1227 @BeanReference(type = DLContentPersistence.class)
1228 protected DLContentPersistence dlContentPersistence;
1229 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1230 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1231 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1232 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1233 @BeanReference(type = DLFileEntryPersistence.class)
1234 protected DLFileEntryPersistence dlFileEntryPersistence;
1235 @BeanReference(type = DLFileEntryFinder.class)
1236 protected DLFileEntryFinder dlFileEntryFinder;
1237 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1238 protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1239 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1240 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1241 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1242 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1243 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1244 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1245 @BeanReference(type = DLFileEntryTypePersistence.class)
1246 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1247 @BeanReference(type = DLFileEntryTypeFinder.class)
1248 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1249 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
1250 protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
1251 @BeanReference(type = DLFileRankPersistence.class)
1252 protected DLFileRankPersistence dlFileRankPersistence;
1253 @BeanReference(type = DLFileRankFinder.class)
1254 protected DLFileRankFinder dlFileRankFinder;
1255 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1256 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1257 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1258 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1259 @BeanReference(type = DLFileShortcutPersistence.class)
1260 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1261 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1262 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1263 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1264 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1265 @BeanReference(type = DLFileVersionPersistence.class)
1266 protected DLFileVersionPersistence dlFileVersionPersistence;
1267 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1268 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1269 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1270 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1271 @BeanReference(type = DLFolderPersistence.class)
1272 protected DLFolderPersistence dlFolderPersistence;
1273 @BeanReference(type = DLFolderFinder.class)
1274 protected DLFolderFinder dlFolderFinder;
1275 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1276 protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1277 @BeanReference(type = DLSyncEventPersistence.class)
1278 protected DLSyncEventPersistence dlSyncEventPersistence;
1279 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1280 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1281 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1282 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1283 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1284 protected com.liferay.portal.service.GroupService groupService;
1285 @BeanReference(type = GroupPersistence.class)
1286 protected GroupPersistence groupPersistence;
1287 @BeanReference(type = GroupFinder.class)
1288 protected GroupFinder groupFinder;
1289 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1290 protected com.liferay.portal.service.LockLocalService lockLocalService;
1291 @BeanReference(type = LockPersistence.class)
1292 protected LockPersistence lockPersistence;
1293 @BeanReference(type = LockFinder.class)
1294 protected LockFinder lockFinder;
1295 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1296 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1297 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1298 protected com.liferay.portal.service.UserLocalService userLocalService;
1299 @BeanReference(type = com.liferay.portal.service.UserService.class)
1300 protected com.liferay.portal.service.UserService userService;
1301 @BeanReference(type = UserPersistence.class)
1302 protected UserPersistence userPersistence;
1303 @BeanReference(type = UserFinder.class)
1304 protected UserFinder userFinder;
1305 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1306 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1307 @BeanReference(type = WebDAVPropsPersistence.class)
1308 protected WebDAVPropsPersistence webDAVPropsPersistence;
1309 @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
1310 protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1311 @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1312 protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1313 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1314 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1315 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1316 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1317 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1318 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1319 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1320 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1321 @BeanReference(type = AssetEntryPersistence.class)
1322 protected AssetEntryPersistence assetEntryPersistence;
1323 @BeanReference(type = AssetEntryFinder.class)
1324 protected AssetEntryFinder assetEntryFinder;
1325 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1326 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1327 @BeanReference(type = ExpandoRowPersistence.class)
1328 protected ExpandoRowPersistence expandoRowPersistence;
1329 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1330 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1331 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1332 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1333 @BeanReference(type = TrashEntryPersistence.class)
1334 protected TrashEntryPersistence trashEntryPersistence;
1335 private String _beanIdentifier;
1336 }