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.ClassNamePersistence;
026 import com.liferay.portal.service.persistence.GroupFinder;
027 import com.liferay.portal.service.persistence.GroupPersistence;
028 import com.liferay.portal.service.persistence.ImagePersistence;
029 import com.liferay.portal.service.persistence.LockFinder;
030 import com.liferay.portal.service.persistence.LockPersistence;
031 import com.liferay.portal.service.persistence.RepositoryPersistence;
032 import com.liferay.portal.service.persistence.UserFinder;
033 import com.liferay.portal.service.persistence.UserPersistence;
034 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
035 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
036 import com.liferay.portal.util.PortalUtil;
037
038 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
039 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
040 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
041 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
042 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
043 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
044 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
045 import com.liferay.portlet.documentlibrary.model.DLFileEntry;
046 import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
047 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
048 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
049 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
050 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
051 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
052 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
053 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
054 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
055 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
056 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
057 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
058 import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
059 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
060
061 import javax.sql.DataSource;
062
063
075 public abstract class DLFileEntryServiceBaseImpl extends BaseServiceImpl
076 implements DLFileEntryService, IdentifiableBean {
077
082
083
088 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
089 return dlFileEntryLocalService;
090 }
091
092
097 public void setDLFileEntryLocalService(
098 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
099 this.dlFileEntryLocalService = dlFileEntryLocalService;
100 }
101
102
107 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
108 return dlFileEntryService;
109 }
110
111
116 public void setDLFileEntryService(
117 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
118 this.dlFileEntryService = dlFileEntryService;
119 }
120
121
126 public DLFileEntryPersistence getDLFileEntryPersistence() {
127 return dlFileEntryPersistence;
128 }
129
130
135 public void setDLFileEntryPersistence(
136 DLFileEntryPersistence dlFileEntryPersistence) {
137 this.dlFileEntryPersistence = dlFileEntryPersistence;
138 }
139
140
145 public DLFileEntryFinder getDLFileEntryFinder() {
146 return dlFileEntryFinder;
147 }
148
149
154 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
155 this.dlFileEntryFinder = dlFileEntryFinder;
156 }
157
158
163 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
164 return counterLocalService;
165 }
166
167
172 public void setCounterLocalService(
173 com.liferay.counter.service.CounterLocalService counterLocalService) {
174 this.counterLocalService = counterLocalService;
175 }
176
177
182 public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
183 return classNameLocalService;
184 }
185
186
191 public void setClassNameLocalService(
192 com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
193 this.classNameLocalService = classNameLocalService;
194 }
195
196
201 public com.liferay.portal.service.ClassNameService getClassNameService() {
202 return classNameService;
203 }
204
205
210 public void setClassNameService(
211 com.liferay.portal.service.ClassNameService classNameService) {
212 this.classNameService = classNameService;
213 }
214
215
220 public ClassNamePersistence getClassNamePersistence() {
221 return classNamePersistence;
222 }
223
224
229 public void setClassNamePersistence(
230 ClassNamePersistence classNamePersistence) {
231 this.classNamePersistence = classNamePersistence;
232 }
233
234
239 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
240 return groupLocalService;
241 }
242
243
248 public void setGroupLocalService(
249 com.liferay.portal.service.GroupLocalService groupLocalService) {
250 this.groupLocalService = groupLocalService;
251 }
252
253
258 public com.liferay.portal.service.GroupService getGroupService() {
259 return groupService;
260 }
261
262
267 public void setGroupService(
268 com.liferay.portal.service.GroupService groupService) {
269 this.groupService = groupService;
270 }
271
272
277 public GroupPersistence getGroupPersistence() {
278 return groupPersistence;
279 }
280
281
286 public void setGroupPersistence(GroupPersistence groupPersistence) {
287 this.groupPersistence = groupPersistence;
288 }
289
290
295 public GroupFinder getGroupFinder() {
296 return groupFinder;
297 }
298
299
304 public void setGroupFinder(GroupFinder groupFinder) {
305 this.groupFinder = groupFinder;
306 }
307
308
313 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
314 return imageLocalService;
315 }
316
317
322 public void setImageLocalService(
323 com.liferay.portal.service.ImageLocalService imageLocalService) {
324 this.imageLocalService = imageLocalService;
325 }
326
327
332 public com.liferay.portal.service.ImageService getImageService() {
333 return imageService;
334 }
335
336
341 public void setImageService(
342 com.liferay.portal.service.ImageService imageService) {
343 this.imageService = imageService;
344 }
345
346
351 public ImagePersistence getImagePersistence() {
352 return imagePersistence;
353 }
354
355
360 public void setImagePersistence(ImagePersistence imagePersistence) {
361 this.imagePersistence = imagePersistence;
362 }
363
364
369 public com.liferay.portal.service.LockLocalService getLockLocalService() {
370 return lockLocalService;
371 }
372
373
378 public void setLockLocalService(
379 com.liferay.portal.service.LockLocalService lockLocalService) {
380 this.lockLocalService = lockLocalService;
381 }
382
383
388 public LockPersistence getLockPersistence() {
389 return lockPersistence;
390 }
391
392
397 public void setLockPersistence(LockPersistence lockPersistence) {
398 this.lockPersistence = lockPersistence;
399 }
400
401
406 public LockFinder getLockFinder() {
407 return lockFinder;
408 }
409
410
415 public void setLockFinder(LockFinder lockFinder) {
416 this.lockFinder = lockFinder;
417 }
418
419
424 public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
425 return repositoryLocalService;
426 }
427
428
433 public void setRepositoryLocalService(
434 com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
435 this.repositoryLocalService = repositoryLocalService;
436 }
437
438
443 public com.liferay.portal.service.RepositoryService getRepositoryService() {
444 return repositoryService;
445 }
446
447
452 public void setRepositoryService(
453 com.liferay.portal.service.RepositoryService repositoryService) {
454 this.repositoryService = repositoryService;
455 }
456
457
462 public RepositoryPersistence getRepositoryPersistence() {
463 return repositoryPersistence;
464 }
465
466
471 public void setRepositoryPersistence(
472 RepositoryPersistence repositoryPersistence) {
473 this.repositoryPersistence = repositoryPersistence;
474 }
475
476
481 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
482 return resourceLocalService;
483 }
484
485
490 public void setResourceLocalService(
491 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
492 this.resourceLocalService = resourceLocalService;
493 }
494
495
500 public com.liferay.portal.service.UserLocalService getUserLocalService() {
501 return userLocalService;
502 }
503
504
509 public void setUserLocalService(
510 com.liferay.portal.service.UserLocalService userLocalService) {
511 this.userLocalService = userLocalService;
512 }
513
514
519 public com.liferay.portal.service.UserService getUserService() {
520 return userService;
521 }
522
523
528 public void setUserService(
529 com.liferay.portal.service.UserService userService) {
530 this.userService = userService;
531 }
532
533
538 public UserPersistence getUserPersistence() {
539 return userPersistence;
540 }
541
542
547 public void setUserPersistence(UserPersistence userPersistence) {
548 this.userPersistence = userPersistence;
549 }
550
551
556 public UserFinder getUserFinder() {
557 return userFinder;
558 }
559
560
565 public void setUserFinder(UserFinder userFinder) {
566 this.userFinder = userFinder;
567 }
568
569
574 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
575 return webDAVPropsLocalService;
576 }
577
578
583 public void setWebDAVPropsLocalService(
584 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
585 this.webDAVPropsLocalService = webDAVPropsLocalService;
586 }
587
588
593 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
594 return webDAVPropsPersistence;
595 }
596
597
602 public void setWebDAVPropsPersistence(
603 WebDAVPropsPersistence webDAVPropsPersistence) {
604 this.webDAVPropsPersistence = webDAVPropsPersistence;
605 }
606
607
612 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
613 return workflowInstanceLinkLocalService;
614 }
615
616
621 public void setWorkflowInstanceLinkLocalService(
622 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
623 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
624 }
625
626
631 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
632 return workflowInstanceLinkPersistence;
633 }
634
635
640 public void setWorkflowInstanceLinkPersistence(
641 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
642 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
643 }
644
645
650 public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
651 return assetCategoryLocalService;
652 }
653
654
659 public void setAssetCategoryLocalService(
660 com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
661 this.assetCategoryLocalService = assetCategoryLocalService;
662 }
663
664
669 public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
670 return assetCategoryService;
671 }
672
673
678 public void setAssetCategoryService(
679 com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
680 this.assetCategoryService = assetCategoryService;
681 }
682
683
688 public AssetCategoryPersistence getAssetCategoryPersistence() {
689 return assetCategoryPersistence;
690 }
691
692
697 public void setAssetCategoryPersistence(
698 AssetCategoryPersistence assetCategoryPersistence) {
699 this.assetCategoryPersistence = assetCategoryPersistence;
700 }
701
702
707 public AssetCategoryFinder getAssetCategoryFinder() {
708 return assetCategoryFinder;
709 }
710
711
716 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
717 this.assetCategoryFinder = assetCategoryFinder;
718 }
719
720
725 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
726 return assetEntryLocalService;
727 }
728
729
734 public void setAssetEntryLocalService(
735 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
736 this.assetEntryLocalService = assetEntryLocalService;
737 }
738
739
744 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
745 return assetEntryService;
746 }
747
748
753 public void setAssetEntryService(
754 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
755 this.assetEntryService = assetEntryService;
756 }
757
758
763 public AssetEntryPersistence getAssetEntryPersistence() {
764 return assetEntryPersistence;
765 }
766
767
772 public void setAssetEntryPersistence(
773 AssetEntryPersistence assetEntryPersistence) {
774 this.assetEntryPersistence = assetEntryPersistence;
775 }
776
777
782 public AssetEntryFinder getAssetEntryFinder() {
783 return assetEntryFinder;
784 }
785
786
791 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
792 this.assetEntryFinder = assetEntryFinder;
793 }
794
795
800 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
801 return assetLinkLocalService;
802 }
803
804
809 public void setAssetLinkLocalService(
810 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
811 this.assetLinkLocalService = assetLinkLocalService;
812 }
813
814
819 public AssetLinkPersistence getAssetLinkPersistence() {
820 return assetLinkPersistence;
821 }
822
823
828 public void setAssetLinkPersistence(
829 AssetLinkPersistence assetLinkPersistence) {
830 this.assetLinkPersistence = assetLinkPersistence;
831 }
832
833
838 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
839 return assetTagLocalService;
840 }
841
842
847 public void setAssetTagLocalService(
848 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
849 this.assetTagLocalService = assetTagLocalService;
850 }
851
852
857 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
858 return assetTagService;
859 }
860
861
866 public void setAssetTagService(
867 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
868 this.assetTagService = assetTagService;
869 }
870
871
876 public AssetTagPersistence getAssetTagPersistence() {
877 return assetTagPersistence;
878 }
879
880
885 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
886 this.assetTagPersistence = assetTagPersistence;
887 }
888
889
894 public AssetTagFinder getAssetTagFinder() {
895 return assetTagFinder;
896 }
897
898
903 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
904 this.assetTagFinder = assetTagFinder;
905 }
906
907
912 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
913 return dlAppHelperLocalService;
914 }
915
916
921 public void setDLAppHelperLocalService(
922 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
923 this.dlAppHelperLocalService = dlAppHelperLocalService;
924 }
925
926
931 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
932 return ddmStructureLocalService;
933 }
934
935
940 public void setDDMStructureLocalService(
941 com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
942 this.ddmStructureLocalService = ddmStructureLocalService;
943 }
944
945
950 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
951 return ddmStructureService;
952 }
953
954
959 public void setDDMStructureService(
960 com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
961 this.ddmStructureService = ddmStructureService;
962 }
963
964
969 public DDMStructurePersistence getDDMStructurePersistence() {
970 return ddmStructurePersistence;
971 }
972
973
978 public void setDDMStructurePersistence(
979 DDMStructurePersistence ddmStructurePersistence) {
980 this.ddmStructurePersistence = ddmStructurePersistence;
981 }
982
983
988 public DDMStructureFinder getDDMStructureFinder() {
989 return ddmStructureFinder;
990 }
991
992
997 public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
998 this.ddmStructureFinder = ddmStructureFinder;
999 }
1000
1001
1006 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1007 return expandoRowLocalService;
1008 }
1009
1010
1015 public void setExpandoRowLocalService(
1016 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1017 this.expandoRowLocalService = expandoRowLocalService;
1018 }
1019
1020
1025 public ExpandoRowPersistence getExpandoRowPersistence() {
1026 return expandoRowPersistence;
1027 }
1028
1029
1034 public void setExpandoRowPersistence(
1035 ExpandoRowPersistence expandoRowPersistence) {
1036 this.expandoRowPersistence = expandoRowPersistence;
1037 }
1038
1039
1044 public com.liferay.portlet.expando.service.ExpandoTableLocalService getExpandoTableLocalService() {
1045 return expandoTableLocalService;
1046 }
1047
1048
1053 public void setExpandoTableLocalService(
1054 com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService) {
1055 this.expandoTableLocalService = expandoTableLocalService;
1056 }
1057
1058
1063 public ExpandoTablePersistence getExpandoTablePersistence() {
1064 return expandoTablePersistence;
1065 }
1066
1067
1072 public void setExpandoTablePersistence(
1073 ExpandoTablePersistence expandoTablePersistence) {
1074 this.expandoTablePersistence = expandoTablePersistence;
1075 }
1076
1077
1082 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1083 return trashEntryLocalService;
1084 }
1085
1086
1091 public void setTrashEntryLocalService(
1092 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1093 this.trashEntryLocalService = trashEntryLocalService;
1094 }
1095
1096
1101 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1102 return trashEntryService;
1103 }
1104
1105
1110 public void setTrashEntryService(
1111 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1112 this.trashEntryService = trashEntryService;
1113 }
1114
1115
1120 public TrashEntryPersistence getTrashEntryPersistence() {
1121 return trashEntryPersistence;
1122 }
1123
1124
1129 public void setTrashEntryPersistence(
1130 TrashEntryPersistence trashEntryPersistence) {
1131 this.trashEntryPersistence = trashEntryPersistence;
1132 }
1133
1134
1139 public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
1140 return dlFileEntryMetadataLocalService;
1141 }
1142
1143
1148 public void setDLFileEntryMetadataLocalService(
1149 com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
1150 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
1151 }
1152
1153
1158 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
1159 return dlFileEntryMetadataPersistence;
1160 }
1161
1162
1167 public void setDLFileEntryMetadataPersistence(
1168 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
1169 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
1170 }
1171
1172
1177 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
1178 return dlFileEntryTypeLocalService;
1179 }
1180
1181
1186 public void setDLFileEntryTypeLocalService(
1187 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
1188 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
1189 }
1190
1191
1196 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
1197 return dlFileEntryTypeService;
1198 }
1199
1200
1205 public void setDLFileEntryTypeService(
1206 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
1207 this.dlFileEntryTypeService = dlFileEntryTypeService;
1208 }
1209
1210
1215 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
1216 return dlFileEntryTypePersistence;
1217 }
1218
1219
1224 public void setDLFileEntryTypePersistence(
1225 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
1226 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
1227 }
1228
1229
1234 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
1235 return dlFileEntryTypeFinder;
1236 }
1237
1238
1243 public void setDLFileEntryTypeFinder(
1244 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
1245 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
1246 }
1247
1248
1253 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
1254 return dlFileVersionLocalService;
1255 }
1256
1257
1262 public void setDLFileVersionLocalService(
1263 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
1264 this.dlFileVersionLocalService = dlFileVersionLocalService;
1265 }
1266
1267
1272 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
1273 return dlFileVersionService;
1274 }
1275
1276
1281 public void setDLFileVersionService(
1282 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
1283 this.dlFileVersionService = dlFileVersionService;
1284 }
1285
1286
1291 public DLFileVersionPersistence getDLFileVersionPersistence() {
1292 return dlFileVersionPersistence;
1293 }
1294
1295
1300 public void setDLFileVersionPersistence(
1301 DLFileVersionPersistence dlFileVersionPersistence) {
1302 this.dlFileVersionPersistence = dlFileVersionPersistence;
1303 }
1304
1305
1310 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
1311 return dlFolderLocalService;
1312 }
1313
1314
1319 public void setDLFolderLocalService(
1320 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
1321 this.dlFolderLocalService = dlFolderLocalService;
1322 }
1323
1324
1329 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
1330 return dlFolderService;
1331 }
1332
1333
1338 public void setDLFolderService(
1339 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
1340 this.dlFolderService = dlFolderService;
1341 }
1342
1343
1348 public DLFolderPersistence getDLFolderPersistence() {
1349 return dlFolderPersistence;
1350 }
1351
1352
1357 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
1358 this.dlFolderPersistence = dlFolderPersistence;
1359 }
1360
1361
1366 public DLFolderFinder getDLFolderFinder() {
1367 return dlFolderFinder;
1368 }
1369
1370
1375 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
1376 this.dlFolderFinder = dlFolderFinder;
1377 }
1378
1379 public void afterPropertiesSet() {
1380 }
1381
1382 public void destroy() {
1383 }
1384
1385
1390 @Override
1391 public String getBeanIdentifier() {
1392 return _beanIdentifier;
1393 }
1394
1395
1400 @Override
1401 public void setBeanIdentifier(String beanIdentifier) {
1402 _beanIdentifier = beanIdentifier;
1403 }
1404
1405 protected Class<?> getModelClass() {
1406 return DLFileEntry.class;
1407 }
1408
1409 protected String getModelClassName() {
1410 return DLFileEntry.class.getName();
1411 }
1412
1413
1418 protected void runSQL(String sql) {
1419 try {
1420 DataSource dataSource = dlFileEntryPersistence.getDataSource();
1421
1422 DB db = DBFactoryUtil.getDB();
1423
1424 sql = db.buildSQL(sql);
1425 sql = PortalUtil.transformSQL(sql);
1426
1427 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1428 sql, new int[0]);
1429
1430 sqlUpdate.update();
1431 }
1432 catch (Exception e) {
1433 throw new SystemException(e);
1434 }
1435 }
1436
1437 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1438 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1439 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1440 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1441 @BeanReference(type = DLFileEntryPersistence.class)
1442 protected DLFileEntryPersistence dlFileEntryPersistence;
1443 @BeanReference(type = DLFileEntryFinder.class)
1444 protected DLFileEntryFinder dlFileEntryFinder;
1445 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1446 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1447 @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
1448 protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
1449 @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
1450 protected com.liferay.portal.service.ClassNameService classNameService;
1451 @BeanReference(type = ClassNamePersistence.class)
1452 protected ClassNamePersistence classNamePersistence;
1453 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1454 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1455 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1456 protected com.liferay.portal.service.GroupService groupService;
1457 @BeanReference(type = GroupPersistence.class)
1458 protected GroupPersistence groupPersistence;
1459 @BeanReference(type = GroupFinder.class)
1460 protected GroupFinder groupFinder;
1461 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1462 protected com.liferay.portal.service.ImageLocalService imageLocalService;
1463 @BeanReference(type = com.liferay.portal.service.ImageService.class)
1464 protected com.liferay.portal.service.ImageService imageService;
1465 @BeanReference(type = ImagePersistence.class)
1466 protected ImagePersistence imagePersistence;
1467 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1468 protected com.liferay.portal.service.LockLocalService lockLocalService;
1469 @BeanReference(type = LockPersistence.class)
1470 protected LockPersistence lockPersistence;
1471 @BeanReference(type = LockFinder.class)
1472 protected LockFinder lockFinder;
1473 @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1474 protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1475 @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1476 protected com.liferay.portal.service.RepositoryService repositoryService;
1477 @BeanReference(type = RepositoryPersistence.class)
1478 protected RepositoryPersistence repositoryPersistence;
1479 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1480 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1481 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1482 protected com.liferay.portal.service.UserLocalService userLocalService;
1483 @BeanReference(type = com.liferay.portal.service.UserService.class)
1484 protected com.liferay.portal.service.UserService userService;
1485 @BeanReference(type = UserPersistence.class)
1486 protected UserPersistence userPersistence;
1487 @BeanReference(type = UserFinder.class)
1488 protected UserFinder userFinder;
1489 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1490 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1491 @BeanReference(type = WebDAVPropsPersistence.class)
1492 protected WebDAVPropsPersistence webDAVPropsPersistence;
1493 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1494 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1495 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1496 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1497 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
1498 protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
1499 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
1500 protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
1501 @BeanReference(type = AssetCategoryPersistence.class)
1502 protected AssetCategoryPersistence assetCategoryPersistence;
1503 @BeanReference(type = AssetCategoryFinder.class)
1504 protected AssetCategoryFinder assetCategoryFinder;
1505 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1506 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1507 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1508 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1509 @BeanReference(type = AssetEntryPersistence.class)
1510 protected AssetEntryPersistence assetEntryPersistence;
1511 @BeanReference(type = AssetEntryFinder.class)
1512 protected AssetEntryFinder assetEntryFinder;
1513 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1514 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1515 @BeanReference(type = AssetLinkPersistence.class)
1516 protected AssetLinkPersistence assetLinkPersistence;
1517 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1518 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1519 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1520 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1521 @BeanReference(type = AssetTagPersistence.class)
1522 protected AssetTagPersistence assetTagPersistence;
1523 @BeanReference(type = AssetTagFinder.class)
1524 protected AssetTagFinder assetTagFinder;
1525 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1526 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1527 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
1528 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
1529 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
1530 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
1531 @BeanReference(type = DDMStructurePersistence.class)
1532 protected DDMStructurePersistence ddmStructurePersistence;
1533 @BeanReference(type = DDMStructureFinder.class)
1534 protected DDMStructureFinder ddmStructureFinder;
1535 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1536 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1537 @BeanReference(type = ExpandoRowPersistence.class)
1538 protected ExpandoRowPersistence expandoRowPersistence;
1539 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoTableLocalService.class)
1540 protected com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService;
1541 @BeanReference(type = ExpandoTablePersistence.class)
1542 protected ExpandoTablePersistence expandoTablePersistence;
1543 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1544 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1545 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1546 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1547 @BeanReference(type = TrashEntryPersistence.class)
1548 protected TrashEntryPersistence trashEntryPersistence;
1549 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1550 protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1551 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1552 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1553 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1554 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1555 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1556 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1557 @BeanReference(type = DLFileEntryTypePersistence.class)
1558 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1559 @BeanReference(type = DLFileEntryTypeFinder.class)
1560 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1561 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1562 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1563 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1564 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1565 @BeanReference(type = DLFileVersionPersistence.class)
1566 protected DLFileVersionPersistence dlFileVersionPersistence;
1567 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1568 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1569 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1570 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1571 @BeanReference(type = DLFolderPersistence.class)
1572 protected DLFolderPersistence dlFolderPersistence;
1573 @BeanReference(type = DLFolderFinder.class)
1574 protected DLFolderFinder dlFolderFinder;
1575 private String _beanIdentifier;
1576 }