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.Session;
025 import com.liferay.portal.kernel.exception.PortalException;
026 import com.liferay.portal.kernel.exception.SystemException;
027 import com.liferay.portal.kernel.log.Log;
028 import com.liferay.portal.kernel.log.LogFactoryUtil;
029 import com.liferay.portal.kernel.search.Indexer;
030 import com.liferay.portal.kernel.search.IndexerRegistryUtil;
031 import com.liferay.portal.kernel.search.SearchException;
032 import com.liferay.portal.kernel.util.OrderByComparator;
033 import com.liferay.portal.model.PersistedModel;
034 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
035 import com.liferay.portal.service.ResourceLocalService;
036 import com.liferay.portal.service.ResourceService;
037 import com.liferay.portal.service.UserLocalService;
038 import com.liferay.portal.service.UserService;
039 import com.liferay.portal.service.persistence.ResourceFinder;
040 import com.liferay.portal.service.persistence.ResourcePersistence;
041 import com.liferay.portal.service.persistence.UserFinder;
042 import com.liferay.portal.service.persistence.UserPersistence;
043
044 import com.liferay.portlet.documentlibrary.model.DLContent;
045 import com.liferay.portlet.documentlibrary.model.DLContentDataBlobModel;
046 import com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService;
047 import com.liferay.portlet.documentlibrary.service.DLAppLocalService;
048 import com.liferay.portlet.documentlibrary.service.DLAppService;
049 import com.liferay.portlet.documentlibrary.service.DLContentLocalService;
050 import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
051 import com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService;
052 import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
053 import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService;
054 import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
055 import com.liferay.portlet.documentlibrary.service.DLFileRankLocalService;
056 import com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService;
057 import com.liferay.portlet.documentlibrary.service.DLFileShortcutService;
058 import com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService;
059 import com.liferay.portlet.documentlibrary.service.DLFileVersionService;
060 import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
061 import com.liferay.portlet.documentlibrary.service.DLFolderService;
062 import com.liferay.portlet.documentlibrary.service.DLSyncLocalService;
063 import com.liferay.portlet.documentlibrary.service.DLSyncService;
064 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
065 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
066 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
067 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
068 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
069 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
070 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
071 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
072 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
073 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
074 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
075 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
076 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncPersistence;
077
078 import java.io.Serializable;
079
080 import java.util.List;
081
082 import javax.sql.DataSource;
083
084
096 public abstract class DLContentLocalServiceBaseImpl
097 implements DLContentLocalService, IdentifiableBean {
098
103
104
111 public DLContent addDLContent(DLContent dlContent)
112 throws SystemException {
113 dlContent.setNew(true);
114
115 dlContent = dlContentPersistence.update(dlContent, false);
116
117 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
118
119 if (indexer != null) {
120 try {
121 indexer.reindex(dlContent);
122 }
123 catch (SearchException se) {
124 if (_log.isWarnEnabled()) {
125 _log.warn(se, se);
126 }
127 }
128 }
129
130 return dlContent;
131 }
132
133
139 public DLContent createDLContent(long contentId) {
140 return dlContentPersistence.create(contentId);
141 }
142
143
150 public void deleteDLContent(long contentId)
151 throws PortalException, SystemException {
152 DLContent dlContent = dlContentPersistence.remove(contentId);
153
154 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
155
156 if (indexer != null) {
157 try {
158 indexer.delete(dlContent);
159 }
160 catch (SearchException se) {
161 if (_log.isWarnEnabled()) {
162 _log.warn(se, se);
163 }
164 }
165 }
166 }
167
168
174 public void deleteDLContent(DLContent dlContent) throws SystemException {
175 dlContentPersistence.remove(dlContent);
176
177 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
178
179 if (indexer != null) {
180 try {
181 indexer.delete(dlContent);
182 }
183 catch (SearchException se) {
184 if (_log.isWarnEnabled()) {
185 _log.warn(se, se);
186 }
187 }
188 }
189 }
190
191
198 @SuppressWarnings("rawtypes")
199 public List dynamicQuery(DynamicQuery dynamicQuery)
200 throws SystemException {
201 return dlContentPersistence.findWithDynamicQuery(dynamicQuery);
202 }
203
204
217 @SuppressWarnings("rawtypes")
218 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
219 throws SystemException {
220 return dlContentPersistence.findWithDynamicQuery(dynamicQuery, start,
221 end);
222 }
223
224
238 @SuppressWarnings("rawtypes")
239 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
240 OrderByComparator orderByComparator) throws SystemException {
241 return dlContentPersistence.findWithDynamicQuery(dynamicQuery, start,
242 end, orderByComparator);
243 }
244
245
252 public long dynamicQueryCount(DynamicQuery dynamicQuery)
253 throws SystemException {
254 return dlContentPersistence.countWithDynamicQuery(dynamicQuery);
255 }
256
257 public DLContent fetchDLContent(long contentId) throws SystemException {
258 return dlContentPersistence.fetchByPrimaryKey(contentId);
259 }
260
261
269 public DLContent getDLContent(long contentId)
270 throws PortalException, SystemException {
271 return dlContentPersistence.findByPrimaryKey(contentId);
272 }
273
274 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
275 throws PortalException, SystemException {
276 return dlContentPersistence.findByPrimaryKey(primaryKeyObj);
277 }
278
279
291 public List<DLContent> getDLContents(int start, int end)
292 throws SystemException {
293 return dlContentPersistence.findAll(start, end);
294 }
295
296
302 public int getDLContentsCount() throws SystemException {
303 return dlContentPersistence.countAll();
304 }
305
306
313 public DLContent updateDLContent(DLContent dlContent)
314 throws SystemException {
315 return updateDLContent(dlContent, true);
316 }
317
318
326 public DLContent updateDLContent(DLContent dlContent, boolean merge)
327 throws SystemException {
328 dlContent.setNew(false);
329
330 dlContent = dlContentPersistence.update(dlContent, merge);
331
332 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
333
334 if (indexer != null) {
335 try {
336 indexer.reindex(dlContent);
337 }
338 catch (SearchException se) {
339 if (_log.isWarnEnabled()) {
340 _log.warn(se, se);
341 }
342 }
343 }
344
345 return dlContent;
346 }
347
348 public DLContentDataBlobModel getDataBlobModel(Serializable primaryKey)
349 throws SystemException {
350 Session session = null;
351
352 try {
353 session = dlContentPersistence.openSession();
354
355 return (com.liferay.portlet.documentlibrary.model.DLContentDataBlobModel)session.get(DLContentDataBlobModel.class,
356 primaryKey);
357 }
358 catch (Exception e) {
359 throw dlContentPersistence.processException(e);
360 }
361 finally {
362 dlContentPersistence.closeSession(session);
363 }
364 }
365
366
371 public DLAppLocalService getDLAppLocalService() {
372 return dlAppLocalService;
373 }
374
375
380 public void setDLAppLocalService(DLAppLocalService dlAppLocalService) {
381 this.dlAppLocalService = dlAppLocalService;
382 }
383
384
389 public DLAppService getDLAppService() {
390 return dlAppService;
391 }
392
393
398 public void setDLAppService(DLAppService dlAppService) {
399 this.dlAppService = dlAppService;
400 }
401
402
407 public DLAppHelperLocalService getDLAppHelperLocalService() {
408 return dlAppHelperLocalService;
409 }
410
411
416 public void setDLAppHelperLocalService(
417 DLAppHelperLocalService dlAppHelperLocalService) {
418 this.dlAppHelperLocalService = dlAppHelperLocalService;
419 }
420
421
426 public DLContentLocalService getDLContentLocalService() {
427 return dlContentLocalService;
428 }
429
430
435 public void setDLContentLocalService(
436 DLContentLocalService dlContentLocalService) {
437 this.dlContentLocalService = dlContentLocalService;
438 }
439
440
445 public DLContentPersistence getDLContentPersistence() {
446 return dlContentPersistence;
447 }
448
449
454 public void setDLContentPersistence(
455 DLContentPersistence dlContentPersistence) {
456 this.dlContentPersistence = dlContentPersistence;
457 }
458
459
464 public DLFileEntryLocalService getDLFileEntryLocalService() {
465 return dlFileEntryLocalService;
466 }
467
468
473 public void setDLFileEntryLocalService(
474 DLFileEntryLocalService dlFileEntryLocalService) {
475 this.dlFileEntryLocalService = dlFileEntryLocalService;
476 }
477
478
483 public DLFileEntryService getDLFileEntryService() {
484 return dlFileEntryService;
485 }
486
487
492 public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
493 this.dlFileEntryService = dlFileEntryService;
494 }
495
496
501 public DLFileEntryPersistence getDLFileEntryPersistence() {
502 return dlFileEntryPersistence;
503 }
504
505
510 public void setDLFileEntryPersistence(
511 DLFileEntryPersistence dlFileEntryPersistence) {
512 this.dlFileEntryPersistence = dlFileEntryPersistence;
513 }
514
515
520 public DLFileEntryFinder getDLFileEntryFinder() {
521 return dlFileEntryFinder;
522 }
523
524
529 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
530 this.dlFileEntryFinder = dlFileEntryFinder;
531 }
532
533
538 public DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
539 return dlFileEntryMetadataLocalService;
540 }
541
542
547 public void setDLFileEntryMetadataLocalService(
548 DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
549 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
550 }
551
552
557 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
558 return dlFileEntryMetadataPersistence;
559 }
560
561
566 public void setDLFileEntryMetadataPersistence(
567 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
568 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
569 }
570
571
576 public DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
577 return dlFileEntryTypeLocalService;
578 }
579
580
585 public void setDLFileEntryTypeLocalService(
586 DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
587 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
588 }
589
590
595 public DLFileEntryTypeService getDLFileEntryTypeService() {
596 return dlFileEntryTypeService;
597 }
598
599
604 public void setDLFileEntryTypeService(
605 DLFileEntryTypeService dlFileEntryTypeService) {
606 this.dlFileEntryTypeService = dlFileEntryTypeService;
607 }
608
609
614 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
615 return dlFileEntryTypePersistence;
616 }
617
618
623 public void setDLFileEntryTypePersistence(
624 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
625 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
626 }
627
628
633 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
634 return dlFileEntryTypeFinder;
635 }
636
637
642 public void setDLFileEntryTypeFinder(
643 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
644 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
645 }
646
647
652 public DLFileRankLocalService getDLFileRankLocalService() {
653 return dlFileRankLocalService;
654 }
655
656
661 public void setDLFileRankLocalService(
662 DLFileRankLocalService dlFileRankLocalService) {
663 this.dlFileRankLocalService = dlFileRankLocalService;
664 }
665
666
671 public DLFileRankPersistence getDLFileRankPersistence() {
672 return dlFileRankPersistence;
673 }
674
675
680 public void setDLFileRankPersistence(
681 DLFileRankPersistence dlFileRankPersistence) {
682 this.dlFileRankPersistence = dlFileRankPersistence;
683 }
684
685
690 public DLFileRankFinder getDLFileRankFinder() {
691 return dlFileRankFinder;
692 }
693
694
699 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
700 this.dlFileRankFinder = dlFileRankFinder;
701 }
702
703
708 public DLFileShortcutLocalService getDLFileShortcutLocalService() {
709 return dlFileShortcutLocalService;
710 }
711
712
717 public void setDLFileShortcutLocalService(
718 DLFileShortcutLocalService dlFileShortcutLocalService) {
719 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
720 }
721
722
727 public DLFileShortcutService getDLFileShortcutService() {
728 return dlFileShortcutService;
729 }
730
731
736 public void setDLFileShortcutService(
737 DLFileShortcutService dlFileShortcutService) {
738 this.dlFileShortcutService = dlFileShortcutService;
739 }
740
741
746 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
747 return dlFileShortcutPersistence;
748 }
749
750
755 public void setDLFileShortcutPersistence(
756 DLFileShortcutPersistence dlFileShortcutPersistence) {
757 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
758 }
759
760
765 public DLFileVersionLocalService getDLFileVersionLocalService() {
766 return dlFileVersionLocalService;
767 }
768
769
774 public void setDLFileVersionLocalService(
775 DLFileVersionLocalService dlFileVersionLocalService) {
776 this.dlFileVersionLocalService = dlFileVersionLocalService;
777 }
778
779
784 public DLFileVersionService getDLFileVersionService() {
785 return dlFileVersionService;
786 }
787
788
793 public void setDLFileVersionService(
794 DLFileVersionService dlFileVersionService) {
795 this.dlFileVersionService = dlFileVersionService;
796 }
797
798
803 public DLFileVersionPersistence getDLFileVersionPersistence() {
804 return dlFileVersionPersistence;
805 }
806
807
812 public void setDLFileVersionPersistence(
813 DLFileVersionPersistence dlFileVersionPersistence) {
814 this.dlFileVersionPersistence = dlFileVersionPersistence;
815 }
816
817
822 public DLFolderLocalService getDLFolderLocalService() {
823 return dlFolderLocalService;
824 }
825
826
831 public void setDLFolderLocalService(
832 DLFolderLocalService dlFolderLocalService) {
833 this.dlFolderLocalService = dlFolderLocalService;
834 }
835
836
841 public DLFolderService getDLFolderService() {
842 return dlFolderService;
843 }
844
845
850 public void setDLFolderService(DLFolderService dlFolderService) {
851 this.dlFolderService = dlFolderService;
852 }
853
854
859 public DLFolderPersistence getDLFolderPersistence() {
860 return dlFolderPersistence;
861 }
862
863
868 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
869 this.dlFolderPersistence = dlFolderPersistence;
870 }
871
872
877 public DLFolderFinder getDLFolderFinder() {
878 return dlFolderFinder;
879 }
880
881
886 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
887 this.dlFolderFinder = dlFolderFinder;
888 }
889
890
895 public DLSyncLocalService getDLSyncLocalService() {
896 return dlSyncLocalService;
897 }
898
899
904 public void setDLSyncLocalService(DLSyncLocalService dlSyncLocalService) {
905 this.dlSyncLocalService = dlSyncLocalService;
906 }
907
908
913 public DLSyncService getDLSyncService() {
914 return dlSyncService;
915 }
916
917
922 public void setDLSyncService(DLSyncService dlSyncService) {
923 this.dlSyncService = dlSyncService;
924 }
925
926
931 public DLSyncPersistence getDLSyncPersistence() {
932 return dlSyncPersistence;
933 }
934
935
940 public void setDLSyncPersistence(DLSyncPersistence dlSyncPersistence) {
941 this.dlSyncPersistence = dlSyncPersistence;
942 }
943
944
949 public CounterLocalService getCounterLocalService() {
950 return counterLocalService;
951 }
952
953
958 public void setCounterLocalService(CounterLocalService counterLocalService) {
959 this.counterLocalService = counterLocalService;
960 }
961
962
967 public ResourceLocalService getResourceLocalService() {
968 return resourceLocalService;
969 }
970
971
976 public void setResourceLocalService(
977 ResourceLocalService resourceLocalService) {
978 this.resourceLocalService = resourceLocalService;
979 }
980
981
986 public ResourceService getResourceService() {
987 return resourceService;
988 }
989
990
995 public void setResourceService(ResourceService resourceService) {
996 this.resourceService = resourceService;
997 }
998
999
1004 public ResourcePersistence getResourcePersistence() {
1005 return resourcePersistence;
1006 }
1007
1008
1013 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
1014 this.resourcePersistence = resourcePersistence;
1015 }
1016
1017
1022 public ResourceFinder getResourceFinder() {
1023 return resourceFinder;
1024 }
1025
1026
1031 public void setResourceFinder(ResourceFinder resourceFinder) {
1032 this.resourceFinder = resourceFinder;
1033 }
1034
1035
1040 public UserLocalService getUserLocalService() {
1041 return userLocalService;
1042 }
1043
1044
1049 public void setUserLocalService(UserLocalService userLocalService) {
1050 this.userLocalService = userLocalService;
1051 }
1052
1053
1058 public UserService getUserService() {
1059 return userService;
1060 }
1061
1062
1067 public void setUserService(UserService userService) {
1068 this.userService = userService;
1069 }
1070
1071
1076 public UserPersistence getUserPersistence() {
1077 return userPersistence;
1078 }
1079
1080
1085 public void setUserPersistence(UserPersistence userPersistence) {
1086 this.userPersistence = userPersistence;
1087 }
1088
1089
1094 public UserFinder getUserFinder() {
1095 return userFinder;
1096 }
1097
1098
1103 public void setUserFinder(UserFinder userFinder) {
1104 this.userFinder = userFinder;
1105 }
1106
1107 public void afterPropertiesSet() {
1108 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLContent",
1109 dlContentLocalService);
1110 }
1111
1112 public void destroy() {
1113 persistedModelLocalServiceRegistry.unregister(
1114 "com.liferay.portlet.documentlibrary.model.DLContent");
1115 }
1116
1117
1122 public String getBeanIdentifier() {
1123 return _beanIdentifier;
1124 }
1125
1126
1131 public void setBeanIdentifier(String beanIdentifier) {
1132 _beanIdentifier = beanIdentifier;
1133 }
1134
1135 protected ClassLoader getClassLoader() {
1136 Class<?> clazz = getClass();
1137
1138 return clazz.getClassLoader();
1139 }
1140
1141 protected Class<?> getModelClass() {
1142 return DLContent.class;
1143 }
1144
1145 protected String getModelClassName() {
1146 return DLContent.class.getName();
1147 }
1148
1149
1154 protected void runSQL(String sql) throws SystemException {
1155 try {
1156 DataSource dataSource = dlContentPersistence.getDataSource();
1157
1158 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1159 sql, new int[0]);
1160
1161 sqlUpdate.update();
1162 }
1163 catch (Exception e) {
1164 throw new SystemException(e);
1165 }
1166 }
1167
1168 @BeanReference(type = DLAppLocalService.class)
1169 protected DLAppLocalService dlAppLocalService;
1170 @BeanReference(type = DLAppService.class)
1171 protected DLAppService dlAppService;
1172 @BeanReference(type = DLAppHelperLocalService.class)
1173 protected DLAppHelperLocalService dlAppHelperLocalService;
1174 @BeanReference(type = DLContentLocalService.class)
1175 protected DLContentLocalService dlContentLocalService;
1176 @BeanReference(type = DLContentPersistence.class)
1177 protected DLContentPersistence dlContentPersistence;
1178 @BeanReference(type = DLFileEntryLocalService.class)
1179 protected DLFileEntryLocalService dlFileEntryLocalService;
1180 @BeanReference(type = DLFileEntryService.class)
1181 protected DLFileEntryService dlFileEntryService;
1182 @BeanReference(type = DLFileEntryPersistence.class)
1183 protected DLFileEntryPersistence dlFileEntryPersistence;
1184 @BeanReference(type = DLFileEntryFinder.class)
1185 protected DLFileEntryFinder dlFileEntryFinder;
1186 @BeanReference(type = DLFileEntryMetadataLocalService.class)
1187 protected DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1188 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1189 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1190 @BeanReference(type = DLFileEntryTypeLocalService.class)
1191 protected DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1192 @BeanReference(type = DLFileEntryTypeService.class)
1193 protected DLFileEntryTypeService dlFileEntryTypeService;
1194 @BeanReference(type = DLFileEntryTypePersistence.class)
1195 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1196 @BeanReference(type = DLFileEntryTypeFinder.class)
1197 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1198 @BeanReference(type = DLFileRankLocalService.class)
1199 protected DLFileRankLocalService dlFileRankLocalService;
1200 @BeanReference(type = DLFileRankPersistence.class)
1201 protected DLFileRankPersistence dlFileRankPersistence;
1202 @BeanReference(type = DLFileRankFinder.class)
1203 protected DLFileRankFinder dlFileRankFinder;
1204 @BeanReference(type = DLFileShortcutLocalService.class)
1205 protected DLFileShortcutLocalService dlFileShortcutLocalService;
1206 @BeanReference(type = DLFileShortcutService.class)
1207 protected DLFileShortcutService dlFileShortcutService;
1208 @BeanReference(type = DLFileShortcutPersistence.class)
1209 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1210 @BeanReference(type = DLFileVersionLocalService.class)
1211 protected DLFileVersionLocalService dlFileVersionLocalService;
1212 @BeanReference(type = DLFileVersionService.class)
1213 protected DLFileVersionService dlFileVersionService;
1214 @BeanReference(type = DLFileVersionPersistence.class)
1215 protected DLFileVersionPersistence dlFileVersionPersistence;
1216 @BeanReference(type = DLFolderLocalService.class)
1217 protected DLFolderLocalService dlFolderLocalService;
1218 @BeanReference(type = DLFolderService.class)
1219 protected DLFolderService dlFolderService;
1220 @BeanReference(type = DLFolderPersistence.class)
1221 protected DLFolderPersistence dlFolderPersistence;
1222 @BeanReference(type = DLFolderFinder.class)
1223 protected DLFolderFinder dlFolderFinder;
1224 @BeanReference(type = DLSyncLocalService.class)
1225 protected DLSyncLocalService dlSyncLocalService;
1226 @BeanReference(type = DLSyncService.class)
1227 protected DLSyncService dlSyncService;
1228 @BeanReference(type = DLSyncPersistence.class)
1229 protected DLSyncPersistence dlSyncPersistence;
1230 @BeanReference(type = CounterLocalService.class)
1231 protected CounterLocalService counterLocalService;
1232 @BeanReference(type = ResourceLocalService.class)
1233 protected ResourceLocalService resourceLocalService;
1234 @BeanReference(type = ResourceService.class)
1235 protected ResourceService resourceService;
1236 @BeanReference(type = ResourcePersistence.class)
1237 protected ResourcePersistence resourcePersistence;
1238 @BeanReference(type = ResourceFinder.class)
1239 protected ResourceFinder resourceFinder;
1240 @BeanReference(type = UserLocalService.class)
1241 protected UserLocalService userLocalService;
1242 @BeanReference(type = UserService.class)
1243 protected UserService userService;
1244 @BeanReference(type = UserPersistence.class)
1245 protected UserPersistence userPersistence;
1246 @BeanReference(type = UserFinder.class)
1247 protected UserFinder userFinder;
1248 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1249 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1250 private static Log _log = LogFactoryUtil.getLog(DLContentLocalServiceBaseImpl.class);
1251 private String _beanIdentifier;
1252 }