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.UserLocalService;
035 import com.liferay.portal.service.UserService;
036 import com.liferay.portal.service.WorkflowDefinitionLinkLocalService;
037 import com.liferay.portal.service.WorkflowInstanceLinkLocalService;
038 import com.liferay.portal.service.persistence.UserFinder;
039 import com.liferay.portal.service.persistence.UserPersistence;
040 import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
041 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
042
043 import com.liferay.portlet.documentlibrary.model.DLFileEntryType;
044 import com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService;
045 import com.liferay.portlet.documentlibrary.service.DLAppLocalService;
046 import com.liferay.portlet.documentlibrary.service.DLAppService;
047 import com.liferay.portlet.documentlibrary.service.DLContentLocalService;
048 import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
049 import com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService;
050 import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
051 import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService;
052 import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
053 import com.liferay.portlet.documentlibrary.service.DLFileRankLocalService;
054 import com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService;
055 import com.liferay.portlet.documentlibrary.service.DLFileShortcutService;
056 import com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService;
057 import com.liferay.portlet.documentlibrary.service.DLFileVersionService;
058 import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
059 import com.liferay.portlet.documentlibrary.service.DLFolderService;
060 import com.liferay.portlet.documentlibrary.service.DLSyncLocalService;
061 import com.liferay.portlet.documentlibrary.service.DLSyncService;
062 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
063 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
064 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
065 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
066 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
067 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
068 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
069 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
070 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
071 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
072 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
073 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
074 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncFinder;
075 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncPersistence;
076 import com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService;
077 import com.liferay.portlet.dynamicdatamapping.service.DDMStructureService;
078 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
079 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
080
081 import java.io.Serializable;
082
083 import java.util.List;
084
085 import javax.sql.DataSource;
086
087
099 public abstract class DLFileEntryTypeLocalServiceBaseImpl
100 extends BaseLocalServiceImpl implements DLFileEntryTypeLocalService,
101 IdentifiableBean {
102
107
108
115 @Indexable(type = IndexableType.REINDEX)
116 public DLFileEntryType addDLFileEntryType(DLFileEntryType dlFileEntryType)
117 throws SystemException {
118 dlFileEntryType.setNew(true);
119
120 return dlFileEntryTypePersistence.update(dlFileEntryType);
121 }
122
123
129 public DLFileEntryType createDLFileEntryType(long fileEntryTypeId) {
130 return dlFileEntryTypePersistence.create(fileEntryTypeId);
131 }
132
133
141 @Indexable(type = IndexableType.DELETE)
142 public DLFileEntryType deleteDLFileEntryType(long fileEntryTypeId)
143 throws PortalException, SystemException {
144 return dlFileEntryTypePersistence.remove(fileEntryTypeId);
145 }
146
147
154 @Indexable(type = IndexableType.DELETE)
155 public DLFileEntryType deleteDLFileEntryType(
156 DLFileEntryType dlFileEntryType) throws SystemException {
157 return dlFileEntryTypePersistence.remove(dlFileEntryType);
158 }
159
160 public DynamicQuery dynamicQuery() {
161 Class<?> clazz = getClass();
162
163 return DynamicQueryFactoryUtil.forClass(DLFileEntryType.class,
164 clazz.getClassLoader());
165 }
166
167
174 @SuppressWarnings("rawtypes")
175 public List dynamicQuery(DynamicQuery dynamicQuery)
176 throws SystemException {
177 return dlFileEntryTypePersistence.findWithDynamicQuery(dynamicQuery);
178 }
179
180
193 @SuppressWarnings("rawtypes")
194 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
195 throws SystemException {
196 return dlFileEntryTypePersistence.findWithDynamicQuery(dynamicQuery,
197 start, end);
198 }
199
200
214 @SuppressWarnings("rawtypes")
215 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
216 OrderByComparator orderByComparator) throws SystemException {
217 return dlFileEntryTypePersistence.findWithDynamicQuery(dynamicQuery,
218 start, end, orderByComparator);
219 }
220
221
228 public long dynamicQueryCount(DynamicQuery dynamicQuery)
229 throws SystemException {
230 return dlFileEntryTypePersistence.countWithDynamicQuery(dynamicQuery);
231 }
232
233 public DLFileEntryType fetchDLFileEntryType(long fileEntryTypeId)
234 throws SystemException {
235 return dlFileEntryTypePersistence.fetchByPrimaryKey(fileEntryTypeId);
236 }
237
238
246 public DLFileEntryType getDLFileEntryType(long fileEntryTypeId)
247 throws PortalException, SystemException {
248 return dlFileEntryTypePersistence.findByPrimaryKey(fileEntryTypeId);
249 }
250
251 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
252 throws PortalException, SystemException {
253 return dlFileEntryTypePersistence.findByPrimaryKey(primaryKeyObj);
254 }
255
256
265 public DLFileEntryType getDLFileEntryTypeByUuidAndGroupId(String uuid,
266 long groupId) throws PortalException, SystemException {
267 return dlFileEntryTypePersistence.findByUUID_G(uuid, groupId);
268 }
269
270
282 public List<DLFileEntryType> getDLFileEntryTypes(int start, int end)
283 throws SystemException {
284 return dlFileEntryTypePersistence.findAll(start, end);
285 }
286
287
293 public int getDLFileEntryTypesCount() throws SystemException {
294 return dlFileEntryTypePersistence.countAll();
295 }
296
297
304 @Indexable(type = IndexableType.REINDEX)
305 public DLFileEntryType updateDLFileEntryType(
306 DLFileEntryType dlFileEntryType) throws SystemException {
307 return dlFileEntryTypePersistence.update(dlFileEntryType);
308 }
309
310
315 public DLAppLocalService getDLAppLocalService() {
316 return dlAppLocalService;
317 }
318
319
324 public void setDLAppLocalService(DLAppLocalService dlAppLocalService) {
325 this.dlAppLocalService = dlAppLocalService;
326 }
327
328
333 public DLAppService getDLAppService() {
334 return dlAppService;
335 }
336
337
342 public void setDLAppService(DLAppService dlAppService) {
343 this.dlAppService = dlAppService;
344 }
345
346
351 public DLAppHelperLocalService getDLAppHelperLocalService() {
352 return dlAppHelperLocalService;
353 }
354
355
360 public void setDLAppHelperLocalService(
361 DLAppHelperLocalService dlAppHelperLocalService) {
362 this.dlAppHelperLocalService = dlAppHelperLocalService;
363 }
364
365
370 public DLContentLocalService getDLContentLocalService() {
371 return dlContentLocalService;
372 }
373
374
379 public void setDLContentLocalService(
380 DLContentLocalService dlContentLocalService) {
381 this.dlContentLocalService = dlContentLocalService;
382 }
383
384
389 public DLContentPersistence getDLContentPersistence() {
390 return dlContentPersistence;
391 }
392
393
398 public void setDLContentPersistence(
399 DLContentPersistence dlContentPersistence) {
400 this.dlContentPersistence = dlContentPersistence;
401 }
402
403
408 public DLFileEntryLocalService getDLFileEntryLocalService() {
409 return dlFileEntryLocalService;
410 }
411
412
417 public void setDLFileEntryLocalService(
418 DLFileEntryLocalService dlFileEntryLocalService) {
419 this.dlFileEntryLocalService = dlFileEntryLocalService;
420 }
421
422
427 public DLFileEntryService getDLFileEntryService() {
428 return dlFileEntryService;
429 }
430
431
436 public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
437 this.dlFileEntryService = dlFileEntryService;
438 }
439
440
445 public DLFileEntryPersistence getDLFileEntryPersistence() {
446 return dlFileEntryPersistence;
447 }
448
449
454 public void setDLFileEntryPersistence(
455 DLFileEntryPersistence dlFileEntryPersistence) {
456 this.dlFileEntryPersistence = dlFileEntryPersistence;
457 }
458
459
464 public DLFileEntryFinder getDLFileEntryFinder() {
465 return dlFileEntryFinder;
466 }
467
468
473 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
474 this.dlFileEntryFinder = dlFileEntryFinder;
475 }
476
477
482 public DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
483 return dlFileEntryMetadataLocalService;
484 }
485
486
491 public void setDLFileEntryMetadataLocalService(
492 DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
493 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
494 }
495
496
501 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
502 return dlFileEntryMetadataPersistence;
503 }
504
505
510 public void setDLFileEntryMetadataPersistence(
511 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
512 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
513 }
514
515
520 public DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
521 return dlFileEntryTypeLocalService;
522 }
523
524
529 public void setDLFileEntryTypeLocalService(
530 DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
531 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
532 }
533
534
539 public DLFileEntryTypeService getDLFileEntryTypeService() {
540 return dlFileEntryTypeService;
541 }
542
543
548 public void setDLFileEntryTypeService(
549 DLFileEntryTypeService dlFileEntryTypeService) {
550 this.dlFileEntryTypeService = dlFileEntryTypeService;
551 }
552
553
558 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
559 return dlFileEntryTypePersistence;
560 }
561
562
567 public void setDLFileEntryTypePersistence(
568 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
569 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
570 }
571
572
577 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
578 return dlFileEntryTypeFinder;
579 }
580
581
586 public void setDLFileEntryTypeFinder(
587 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
588 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
589 }
590
591
596 public DLFileRankLocalService getDLFileRankLocalService() {
597 return dlFileRankLocalService;
598 }
599
600
605 public void setDLFileRankLocalService(
606 DLFileRankLocalService dlFileRankLocalService) {
607 this.dlFileRankLocalService = dlFileRankLocalService;
608 }
609
610
615 public DLFileRankPersistence getDLFileRankPersistence() {
616 return dlFileRankPersistence;
617 }
618
619
624 public void setDLFileRankPersistence(
625 DLFileRankPersistence dlFileRankPersistence) {
626 this.dlFileRankPersistence = dlFileRankPersistence;
627 }
628
629
634 public DLFileRankFinder getDLFileRankFinder() {
635 return dlFileRankFinder;
636 }
637
638
643 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
644 this.dlFileRankFinder = dlFileRankFinder;
645 }
646
647
652 public DLFileShortcutLocalService getDLFileShortcutLocalService() {
653 return dlFileShortcutLocalService;
654 }
655
656
661 public void setDLFileShortcutLocalService(
662 DLFileShortcutLocalService dlFileShortcutLocalService) {
663 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
664 }
665
666
671 public DLFileShortcutService getDLFileShortcutService() {
672 return dlFileShortcutService;
673 }
674
675
680 public void setDLFileShortcutService(
681 DLFileShortcutService dlFileShortcutService) {
682 this.dlFileShortcutService = dlFileShortcutService;
683 }
684
685
690 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
691 return dlFileShortcutPersistence;
692 }
693
694
699 public void setDLFileShortcutPersistence(
700 DLFileShortcutPersistence dlFileShortcutPersistence) {
701 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
702 }
703
704
709 public DLFileVersionLocalService getDLFileVersionLocalService() {
710 return dlFileVersionLocalService;
711 }
712
713
718 public void setDLFileVersionLocalService(
719 DLFileVersionLocalService dlFileVersionLocalService) {
720 this.dlFileVersionLocalService = dlFileVersionLocalService;
721 }
722
723
728 public DLFileVersionService getDLFileVersionService() {
729 return dlFileVersionService;
730 }
731
732
737 public void setDLFileVersionService(
738 DLFileVersionService dlFileVersionService) {
739 this.dlFileVersionService = dlFileVersionService;
740 }
741
742
747 public DLFileVersionPersistence getDLFileVersionPersistence() {
748 return dlFileVersionPersistence;
749 }
750
751
756 public void setDLFileVersionPersistence(
757 DLFileVersionPersistence dlFileVersionPersistence) {
758 this.dlFileVersionPersistence = dlFileVersionPersistence;
759 }
760
761
766 public DLFolderLocalService getDLFolderLocalService() {
767 return dlFolderLocalService;
768 }
769
770
775 public void setDLFolderLocalService(
776 DLFolderLocalService dlFolderLocalService) {
777 this.dlFolderLocalService = dlFolderLocalService;
778 }
779
780
785 public DLFolderService getDLFolderService() {
786 return dlFolderService;
787 }
788
789
794 public void setDLFolderService(DLFolderService dlFolderService) {
795 this.dlFolderService = dlFolderService;
796 }
797
798
803 public DLFolderPersistence getDLFolderPersistence() {
804 return dlFolderPersistence;
805 }
806
807
812 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
813 this.dlFolderPersistence = dlFolderPersistence;
814 }
815
816
821 public DLFolderFinder getDLFolderFinder() {
822 return dlFolderFinder;
823 }
824
825
830 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
831 this.dlFolderFinder = dlFolderFinder;
832 }
833
834
839 public DLSyncLocalService getDLSyncLocalService() {
840 return dlSyncLocalService;
841 }
842
843
848 public void setDLSyncLocalService(DLSyncLocalService dlSyncLocalService) {
849 this.dlSyncLocalService = dlSyncLocalService;
850 }
851
852
857 public DLSyncService getDLSyncService() {
858 return dlSyncService;
859 }
860
861
866 public void setDLSyncService(DLSyncService dlSyncService) {
867 this.dlSyncService = dlSyncService;
868 }
869
870
875 public DLSyncPersistence getDLSyncPersistence() {
876 return dlSyncPersistence;
877 }
878
879
884 public void setDLSyncPersistence(DLSyncPersistence dlSyncPersistence) {
885 this.dlSyncPersistence = dlSyncPersistence;
886 }
887
888
893 public DLSyncFinder getDLSyncFinder() {
894 return dlSyncFinder;
895 }
896
897
902 public void setDLSyncFinder(DLSyncFinder dlSyncFinder) {
903 this.dlSyncFinder = dlSyncFinder;
904 }
905
906
911 public CounterLocalService getCounterLocalService() {
912 return counterLocalService;
913 }
914
915
920 public void setCounterLocalService(CounterLocalService counterLocalService) {
921 this.counterLocalService = counterLocalService;
922 }
923
924
929 public ResourceLocalService getResourceLocalService() {
930 return resourceLocalService;
931 }
932
933
938 public void setResourceLocalService(
939 ResourceLocalService resourceLocalService) {
940 this.resourceLocalService = resourceLocalService;
941 }
942
943
948 public UserLocalService getUserLocalService() {
949 return userLocalService;
950 }
951
952
957 public void setUserLocalService(UserLocalService userLocalService) {
958 this.userLocalService = userLocalService;
959 }
960
961
966 public UserService getUserService() {
967 return userService;
968 }
969
970
975 public void setUserService(UserService userService) {
976 this.userService = userService;
977 }
978
979
984 public UserPersistence getUserPersistence() {
985 return userPersistence;
986 }
987
988
993 public void setUserPersistence(UserPersistence userPersistence) {
994 this.userPersistence = userPersistence;
995 }
996
997
1002 public UserFinder getUserFinder() {
1003 return userFinder;
1004 }
1005
1006
1011 public void setUserFinder(UserFinder userFinder) {
1012 this.userFinder = userFinder;
1013 }
1014
1015
1020 public WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
1021 return workflowDefinitionLinkLocalService;
1022 }
1023
1024
1029 public void setWorkflowDefinitionLinkLocalService(
1030 WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
1031 this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
1032 }
1033
1034
1039 public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
1040 return workflowDefinitionLinkPersistence;
1041 }
1042
1043
1048 public void setWorkflowDefinitionLinkPersistence(
1049 WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
1050 this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
1051 }
1052
1053
1058 public WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1059 return workflowInstanceLinkLocalService;
1060 }
1061
1062
1067 public void setWorkflowInstanceLinkLocalService(
1068 WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1069 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1070 }
1071
1072
1077 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1078 return workflowInstanceLinkPersistence;
1079 }
1080
1081
1086 public void setWorkflowInstanceLinkPersistence(
1087 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1088 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1089 }
1090
1091
1096 public DDMStructureLocalService getDDMStructureLocalService() {
1097 return ddmStructureLocalService;
1098 }
1099
1100
1105 public void setDDMStructureLocalService(
1106 DDMStructureLocalService ddmStructureLocalService) {
1107 this.ddmStructureLocalService = ddmStructureLocalService;
1108 }
1109
1110
1115 public DDMStructureService getDDMStructureService() {
1116 return ddmStructureService;
1117 }
1118
1119
1124 public void setDDMStructureService(DDMStructureService ddmStructureService) {
1125 this.ddmStructureService = ddmStructureService;
1126 }
1127
1128
1133 public DDMStructurePersistence getDDMStructurePersistence() {
1134 return ddmStructurePersistence;
1135 }
1136
1137
1142 public void setDDMStructurePersistence(
1143 DDMStructurePersistence ddmStructurePersistence) {
1144 this.ddmStructurePersistence = ddmStructurePersistence;
1145 }
1146
1147
1152 public DDMStructureFinder getDDMStructureFinder() {
1153 return ddmStructureFinder;
1154 }
1155
1156
1161 public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1162 this.ddmStructureFinder = ddmStructureFinder;
1163 }
1164
1165 public void afterPropertiesSet() {
1166 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLFileEntryType",
1167 dlFileEntryTypeLocalService);
1168 }
1169
1170 public void destroy() {
1171 persistedModelLocalServiceRegistry.unregister(
1172 "com.liferay.portlet.documentlibrary.model.DLFileEntryType");
1173 }
1174
1175
1180 public String getBeanIdentifier() {
1181 return _beanIdentifier;
1182 }
1183
1184
1189 public void setBeanIdentifier(String beanIdentifier) {
1190 _beanIdentifier = beanIdentifier;
1191 }
1192
1193 protected Class<?> getModelClass() {
1194 return DLFileEntryType.class;
1195 }
1196
1197 protected String getModelClassName() {
1198 return DLFileEntryType.class.getName();
1199 }
1200
1201
1206 protected void runSQL(String sql) throws SystemException {
1207 try {
1208 DataSource dataSource = dlFileEntryTypePersistence.getDataSource();
1209
1210 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1211 sql, new int[0]);
1212
1213 sqlUpdate.update();
1214 }
1215 catch (Exception e) {
1216 throw new SystemException(e);
1217 }
1218 }
1219
1220 @BeanReference(type = DLAppLocalService.class)
1221 protected DLAppLocalService dlAppLocalService;
1222 @BeanReference(type = DLAppService.class)
1223 protected DLAppService dlAppService;
1224 @BeanReference(type = DLAppHelperLocalService.class)
1225 protected DLAppHelperLocalService dlAppHelperLocalService;
1226 @BeanReference(type = DLContentLocalService.class)
1227 protected DLContentLocalService dlContentLocalService;
1228 @BeanReference(type = DLContentPersistence.class)
1229 protected DLContentPersistence dlContentPersistence;
1230 @BeanReference(type = DLFileEntryLocalService.class)
1231 protected DLFileEntryLocalService dlFileEntryLocalService;
1232 @BeanReference(type = DLFileEntryService.class)
1233 protected DLFileEntryService dlFileEntryService;
1234 @BeanReference(type = DLFileEntryPersistence.class)
1235 protected DLFileEntryPersistence dlFileEntryPersistence;
1236 @BeanReference(type = DLFileEntryFinder.class)
1237 protected DLFileEntryFinder dlFileEntryFinder;
1238 @BeanReference(type = DLFileEntryMetadataLocalService.class)
1239 protected DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1240 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1241 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1242 @BeanReference(type = DLFileEntryTypeLocalService.class)
1243 protected DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1244 @BeanReference(type = DLFileEntryTypeService.class)
1245 protected DLFileEntryTypeService dlFileEntryTypeService;
1246 @BeanReference(type = DLFileEntryTypePersistence.class)
1247 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1248 @BeanReference(type = DLFileEntryTypeFinder.class)
1249 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1250 @BeanReference(type = DLFileRankLocalService.class)
1251 protected DLFileRankLocalService dlFileRankLocalService;
1252 @BeanReference(type = DLFileRankPersistence.class)
1253 protected DLFileRankPersistence dlFileRankPersistence;
1254 @BeanReference(type = DLFileRankFinder.class)
1255 protected DLFileRankFinder dlFileRankFinder;
1256 @BeanReference(type = DLFileShortcutLocalService.class)
1257 protected DLFileShortcutLocalService dlFileShortcutLocalService;
1258 @BeanReference(type = DLFileShortcutService.class)
1259 protected DLFileShortcutService dlFileShortcutService;
1260 @BeanReference(type = DLFileShortcutPersistence.class)
1261 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1262 @BeanReference(type = DLFileVersionLocalService.class)
1263 protected DLFileVersionLocalService dlFileVersionLocalService;
1264 @BeanReference(type = DLFileVersionService.class)
1265 protected DLFileVersionService dlFileVersionService;
1266 @BeanReference(type = DLFileVersionPersistence.class)
1267 protected DLFileVersionPersistence dlFileVersionPersistence;
1268 @BeanReference(type = DLFolderLocalService.class)
1269 protected DLFolderLocalService dlFolderLocalService;
1270 @BeanReference(type = DLFolderService.class)
1271 protected DLFolderService dlFolderService;
1272 @BeanReference(type = DLFolderPersistence.class)
1273 protected DLFolderPersistence dlFolderPersistence;
1274 @BeanReference(type = DLFolderFinder.class)
1275 protected DLFolderFinder dlFolderFinder;
1276 @BeanReference(type = DLSyncLocalService.class)
1277 protected DLSyncLocalService dlSyncLocalService;
1278 @BeanReference(type = DLSyncService.class)
1279 protected DLSyncService dlSyncService;
1280 @BeanReference(type = DLSyncPersistence.class)
1281 protected DLSyncPersistence dlSyncPersistence;
1282 @BeanReference(type = DLSyncFinder.class)
1283 protected DLSyncFinder dlSyncFinder;
1284 @BeanReference(type = CounterLocalService.class)
1285 protected CounterLocalService counterLocalService;
1286 @BeanReference(type = ResourceLocalService.class)
1287 protected ResourceLocalService resourceLocalService;
1288 @BeanReference(type = UserLocalService.class)
1289 protected UserLocalService userLocalService;
1290 @BeanReference(type = UserService.class)
1291 protected UserService userService;
1292 @BeanReference(type = UserPersistence.class)
1293 protected UserPersistence userPersistence;
1294 @BeanReference(type = UserFinder.class)
1295 protected UserFinder userFinder;
1296 @BeanReference(type = WorkflowDefinitionLinkLocalService.class)
1297 protected WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
1298 @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
1299 protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
1300 @BeanReference(type = WorkflowInstanceLinkLocalService.class)
1301 protected WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1302 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1303 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1304 @BeanReference(type = DDMStructureLocalService.class)
1305 protected DDMStructureLocalService ddmStructureLocalService;
1306 @BeanReference(type = DDMStructureService.class)
1307 protected DDMStructureService ddmStructureService;
1308 @BeanReference(type = DDMStructurePersistence.class)
1309 protected DDMStructurePersistence ddmStructurePersistence;
1310 @BeanReference(type = DDMStructureFinder.class)
1311 protected DDMStructureFinder ddmStructureFinder;
1312 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1313 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1314 private String _beanIdentifier;
1315 }