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.ImagePersistence;
026 import com.liferay.portal.service.persistence.LockFinder;
027 import com.liferay.portal.service.persistence.LockPersistence;
028 import com.liferay.portal.service.persistence.RepositoryPersistence;
029 import com.liferay.portal.service.persistence.UserFinder;
030 import com.liferay.portal.service.persistence.UserPersistence;
031 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
032 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
033
034 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
035 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
036 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
037 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
038 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
039 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
040 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
041 import com.liferay.portlet.documentlibrary.model.DLFileEntry;
042 import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
043 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
044 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
045 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
046 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
047 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
048 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
049 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
050 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
051 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
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.documentlibrary.service.persistence.DLSyncEventPersistence;
056 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
057 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
058 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
059 import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
060 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
061
062 import javax.sql.DataSource;
063
064
076 public abstract class DLFileEntryServiceBaseImpl extends BaseServiceImpl
077 implements DLFileEntryService, IdentifiableBean {
078
083
084
089 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
090 return dlAppLocalService;
091 }
092
093
098 public void setDLAppLocalService(
099 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
100 this.dlAppLocalService = dlAppLocalService;
101 }
102
103
108 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
109 return dlAppService;
110 }
111
112
117 public void setDLAppService(
118 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
119 this.dlAppService = dlAppService;
120 }
121
122
127 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
128 return dlAppHelperLocalService;
129 }
130
131
136 public void setDLAppHelperLocalService(
137 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
138 this.dlAppHelperLocalService = dlAppHelperLocalService;
139 }
140
141
146 public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
147 return dlContentLocalService;
148 }
149
150
155 public void setDLContentLocalService(
156 com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
157 this.dlContentLocalService = dlContentLocalService;
158 }
159
160
165 public DLContentPersistence getDLContentPersistence() {
166 return dlContentPersistence;
167 }
168
169
174 public void setDLContentPersistence(
175 DLContentPersistence dlContentPersistence) {
176 this.dlContentPersistence = dlContentPersistence;
177 }
178
179
184 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
185 return dlFileEntryLocalService;
186 }
187
188
193 public void setDLFileEntryLocalService(
194 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
195 this.dlFileEntryLocalService = dlFileEntryLocalService;
196 }
197
198
203 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
204 return dlFileEntryService;
205 }
206
207
212 public void setDLFileEntryService(
213 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
214 this.dlFileEntryService = dlFileEntryService;
215 }
216
217
222 public DLFileEntryPersistence getDLFileEntryPersistence() {
223 return dlFileEntryPersistence;
224 }
225
226
231 public void setDLFileEntryPersistence(
232 DLFileEntryPersistence dlFileEntryPersistence) {
233 this.dlFileEntryPersistence = dlFileEntryPersistence;
234 }
235
236
241 public DLFileEntryFinder getDLFileEntryFinder() {
242 return dlFileEntryFinder;
243 }
244
245
250 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
251 this.dlFileEntryFinder = dlFileEntryFinder;
252 }
253
254
259 public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
260 return dlFileEntryMetadataLocalService;
261 }
262
263
268 public void setDLFileEntryMetadataLocalService(
269 com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
270 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
271 }
272
273
278 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
279 return dlFileEntryMetadataPersistence;
280 }
281
282
287 public void setDLFileEntryMetadataPersistence(
288 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
289 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
290 }
291
292
297 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
298 return dlFileEntryTypeLocalService;
299 }
300
301
306 public void setDLFileEntryTypeLocalService(
307 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
308 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
309 }
310
311
316 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
317 return dlFileEntryTypeService;
318 }
319
320
325 public void setDLFileEntryTypeService(
326 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
327 this.dlFileEntryTypeService = dlFileEntryTypeService;
328 }
329
330
335 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
336 return dlFileEntryTypePersistence;
337 }
338
339
344 public void setDLFileEntryTypePersistence(
345 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
346 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
347 }
348
349
354 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
355 return dlFileEntryTypeFinder;
356 }
357
358
363 public void setDLFileEntryTypeFinder(
364 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
365 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
366 }
367
368
373 public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
374 return dlFileRankLocalService;
375 }
376
377
382 public void setDLFileRankLocalService(
383 com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
384 this.dlFileRankLocalService = dlFileRankLocalService;
385 }
386
387
392 public DLFileRankPersistence getDLFileRankPersistence() {
393 return dlFileRankPersistence;
394 }
395
396
401 public void setDLFileRankPersistence(
402 DLFileRankPersistence dlFileRankPersistence) {
403 this.dlFileRankPersistence = dlFileRankPersistence;
404 }
405
406
411 public DLFileRankFinder getDLFileRankFinder() {
412 return dlFileRankFinder;
413 }
414
415
420 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
421 this.dlFileRankFinder = dlFileRankFinder;
422 }
423
424
429 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
430 return dlFileShortcutLocalService;
431 }
432
433
438 public void setDLFileShortcutLocalService(
439 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
440 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
441 }
442
443
448 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
449 return dlFileShortcutService;
450 }
451
452
457 public void setDLFileShortcutService(
458 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
459 this.dlFileShortcutService = dlFileShortcutService;
460 }
461
462
467 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
468 return dlFileShortcutPersistence;
469 }
470
471
476 public void setDLFileShortcutPersistence(
477 DLFileShortcutPersistence dlFileShortcutPersistence) {
478 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
479 }
480
481
486 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
487 return dlFileVersionLocalService;
488 }
489
490
495 public void setDLFileVersionLocalService(
496 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
497 this.dlFileVersionLocalService = dlFileVersionLocalService;
498 }
499
500
505 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
506 return dlFileVersionService;
507 }
508
509
514 public void setDLFileVersionService(
515 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
516 this.dlFileVersionService = dlFileVersionService;
517 }
518
519
524 public DLFileVersionPersistence getDLFileVersionPersistence() {
525 return dlFileVersionPersistence;
526 }
527
528
533 public void setDLFileVersionPersistence(
534 DLFileVersionPersistence dlFileVersionPersistence) {
535 this.dlFileVersionPersistence = dlFileVersionPersistence;
536 }
537
538
543 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
544 return dlFolderLocalService;
545 }
546
547
552 public void setDLFolderLocalService(
553 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
554 this.dlFolderLocalService = dlFolderLocalService;
555 }
556
557
562 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
563 return dlFolderService;
564 }
565
566
571 public void setDLFolderService(
572 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
573 this.dlFolderService = dlFolderService;
574 }
575
576
581 public DLFolderPersistence getDLFolderPersistence() {
582 return dlFolderPersistence;
583 }
584
585
590 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
591 this.dlFolderPersistence = dlFolderPersistence;
592 }
593
594
599 public DLFolderFinder getDLFolderFinder() {
600 return dlFolderFinder;
601 }
602
603
608 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
609 this.dlFolderFinder = dlFolderFinder;
610 }
611
612
617 public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
618 return dlSyncEventLocalService;
619 }
620
621
626 public void setDLSyncEventLocalService(
627 com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
628 this.dlSyncEventLocalService = dlSyncEventLocalService;
629 }
630
631
636 public DLSyncEventPersistence getDLSyncEventPersistence() {
637 return dlSyncEventPersistence;
638 }
639
640
645 public void setDLSyncEventPersistence(
646 DLSyncEventPersistence dlSyncEventPersistence) {
647 this.dlSyncEventPersistence = dlSyncEventPersistence;
648 }
649
650
655 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
656 return counterLocalService;
657 }
658
659
664 public void setCounterLocalService(
665 com.liferay.counter.service.CounterLocalService counterLocalService) {
666 this.counterLocalService = counterLocalService;
667 }
668
669
674 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
675 return groupLocalService;
676 }
677
678
683 public void setGroupLocalService(
684 com.liferay.portal.service.GroupLocalService groupLocalService) {
685 this.groupLocalService = groupLocalService;
686 }
687
688
693 public com.liferay.portal.service.GroupService getGroupService() {
694 return groupService;
695 }
696
697
702 public void setGroupService(
703 com.liferay.portal.service.GroupService groupService) {
704 this.groupService = groupService;
705 }
706
707
712 public GroupPersistence getGroupPersistence() {
713 return groupPersistence;
714 }
715
716
721 public void setGroupPersistence(GroupPersistence groupPersistence) {
722 this.groupPersistence = groupPersistence;
723 }
724
725
730 public GroupFinder getGroupFinder() {
731 return groupFinder;
732 }
733
734
739 public void setGroupFinder(GroupFinder groupFinder) {
740 this.groupFinder = groupFinder;
741 }
742
743
748 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
749 return imageLocalService;
750 }
751
752
757 public void setImageLocalService(
758 com.liferay.portal.service.ImageLocalService imageLocalService) {
759 this.imageLocalService = imageLocalService;
760 }
761
762
767 public com.liferay.portal.service.ImageService getImageService() {
768 return imageService;
769 }
770
771
776 public void setImageService(
777 com.liferay.portal.service.ImageService imageService) {
778 this.imageService = imageService;
779 }
780
781
786 public ImagePersistence getImagePersistence() {
787 return imagePersistence;
788 }
789
790
795 public void setImagePersistence(ImagePersistence imagePersistence) {
796 this.imagePersistence = imagePersistence;
797 }
798
799
804 public com.liferay.portal.service.LockLocalService getLockLocalService() {
805 return lockLocalService;
806 }
807
808
813 public void setLockLocalService(
814 com.liferay.portal.service.LockLocalService lockLocalService) {
815 this.lockLocalService = lockLocalService;
816 }
817
818
823 public LockPersistence getLockPersistence() {
824 return lockPersistence;
825 }
826
827
832 public void setLockPersistence(LockPersistence lockPersistence) {
833 this.lockPersistence = lockPersistence;
834 }
835
836
841 public LockFinder getLockFinder() {
842 return lockFinder;
843 }
844
845
850 public void setLockFinder(LockFinder lockFinder) {
851 this.lockFinder = lockFinder;
852 }
853
854
859 public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
860 return repositoryLocalService;
861 }
862
863
868 public void setRepositoryLocalService(
869 com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
870 this.repositoryLocalService = repositoryLocalService;
871 }
872
873
878 public com.liferay.portal.service.RepositoryService getRepositoryService() {
879 return repositoryService;
880 }
881
882
887 public void setRepositoryService(
888 com.liferay.portal.service.RepositoryService repositoryService) {
889 this.repositoryService = repositoryService;
890 }
891
892
897 public RepositoryPersistence getRepositoryPersistence() {
898 return repositoryPersistence;
899 }
900
901
906 public void setRepositoryPersistence(
907 RepositoryPersistence repositoryPersistence) {
908 this.repositoryPersistence = repositoryPersistence;
909 }
910
911
916 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
917 return resourceLocalService;
918 }
919
920
925 public void setResourceLocalService(
926 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
927 this.resourceLocalService = resourceLocalService;
928 }
929
930
935 public com.liferay.portal.service.UserLocalService getUserLocalService() {
936 return userLocalService;
937 }
938
939
944 public void setUserLocalService(
945 com.liferay.portal.service.UserLocalService userLocalService) {
946 this.userLocalService = userLocalService;
947 }
948
949
954 public com.liferay.portal.service.UserService getUserService() {
955 return userService;
956 }
957
958
963 public void setUserService(
964 com.liferay.portal.service.UserService userService) {
965 this.userService = userService;
966 }
967
968
973 public UserPersistence getUserPersistence() {
974 return userPersistence;
975 }
976
977
982 public void setUserPersistence(UserPersistence userPersistence) {
983 this.userPersistence = userPersistence;
984 }
985
986
991 public UserFinder getUserFinder() {
992 return userFinder;
993 }
994
995
1000 public void setUserFinder(UserFinder userFinder) {
1001 this.userFinder = userFinder;
1002 }
1003
1004
1009 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
1010 return webDAVPropsLocalService;
1011 }
1012
1013
1018 public void setWebDAVPropsLocalService(
1019 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
1020 this.webDAVPropsLocalService = webDAVPropsLocalService;
1021 }
1022
1023
1028 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1029 return webDAVPropsPersistence;
1030 }
1031
1032
1037 public void setWebDAVPropsPersistence(
1038 WebDAVPropsPersistence webDAVPropsPersistence) {
1039 this.webDAVPropsPersistence = webDAVPropsPersistence;
1040 }
1041
1042
1047 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1048 return workflowInstanceLinkLocalService;
1049 }
1050
1051
1056 public void setWorkflowInstanceLinkLocalService(
1057 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1058 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1059 }
1060
1061
1066 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1067 return workflowInstanceLinkPersistence;
1068 }
1069
1070
1075 public void setWorkflowInstanceLinkPersistence(
1076 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1077 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1078 }
1079
1080
1085 public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
1086 return assetCategoryLocalService;
1087 }
1088
1089
1094 public void setAssetCategoryLocalService(
1095 com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
1096 this.assetCategoryLocalService = assetCategoryLocalService;
1097 }
1098
1099
1104 public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
1105 return assetCategoryService;
1106 }
1107
1108
1113 public void setAssetCategoryService(
1114 com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
1115 this.assetCategoryService = assetCategoryService;
1116 }
1117
1118
1123 public AssetCategoryPersistence getAssetCategoryPersistence() {
1124 return assetCategoryPersistence;
1125 }
1126
1127
1132 public void setAssetCategoryPersistence(
1133 AssetCategoryPersistence assetCategoryPersistence) {
1134 this.assetCategoryPersistence = assetCategoryPersistence;
1135 }
1136
1137
1142 public AssetCategoryFinder getAssetCategoryFinder() {
1143 return assetCategoryFinder;
1144 }
1145
1146
1151 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1152 this.assetCategoryFinder = assetCategoryFinder;
1153 }
1154
1155
1160 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1161 return assetEntryLocalService;
1162 }
1163
1164
1169 public void setAssetEntryLocalService(
1170 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1171 this.assetEntryLocalService = assetEntryLocalService;
1172 }
1173
1174
1179 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1180 return assetEntryService;
1181 }
1182
1183
1188 public void setAssetEntryService(
1189 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1190 this.assetEntryService = assetEntryService;
1191 }
1192
1193
1198 public AssetEntryPersistence getAssetEntryPersistence() {
1199 return assetEntryPersistence;
1200 }
1201
1202
1207 public void setAssetEntryPersistence(
1208 AssetEntryPersistence assetEntryPersistence) {
1209 this.assetEntryPersistence = assetEntryPersistence;
1210 }
1211
1212
1217 public AssetEntryFinder getAssetEntryFinder() {
1218 return assetEntryFinder;
1219 }
1220
1221
1226 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1227 this.assetEntryFinder = assetEntryFinder;
1228 }
1229
1230
1235 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
1236 return assetLinkLocalService;
1237 }
1238
1239
1244 public void setAssetLinkLocalService(
1245 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
1246 this.assetLinkLocalService = assetLinkLocalService;
1247 }
1248
1249
1254 public AssetLinkPersistence getAssetLinkPersistence() {
1255 return assetLinkPersistence;
1256 }
1257
1258
1263 public void setAssetLinkPersistence(
1264 AssetLinkPersistence assetLinkPersistence) {
1265 this.assetLinkPersistence = assetLinkPersistence;
1266 }
1267
1268
1273 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1274 return assetTagLocalService;
1275 }
1276
1277
1282 public void setAssetTagLocalService(
1283 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1284 this.assetTagLocalService = assetTagLocalService;
1285 }
1286
1287
1292 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1293 return assetTagService;
1294 }
1295
1296
1301 public void setAssetTagService(
1302 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1303 this.assetTagService = assetTagService;
1304 }
1305
1306
1311 public AssetTagPersistence getAssetTagPersistence() {
1312 return assetTagPersistence;
1313 }
1314
1315
1320 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1321 this.assetTagPersistence = assetTagPersistence;
1322 }
1323
1324
1329 public AssetTagFinder getAssetTagFinder() {
1330 return assetTagFinder;
1331 }
1332
1333
1338 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1339 this.assetTagFinder = assetTagFinder;
1340 }
1341
1342
1347 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
1348 return ddmStructureLocalService;
1349 }
1350
1351
1356 public void setDDMStructureLocalService(
1357 com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
1358 this.ddmStructureLocalService = ddmStructureLocalService;
1359 }
1360
1361
1366 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
1367 return ddmStructureService;
1368 }
1369
1370
1375 public void setDDMStructureService(
1376 com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
1377 this.ddmStructureService = ddmStructureService;
1378 }
1379
1380
1385 public DDMStructurePersistence getDDMStructurePersistence() {
1386 return ddmStructurePersistence;
1387 }
1388
1389
1394 public void setDDMStructurePersistence(
1395 DDMStructurePersistence ddmStructurePersistence) {
1396 this.ddmStructurePersistence = ddmStructurePersistence;
1397 }
1398
1399
1404 public DDMStructureFinder getDDMStructureFinder() {
1405 return ddmStructureFinder;
1406 }
1407
1408
1413 public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1414 this.ddmStructureFinder = ddmStructureFinder;
1415 }
1416
1417
1422 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1423 return expandoRowLocalService;
1424 }
1425
1426
1431 public void setExpandoRowLocalService(
1432 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1433 this.expandoRowLocalService = expandoRowLocalService;
1434 }
1435
1436
1441 public ExpandoRowPersistence getExpandoRowPersistence() {
1442 return expandoRowPersistence;
1443 }
1444
1445
1450 public void setExpandoRowPersistence(
1451 ExpandoRowPersistence expandoRowPersistence) {
1452 this.expandoRowPersistence = expandoRowPersistence;
1453 }
1454
1455
1460 public com.liferay.portlet.expando.service.ExpandoTableLocalService getExpandoTableLocalService() {
1461 return expandoTableLocalService;
1462 }
1463
1464
1469 public void setExpandoTableLocalService(
1470 com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService) {
1471 this.expandoTableLocalService = expandoTableLocalService;
1472 }
1473
1474
1479 public ExpandoTablePersistence getExpandoTablePersistence() {
1480 return expandoTablePersistence;
1481 }
1482
1483
1488 public void setExpandoTablePersistence(
1489 ExpandoTablePersistence expandoTablePersistence) {
1490 this.expandoTablePersistence = expandoTablePersistence;
1491 }
1492
1493
1498 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1499 return trashEntryLocalService;
1500 }
1501
1502
1507 public void setTrashEntryLocalService(
1508 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1509 this.trashEntryLocalService = trashEntryLocalService;
1510 }
1511
1512
1517 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1518 return trashEntryService;
1519 }
1520
1521
1526 public void setTrashEntryService(
1527 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1528 this.trashEntryService = trashEntryService;
1529 }
1530
1531
1536 public TrashEntryPersistence getTrashEntryPersistence() {
1537 return trashEntryPersistence;
1538 }
1539
1540
1545 public void setTrashEntryPersistence(
1546 TrashEntryPersistence trashEntryPersistence) {
1547 this.trashEntryPersistence = trashEntryPersistence;
1548 }
1549
1550 public void afterPropertiesSet() {
1551 }
1552
1553 public void destroy() {
1554 }
1555
1556
1561 @Override
1562 public String getBeanIdentifier() {
1563 return _beanIdentifier;
1564 }
1565
1566
1571 @Override
1572 public void setBeanIdentifier(String beanIdentifier) {
1573 _beanIdentifier = beanIdentifier;
1574 }
1575
1576 protected Class<?> getModelClass() {
1577 return DLFileEntry.class;
1578 }
1579
1580 protected String getModelClassName() {
1581 return DLFileEntry.class.getName();
1582 }
1583
1584
1589 protected void runSQL(String sql) throws SystemException {
1590 try {
1591 DataSource dataSource = dlFileEntryPersistence.getDataSource();
1592
1593 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1594 sql, new int[0]);
1595
1596 sqlUpdate.update();
1597 }
1598 catch (Exception e) {
1599 throw new SystemException(e);
1600 }
1601 }
1602
1603 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1604 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1605 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1606 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1607 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1608 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1609 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1610 protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1611 @BeanReference(type = DLContentPersistence.class)
1612 protected DLContentPersistence dlContentPersistence;
1613 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1614 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1615 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1616 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1617 @BeanReference(type = DLFileEntryPersistence.class)
1618 protected DLFileEntryPersistence dlFileEntryPersistence;
1619 @BeanReference(type = DLFileEntryFinder.class)
1620 protected DLFileEntryFinder dlFileEntryFinder;
1621 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1622 protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1623 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1624 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1625 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1626 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1627 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1628 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1629 @BeanReference(type = DLFileEntryTypePersistence.class)
1630 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1631 @BeanReference(type = DLFileEntryTypeFinder.class)
1632 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1633 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
1634 protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
1635 @BeanReference(type = DLFileRankPersistence.class)
1636 protected DLFileRankPersistence dlFileRankPersistence;
1637 @BeanReference(type = DLFileRankFinder.class)
1638 protected DLFileRankFinder dlFileRankFinder;
1639 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1640 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1641 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1642 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1643 @BeanReference(type = DLFileShortcutPersistence.class)
1644 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1645 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1646 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1647 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1648 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1649 @BeanReference(type = DLFileVersionPersistence.class)
1650 protected DLFileVersionPersistence dlFileVersionPersistence;
1651 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1652 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1653 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1654 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1655 @BeanReference(type = DLFolderPersistence.class)
1656 protected DLFolderPersistence dlFolderPersistence;
1657 @BeanReference(type = DLFolderFinder.class)
1658 protected DLFolderFinder dlFolderFinder;
1659 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1660 protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1661 @BeanReference(type = DLSyncEventPersistence.class)
1662 protected DLSyncEventPersistence dlSyncEventPersistence;
1663 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1664 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1665 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1666 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1667 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1668 protected com.liferay.portal.service.GroupService groupService;
1669 @BeanReference(type = GroupPersistence.class)
1670 protected GroupPersistence groupPersistence;
1671 @BeanReference(type = GroupFinder.class)
1672 protected GroupFinder groupFinder;
1673 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1674 protected com.liferay.portal.service.ImageLocalService imageLocalService;
1675 @BeanReference(type = com.liferay.portal.service.ImageService.class)
1676 protected com.liferay.portal.service.ImageService imageService;
1677 @BeanReference(type = ImagePersistence.class)
1678 protected ImagePersistence imagePersistence;
1679 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1680 protected com.liferay.portal.service.LockLocalService lockLocalService;
1681 @BeanReference(type = LockPersistence.class)
1682 protected LockPersistence lockPersistence;
1683 @BeanReference(type = LockFinder.class)
1684 protected LockFinder lockFinder;
1685 @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1686 protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1687 @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1688 protected com.liferay.portal.service.RepositoryService repositoryService;
1689 @BeanReference(type = RepositoryPersistence.class)
1690 protected RepositoryPersistence repositoryPersistence;
1691 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1692 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1693 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1694 protected com.liferay.portal.service.UserLocalService userLocalService;
1695 @BeanReference(type = com.liferay.portal.service.UserService.class)
1696 protected com.liferay.portal.service.UserService userService;
1697 @BeanReference(type = UserPersistence.class)
1698 protected UserPersistence userPersistence;
1699 @BeanReference(type = UserFinder.class)
1700 protected UserFinder userFinder;
1701 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1702 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1703 @BeanReference(type = WebDAVPropsPersistence.class)
1704 protected WebDAVPropsPersistence webDAVPropsPersistence;
1705 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1706 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1707 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1708 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1709 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
1710 protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
1711 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
1712 protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
1713 @BeanReference(type = AssetCategoryPersistence.class)
1714 protected AssetCategoryPersistence assetCategoryPersistence;
1715 @BeanReference(type = AssetCategoryFinder.class)
1716 protected AssetCategoryFinder assetCategoryFinder;
1717 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1718 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1719 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1720 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1721 @BeanReference(type = AssetEntryPersistence.class)
1722 protected AssetEntryPersistence assetEntryPersistence;
1723 @BeanReference(type = AssetEntryFinder.class)
1724 protected AssetEntryFinder assetEntryFinder;
1725 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1726 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1727 @BeanReference(type = AssetLinkPersistence.class)
1728 protected AssetLinkPersistence assetLinkPersistence;
1729 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1730 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1731 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1732 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1733 @BeanReference(type = AssetTagPersistence.class)
1734 protected AssetTagPersistence assetTagPersistence;
1735 @BeanReference(type = AssetTagFinder.class)
1736 protected AssetTagFinder assetTagFinder;
1737 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
1738 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
1739 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
1740 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
1741 @BeanReference(type = DDMStructurePersistence.class)
1742 protected DDMStructurePersistence ddmStructurePersistence;
1743 @BeanReference(type = DDMStructureFinder.class)
1744 protected DDMStructureFinder ddmStructureFinder;
1745 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1746 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1747 @BeanReference(type = ExpandoRowPersistence.class)
1748 protected ExpandoRowPersistence expandoRowPersistence;
1749 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoTableLocalService.class)
1750 protected com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService;
1751 @BeanReference(type = ExpandoTablePersistence.class)
1752 protected ExpandoTablePersistence expandoTablePersistence;
1753 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1754 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1755 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1756 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1757 @BeanReference(type = TrashEntryPersistence.class)
1758 protected TrashEntryPersistence trashEntryPersistence;
1759 private String _beanIdentifier;
1760 }