001
014
015 package com.liferay.portlet.documentlibrary.service.base;
016
017 import com.liferay.counter.service.CounterLocalService;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.bean.IdentifiableBean;
021 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
024 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
025 import com.liferay.portal.kernel.exception.PortalException;
026 import com.liferay.portal.kernel.exception.SystemException;
027 import com.liferay.portal.kernel.search.Indexable;
028 import com.liferay.portal.kernel.search.IndexableType;
029 import com.liferay.portal.kernel.util.OrderByComparator;
030 import com.liferay.portal.model.PersistedModel;
031 import com.liferay.portal.service.BaseLocalServiceImpl;
032 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
033 import com.liferay.portal.service.ResourceLocalService;
034 import com.liferay.portal.service.ResourceService;
035 import com.liferay.portal.service.UserLocalService;
036 import com.liferay.portal.service.UserService;
037 import com.liferay.portal.service.persistence.ResourceFinder;
038 import com.liferay.portal.service.persistence.ResourcePersistence;
039 import com.liferay.portal.service.persistence.UserFinder;
040 import com.liferay.portal.service.persistence.UserPersistence;
041
042 import com.liferay.portlet.documentlibrary.model.DLFileEntryMetadata;
043 import com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService;
044 import com.liferay.portlet.documentlibrary.service.DLAppLocalService;
045 import com.liferay.portlet.documentlibrary.service.DLAppService;
046 import com.liferay.portlet.documentlibrary.service.DLContentLocalService;
047 import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
048 import com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService;
049 import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
050 import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService;
051 import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
052 import com.liferay.portlet.documentlibrary.service.DLFileRankLocalService;
053 import com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService;
054 import com.liferay.portlet.documentlibrary.service.DLFileShortcutService;
055 import com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService;
056 import com.liferay.portlet.documentlibrary.service.DLFileVersionService;
057 import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
058 import com.liferay.portlet.documentlibrary.service.DLFolderService;
059 import com.liferay.portlet.documentlibrary.service.DLSyncLocalService;
060 import com.liferay.portlet.documentlibrary.service.DLSyncService;
061 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
062 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
063 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
064 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
065 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
066 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
067 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
068 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
069 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
070 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
071 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
072 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
073 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncFinder;
074 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncPersistence;
075 import com.liferay.portlet.dynamicdatamapping.service.DDMStructureLinkLocalService;
076 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureLinkPersistence;
077
078 import java.io.Serializable;
079
080 import java.util.List;
081
082 import javax.sql.DataSource;
083
084
096 public abstract class DLFileEntryMetadataLocalServiceBaseImpl
097 extends BaseLocalServiceImpl implements DLFileEntryMetadataLocalService,
098 IdentifiableBean {
099
104
105
112 @Indexable(type = IndexableType.REINDEX)
113 public DLFileEntryMetadata addDLFileEntryMetadata(
114 DLFileEntryMetadata dlFileEntryMetadata) throws SystemException {
115 dlFileEntryMetadata.setNew(true);
116
117 return dlFileEntryMetadataPersistence.update(dlFileEntryMetadata, false);
118 }
119
120
126 public DLFileEntryMetadata createDLFileEntryMetadata(
127 long fileEntryMetadataId) {
128 return dlFileEntryMetadataPersistence.create(fileEntryMetadataId);
129 }
130
131
139 @Indexable(type = IndexableType.DELETE)
140 public DLFileEntryMetadata deleteDLFileEntryMetadata(
141 long fileEntryMetadataId) throws PortalException, SystemException {
142 return dlFileEntryMetadataPersistence.remove(fileEntryMetadataId);
143 }
144
145
152 @Indexable(type = IndexableType.DELETE)
153 public DLFileEntryMetadata deleteDLFileEntryMetadata(
154 DLFileEntryMetadata dlFileEntryMetadata) throws SystemException {
155 return dlFileEntryMetadataPersistence.remove(dlFileEntryMetadata);
156 }
157
158 public DynamicQuery dynamicQuery() {
159 Class<?> clazz = getClass();
160
161 return DynamicQueryFactoryUtil.forClass(DLFileEntryMetadata.class,
162 clazz.getClassLoader());
163 }
164
165
172 @SuppressWarnings("rawtypes")
173 public List dynamicQuery(DynamicQuery dynamicQuery)
174 throws SystemException {
175 return dlFileEntryMetadataPersistence.findWithDynamicQuery(dynamicQuery);
176 }
177
178
191 @SuppressWarnings("rawtypes")
192 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
193 throws SystemException {
194 return dlFileEntryMetadataPersistence.findWithDynamicQuery(dynamicQuery,
195 start, end);
196 }
197
198
212 @SuppressWarnings("rawtypes")
213 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
214 OrderByComparator orderByComparator) throws SystemException {
215 return dlFileEntryMetadataPersistence.findWithDynamicQuery(dynamicQuery,
216 start, end, orderByComparator);
217 }
218
219
226 public long dynamicQueryCount(DynamicQuery dynamicQuery)
227 throws SystemException {
228 return dlFileEntryMetadataPersistence.countWithDynamicQuery(dynamicQuery);
229 }
230
231 public DLFileEntryMetadata fetchDLFileEntryMetadata(
232 long fileEntryMetadataId) throws SystemException {
233 return dlFileEntryMetadataPersistence.fetchByPrimaryKey(fileEntryMetadataId);
234 }
235
236
244 public DLFileEntryMetadata getDLFileEntryMetadata(long fileEntryMetadataId)
245 throws PortalException, SystemException {
246 return dlFileEntryMetadataPersistence.findByPrimaryKey(fileEntryMetadataId);
247 }
248
249 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
250 throws PortalException, SystemException {
251 return dlFileEntryMetadataPersistence.findByPrimaryKey(primaryKeyObj);
252 }
253
254
266 public List<DLFileEntryMetadata> getDLFileEntryMetadatas(int start, int end)
267 throws SystemException {
268 return dlFileEntryMetadataPersistence.findAll(start, end);
269 }
270
271
277 public int getDLFileEntryMetadatasCount() throws SystemException {
278 return dlFileEntryMetadataPersistence.countAll();
279 }
280
281
288 @Indexable(type = IndexableType.REINDEX)
289 public DLFileEntryMetadata updateDLFileEntryMetadata(
290 DLFileEntryMetadata dlFileEntryMetadata) throws SystemException {
291 return updateDLFileEntryMetadata(dlFileEntryMetadata, true);
292 }
293
294
302 @Indexable(type = IndexableType.REINDEX)
303 public DLFileEntryMetadata updateDLFileEntryMetadata(
304 DLFileEntryMetadata dlFileEntryMetadata, boolean merge)
305 throws SystemException {
306 dlFileEntryMetadata.setNew(false);
307
308 return dlFileEntryMetadataPersistence.update(dlFileEntryMetadata, merge);
309 }
310
311
316 public DLAppLocalService getDLAppLocalService() {
317 return dlAppLocalService;
318 }
319
320
325 public void setDLAppLocalService(DLAppLocalService dlAppLocalService) {
326 this.dlAppLocalService = dlAppLocalService;
327 }
328
329
334 public DLAppService getDLAppService() {
335 return dlAppService;
336 }
337
338
343 public void setDLAppService(DLAppService dlAppService) {
344 this.dlAppService = dlAppService;
345 }
346
347
352 public DLAppHelperLocalService getDLAppHelperLocalService() {
353 return dlAppHelperLocalService;
354 }
355
356
361 public void setDLAppHelperLocalService(
362 DLAppHelperLocalService dlAppHelperLocalService) {
363 this.dlAppHelperLocalService = dlAppHelperLocalService;
364 }
365
366
371 public DLContentLocalService getDLContentLocalService() {
372 return dlContentLocalService;
373 }
374
375
380 public void setDLContentLocalService(
381 DLContentLocalService dlContentLocalService) {
382 this.dlContentLocalService = dlContentLocalService;
383 }
384
385
390 public DLContentPersistence getDLContentPersistence() {
391 return dlContentPersistence;
392 }
393
394
399 public void setDLContentPersistence(
400 DLContentPersistence dlContentPersistence) {
401 this.dlContentPersistence = dlContentPersistence;
402 }
403
404
409 public DLFileEntryLocalService getDLFileEntryLocalService() {
410 return dlFileEntryLocalService;
411 }
412
413
418 public void setDLFileEntryLocalService(
419 DLFileEntryLocalService dlFileEntryLocalService) {
420 this.dlFileEntryLocalService = dlFileEntryLocalService;
421 }
422
423
428 public DLFileEntryService getDLFileEntryService() {
429 return dlFileEntryService;
430 }
431
432
437 public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
438 this.dlFileEntryService = dlFileEntryService;
439 }
440
441
446 public DLFileEntryPersistence getDLFileEntryPersistence() {
447 return dlFileEntryPersistence;
448 }
449
450
455 public void setDLFileEntryPersistence(
456 DLFileEntryPersistence dlFileEntryPersistence) {
457 this.dlFileEntryPersistence = dlFileEntryPersistence;
458 }
459
460
465 public DLFileEntryFinder getDLFileEntryFinder() {
466 return dlFileEntryFinder;
467 }
468
469
474 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
475 this.dlFileEntryFinder = dlFileEntryFinder;
476 }
477
478
483 public DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
484 return dlFileEntryMetadataLocalService;
485 }
486
487
492 public void setDLFileEntryMetadataLocalService(
493 DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
494 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
495 }
496
497
502 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
503 return dlFileEntryMetadataPersistence;
504 }
505
506
511 public void setDLFileEntryMetadataPersistence(
512 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
513 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
514 }
515
516
521 public DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
522 return dlFileEntryTypeLocalService;
523 }
524
525
530 public void setDLFileEntryTypeLocalService(
531 DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
532 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
533 }
534
535
540 public DLFileEntryTypeService getDLFileEntryTypeService() {
541 return dlFileEntryTypeService;
542 }
543
544
549 public void setDLFileEntryTypeService(
550 DLFileEntryTypeService dlFileEntryTypeService) {
551 this.dlFileEntryTypeService = dlFileEntryTypeService;
552 }
553
554
559 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
560 return dlFileEntryTypePersistence;
561 }
562
563
568 public void setDLFileEntryTypePersistence(
569 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
570 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
571 }
572
573
578 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
579 return dlFileEntryTypeFinder;
580 }
581
582
587 public void setDLFileEntryTypeFinder(
588 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
589 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
590 }
591
592
597 public DLFileRankLocalService getDLFileRankLocalService() {
598 return dlFileRankLocalService;
599 }
600
601
606 public void setDLFileRankLocalService(
607 DLFileRankLocalService dlFileRankLocalService) {
608 this.dlFileRankLocalService = dlFileRankLocalService;
609 }
610
611
616 public DLFileRankPersistence getDLFileRankPersistence() {
617 return dlFileRankPersistence;
618 }
619
620
625 public void setDLFileRankPersistence(
626 DLFileRankPersistence dlFileRankPersistence) {
627 this.dlFileRankPersistence = dlFileRankPersistence;
628 }
629
630
635 public DLFileRankFinder getDLFileRankFinder() {
636 return dlFileRankFinder;
637 }
638
639
644 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
645 this.dlFileRankFinder = dlFileRankFinder;
646 }
647
648
653 public DLFileShortcutLocalService getDLFileShortcutLocalService() {
654 return dlFileShortcutLocalService;
655 }
656
657
662 public void setDLFileShortcutLocalService(
663 DLFileShortcutLocalService dlFileShortcutLocalService) {
664 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
665 }
666
667
672 public DLFileShortcutService getDLFileShortcutService() {
673 return dlFileShortcutService;
674 }
675
676
681 public void setDLFileShortcutService(
682 DLFileShortcutService dlFileShortcutService) {
683 this.dlFileShortcutService = dlFileShortcutService;
684 }
685
686
691 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
692 return dlFileShortcutPersistence;
693 }
694
695
700 public void setDLFileShortcutPersistence(
701 DLFileShortcutPersistence dlFileShortcutPersistence) {
702 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
703 }
704
705
710 public DLFileVersionLocalService getDLFileVersionLocalService() {
711 return dlFileVersionLocalService;
712 }
713
714
719 public void setDLFileVersionLocalService(
720 DLFileVersionLocalService dlFileVersionLocalService) {
721 this.dlFileVersionLocalService = dlFileVersionLocalService;
722 }
723
724
729 public DLFileVersionService getDLFileVersionService() {
730 return dlFileVersionService;
731 }
732
733
738 public void setDLFileVersionService(
739 DLFileVersionService dlFileVersionService) {
740 this.dlFileVersionService = dlFileVersionService;
741 }
742
743
748 public DLFileVersionPersistence getDLFileVersionPersistence() {
749 return dlFileVersionPersistence;
750 }
751
752
757 public void setDLFileVersionPersistence(
758 DLFileVersionPersistence dlFileVersionPersistence) {
759 this.dlFileVersionPersistence = dlFileVersionPersistence;
760 }
761
762
767 public DLFolderLocalService getDLFolderLocalService() {
768 return dlFolderLocalService;
769 }
770
771
776 public void setDLFolderLocalService(
777 DLFolderLocalService dlFolderLocalService) {
778 this.dlFolderLocalService = dlFolderLocalService;
779 }
780
781
786 public DLFolderService getDLFolderService() {
787 return dlFolderService;
788 }
789
790
795 public void setDLFolderService(DLFolderService dlFolderService) {
796 this.dlFolderService = dlFolderService;
797 }
798
799
804 public DLFolderPersistence getDLFolderPersistence() {
805 return dlFolderPersistence;
806 }
807
808
813 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
814 this.dlFolderPersistence = dlFolderPersistence;
815 }
816
817
822 public DLFolderFinder getDLFolderFinder() {
823 return dlFolderFinder;
824 }
825
826
831 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
832 this.dlFolderFinder = dlFolderFinder;
833 }
834
835
840 public DLSyncLocalService getDLSyncLocalService() {
841 return dlSyncLocalService;
842 }
843
844
849 public void setDLSyncLocalService(DLSyncLocalService dlSyncLocalService) {
850 this.dlSyncLocalService = dlSyncLocalService;
851 }
852
853
858 public DLSyncService getDLSyncService() {
859 return dlSyncService;
860 }
861
862
867 public void setDLSyncService(DLSyncService dlSyncService) {
868 this.dlSyncService = dlSyncService;
869 }
870
871
876 public DLSyncPersistence getDLSyncPersistence() {
877 return dlSyncPersistence;
878 }
879
880
885 public void setDLSyncPersistence(DLSyncPersistence dlSyncPersistence) {
886 this.dlSyncPersistence = dlSyncPersistence;
887 }
888
889
894 public DLSyncFinder getDLSyncFinder() {
895 return dlSyncFinder;
896 }
897
898
903 public void setDLSyncFinder(DLSyncFinder dlSyncFinder) {
904 this.dlSyncFinder = dlSyncFinder;
905 }
906
907
912 public CounterLocalService getCounterLocalService() {
913 return counterLocalService;
914 }
915
916
921 public void setCounterLocalService(CounterLocalService counterLocalService) {
922 this.counterLocalService = counterLocalService;
923 }
924
925
930 public ResourceLocalService getResourceLocalService() {
931 return resourceLocalService;
932 }
933
934
939 public void setResourceLocalService(
940 ResourceLocalService resourceLocalService) {
941 this.resourceLocalService = resourceLocalService;
942 }
943
944
949 public ResourceService getResourceService() {
950 return resourceService;
951 }
952
953
958 public void setResourceService(ResourceService resourceService) {
959 this.resourceService = resourceService;
960 }
961
962
967 public ResourcePersistence getResourcePersistence() {
968 return resourcePersistence;
969 }
970
971
976 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
977 this.resourcePersistence = resourcePersistence;
978 }
979
980
985 public ResourceFinder getResourceFinder() {
986 return resourceFinder;
987 }
988
989
994 public void setResourceFinder(ResourceFinder resourceFinder) {
995 this.resourceFinder = resourceFinder;
996 }
997
998
1003 public UserLocalService getUserLocalService() {
1004 return userLocalService;
1005 }
1006
1007
1012 public void setUserLocalService(UserLocalService userLocalService) {
1013 this.userLocalService = userLocalService;
1014 }
1015
1016
1021 public UserService getUserService() {
1022 return userService;
1023 }
1024
1025
1030 public void setUserService(UserService userService) {
1031 this.userService = userService;
1032 }
1033
1034
1039 public UserPersistence getUserPersistence() {
1040 return userPersistence;
1041 }
1042
1043
1048 public void setUserPersistence(UserPersistence userPersistence) {
1049 this.userPersistence = userPersistence;
1050 }
1051
1052
1057 public UserFinder getUserFinder() {
1058 return userFinder;
1059 }
1060
1061
1066 public void setUserFinder(UserFinder userFinder) {
1067 this.userFinder = userFinder;
1068 }
1069
1070
1075 public DDMStructureLinkLocalService getDDMStructureLinkLocalService() {
1076 return ddmStructureLinkLocalService;
1077 }
1078
1079
1084 public void setDDMStructureLinkLocalService(
1085 DDMStructureLinkLocalService ddmStructureLinkLocalService) {
1086 this.ddmStructureLinkLocalService = ddmStructureLinkLocalService;
1087 }
1088
1089
1094 public DDMStructureLinkPersistence getDDMStructureLinkPersistence() {
1095 return ddmStructureLinkPersistence;
1096 }
1097
1098
1103 public void setDDMStructureLinkPersistence(
1104 DDMStructureLinkPersistence ddmStructureLinkPersistence) {
1105 this.ddmStructureLinkPersistence = ddmStructureLinkPersistence;
1106 }
1107
1108 public void afterPropertiesSet() {
1109 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLFileEntryMetadata",
1110 dlFileEntryMetadataLocalService);
1111 }
1112
1113 public void destroy() {
1114 persistedModelLocalServiceRegistry.unregister(
1115 "com.liferay.portlet.documentlibrary.model.DLFileEntryMetadata");
1116 }
1117
1118
1123 public String getBeanIdentifier() {
1124 return _beanIdentifier;
1125 }
1126
1127
1132 public void setBeanIdentifier(String beanIdentifier) {
1133 _beanIdentifier = beanIdentifier;
1134 }
1135
1136 protected Class<?> getModelClass() {
1137 return DLFileEntryMetadata.class;
1138 }
1139
1140 protected String getModelClassName() {
1141 return DLFileEntryMetadata.class.getName();
1142 }
1143
1144
1149 protected void runSQL(String sql) throws SystemException {
1150 try {
1151 DataSource dataSource = dlFileEntryMetadataPersistence.getDataSource();
1152
1153 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1154 sql, new int[0]);
1155
1156 sqlUpdate.update();
1157 }
1158 catch (Exception e) {
1159 throw new SystemException(e);
1160 }
1161 }
1162
1163 @BeanReference(type = DLAppLocalService.class)
1164 protected DLAppLocalService dlAppLocalService;
1165 @BeanReference(type = DLAppService.class)
1166 protected DLAppService dlAppService;
1167 @BeanReference(type = DLAppHelperLocalService.class)
1168 protected DLAppHelperLocalService dlAppHelperLocalService;
1169 @BeanReference(type = DLContentLocalService.class)
1170 protected DLContentLocalService dlContentLocalService;
1171 @BeanReference(type = DLContentPersistence.class)
1172 protected DLContentPersistence dlContentPersistence;
1173 @BeanReference(type = DLFileEntryLocalService.class)
1174 protected DLFileEntryLocalService dlFileEntryLocalService;
1175 @BeanReference(type = DLFileEntryService.class)
1176 protected DLFileEntryService dlFileEntryService;
1177 @BeanReference(type = DLFileEntryPersistence.class)
1178 protected DLFileEntryPersistence dlFileEntryPersistence;
1179 @BeanReference(type = DLFileEntryFinder.class)
1180 protected DLFileEntryFinder dlFileEntryFinder;
1181 @BeanReference(type = DLFileEntryMetadataLocalService.class)
1182 protected DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1183 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1184 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1185 @BeanReference(type = DLFileEntryTypeLocalService.class)
1186 protected DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1187 @BeanReference(type = DLFileEntryTypeService.class)
1188 protected DLFileEntryTypeService dlFileEntryTypeService;
1189 @BeanReference(type = DLFileEntryTypePersistence.class)
1190 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1191 @BeanReference(type = DLFileEntryTypeFinder.class)
1192 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1193 @BeanReference(type = DLFileRankLocalService.class)
1194 protected DLFileRankLocalService dlFileRankLocalService;
1195 @BeanReference(type = DLFileRankPersistence.class)
1196 protected DLFileRankPersistence dlFileRankPersistence;
1197 @BeanReference(type = DLFileRankFinder.class)
1198 protected DLFileRankFinder dlFileRankFinder;
1199 @BeanReference(type = DLFileShortcutLocalService.class)
1200 protected DLFileShortcutLocalService dlFileShortcutLocalService;
1201 @BeanReference(type = DLFileShortcutService.class)
1202 protected DLFileShortcutService dlFileShortcutService;
1203 @BeanReference(type = DLFileShortcutPersistence.class)
1204 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1205 @BeanReference(type = DLFileVersionLocalService.class)
1206 protected DLFileVersionLocalService dlFileVersionLocalService;
1207 @BeanReference(type = DLFileVersionService.class)
1208 protected DLFileVersionService dlFileVersionService;
1209 @BeanReference(type = DLFileVersionPersistence.class)
1210 protected DLFileVersionPersistence dlFileVersionPersistence;
1211 @BeanReference(type = DLFolderLocalService.class)
1212 protected DLFolderLocalService dlFolderLocalService;
1213 @BeanReference(type = DLFolderService.class)
1214 protected DLFolderService dlFolderService;
1215 @BeanReference(type = DLFolderPersistence.class)
1216 protected DLFolderPersistence dlFolderPersistence;
1217 @BeanReference(type = DLFolderFinder.class)
1218 protected DLFolderFinder dlFolderFinder;
1219 @BeanReference(type = DLSyncLocalService.class)
1220 protected DLSyncLocalService dlSyncLocalService;
1221 @BeanReference(type = DLSyncService.class)
1222 protected DLSyncService dlSyncService;
1223 @BeanReference(type = DLSyncPersistence.class)
1224 protected DLSyncPersistence dlSyncPersistence;
1225 @BeanReference(type = DLSyncFinder.class)
1226 protected DLSyncFinder dlSyncFinder;
1227 @BeanReference(type = CounterLocalService.class)
1228 protected CounterLocalService counterLocalService;
1229 @BeanReference(type = ResourceLocalService.class)
1230 protected ResourceLocalService resourceLocalService;
1231 @BeanReference(type = ResourceService.class)
1232 protected ResourceService resourceService;
1233 @BeanReference(type = ResourcePersistence.class)
1234 protected ResourcePersistence resourcePersistence;
1235 @BeanReference(type = ResourceFinder.class)
1236 protected ResourceFinder resourceFinder;
1237 @BeanReference(type = UserLocalService.class)
1238 protected UserLocalService userLocalService;
1239 @BeanReference(type = UserService.class)
1240 protected UserService userService;
1241 @BeanReference(type = UserPersistence.class)
1242 protected UserPersistence userPersistence;
1243 @BeanReference(type = UserFinder.class)
1244 protected UserFinder userFinder;
1245 @BeanReference(type = DDMStructureLinkLocalService.class)
1246 protected DDMStructureLinkLocalService ddmStructureLinkLocalService;
1247 @BeanReference(type = DDMStructureLinkPersistence.class)
1248 protected DDMStructureLinkPersistence ddmStructureLinkPersistence;
1249 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1250 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1251 private String _beanIdentifier;
1252 }