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.dao.orm.DynamicQuery;
022 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.Projection;
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.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.persistence.UserFinder;
034 import com.liferay.portal.service.persistence.UserPersistence;
035
036 import com.liferay.portlet.documentlibrary.model.DLContent;
037 import com.liferay.portlet.documentlibrary.model.DLContentDataBlobModel;
038 import com.liferay.portlet.documentlibrary.service.DLContentLocalService;
039 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
040 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
041 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
042 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
043 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
044 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
045 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
046 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
047 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
048 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
049 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
050 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
051 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
052
053 import java.io.Serializable;
054
055 import java.util.List;
056
057 import javax.sql.DataSource;
058
059
071 public abstract class DLContentLocalServiceBaseImpl extends BaseLocalServiceImpl
072 implements DLContentLocalService, IdentifiableBean {
073
078
079
086 @Indexable(type = IndexableType.REINDEX)
087 @Override
088 public DLContent addDLContent(DLContent dlContent)
089 throws SystemException {
090 dlContent.setNew(true);
091
092 return dlContentPersistence.update(dlContent);
093 }
094
095
101 @Override
102 public DLContent createDLContent(long contentId) {
103 return dlContentPersistence.create(contentId);
104 }
105
106
114 @Indexable(type = IndexableType.DELETE)
115 @Override
116 public DLContent deleteDLContent(long contentId)
117 throws PortalException, SystemException {
118 return dlContentPersistence.remove(contentId);
119 }
120
121
128 @Indexable(type = IndexableType.DELETE)
129 @Override
130 public DLContent deleteDLContent(DLContent dlContent)
131 throws SystemException {
132 return dlContentPersistence.remove(dlContent);
133 }
134
135 @Override
136 public DynamicQuery dynamicQuery() {
137 Class<?> clazz = getClass();
138
139 return DynamicQueryFactoryUtil.forClass(DLContent.class,
140 clazz.getClassLoader());
141 }
142
143
150 @Override
151 @SuppressWarnings("rawtypes")
152 public List dynamicQuery(DynamicQuery dynamicQuery)
153 throws SystemException {
154 return dlContentPersistence.findWithDynamicQuery(dynamicQuery);
155 }
156
157
170 @Override
171 @SuppressWarnings("rawtypes")
172 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
173 throws SystemException {
174 return dlContentPersistence.findWithDynamicQuery(dynamicQuery, start,
175 end);
176 }
177
178
192 @Override
193 @SuppressWarnings("rawtypes")
194 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
195 OrderByComparator orderByComparator) throws SystemException {
196 return dlContentPersistence.findWithDynamicQuery(dynamicQuery, start,
197 end, orderByComparator);
198 }
199
200
207 @Override
208 public long dynamicQueryCount(DynamicQuery dynamicQuery)
209 throws SystemException {
210 return dlContentPersistence.countWithDynamicQuery(dynamicQuery);
211 }
212
213
221 @Override
222 public long dynamicQueryCount(DynamicQuery dynamicQuery,
223 Projection projection) throws SystemException {
224 return dlContentPersistence.countWithDynamicQuery(dynamicQuery,
225 projection);
226 }
227
228 @Override
229 public DLContent fetchDLContent(long contentId) throws SystemException {
230 return dlContentPersistence.fetchByPrimaryKey(contentId);
231 }
232
233
241 @Override
242 public DLContent getDLContent(long contentId)
243 throws PortalException, SystemException {
244 return dlContentPersistence.findByPrimaryKey(contentId);
245 }
246
247 @Override
248 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
249 throws PortalException, SystemException {
250 return dlContentPersistence.findByPrimaryKey(primaryKeyObj);
251 }
252
253
265 @Override
266 public List<DLContent> getDLContents(int start, int end)
267 throws SystemException {
268 return dlContentPersistence.findAll(start, end);
269 }
270
271
277 @Override
278 public int getDLContentsCount() throws SystemException {
279 return dlContentPersistence.countAll();
280 }
281
282
289 @Indexable(type = IndexableType.REINDEX)
290 @Override
291 public DLContent updateDLContent(DLContent dlContent)
292 throws SystemException {
293 return dlContentPersistence.update(dlContent);
294 }
295
296 @Override
297 public DLContentDataBlobModel getDataBlobModel(Serializable primaryKey)
298 throws SystemException {
299 Session session = null;
300
301 try {
302 session = dlContentPersistence.openSession();
303
304 return (com.liferay.portlet.documentlibrary.model.DLContentDataBlobModel)session.get(DLContentDataBlobModel.class,
305 primaryKey);
306 }
307 catch (Exception e) {
308 throw dlContentPersistence.processException(e);
309 }
310 finally {
311 dlContentPersistence.closeSession(session);
312 }
313 }
314
315
320 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
321 return dlAppLocalService;
322 }
323
324
329 public void setDLAppLocalService(
330 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
331 this.dlAppLocalService = dlAppLocalService;
332 }
333
334
339 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
340 return dlAppService;
341 }
342
343
348 public void setDLAppService(
349 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
350 this.dlAppService = dlAppService;
351 }
352
353
358 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
359 return dlAppHelperLocalService;
360 }
361
362
367 public void setDLAppHelperLocalService(
368 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
369 this.dlAppHelperLocalService = dlAppHelperLocalService;
370 }
371
372
377 public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
378 return dlContentLocalService;
379 }
380
381
386 public void setDLContentLocalService(
387 com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
388 this.dlContentLocalService = dlContentLocalService;
389 }
390
391
396 public DLContentPersistence getDLContentPersistence() {
397 return dlContentPersistence;
398 }
399
400
405 public void setDLContentPersistence(
406 DLContentPersistence dlContentPersistence) {
407 this.dlContentPersistence = dlContentPersistence;
408 }
409
410
415 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
416 return dlFileEntryLocalService;
417 }
418
419
424 public void setDLFileEntryLocalService(
425 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
426 this.dlFileEntryLocalService = dlFileEntryLocalService;
427 }
428
429
434 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
435 return dlFileEntryService;
436 }
437
438
443 public void setDLFileEntryService(
444 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
445 this.dlFileEntryService = dlFileEntryService;
446 }
447
448
453 public DLFileEntryPersistence getDLFileEntryPersistence() {
454 return dlFileEntryPersistence;
455 }
456
457
462 public void setDLFileEntryPersistence(
463 DLFileEntryPersistence dlFileEntryPersistence) {
464 this.dlFileEntryPersistence = dlFileEntryPersistence;
465 }
466
467
472 public DLFileEntryFinder getDLFileEntryFinder() {
473 return dlFileEntryFinder;
474 }
475
476
481 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
482 this.dlFileEntryFinder = dlFileEntryFinder;
483 }
484
485
490 public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
491 return dlFileEntryMetadataLocalService;
492 }
493
494
499 public void setDLFileEntryMetadataLocalService(
500 com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
501 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
502 }
503
504
509 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
510 return dlFileEntryMetadataPersistence;
511 }
512
513
518 public void setDLFileEntryMetadataPersistence(
519 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
520 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
521 }
522
523
528 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
529 return dlFileEntryTypeLocalService;
530 }
531
532
537 public void setDLFileEntryTypeLocalService(
538 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
539 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
540 }
541
542
547 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
548 return dlFileEntryTypeService;
549 }
550
551
556 public void setDLFileEntryTypeService(
557 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
558 this.dlFileEntryTypeService = dlFileEntryTypeService;
559 }
560
561
566 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
567 return dlFileEntryTypePersistence;
568 }
569
570
575 public void setDLFileEntryTypePersistence(
576 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
577 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
578 }
579
580
585 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
586 return dlFileEntryTypeFinder;
587 }
588
589
594 public void setDLFileEntryTypeFinder(
595 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
596 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
597 }
598
599
604 public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
605 return dlFileRankLocalService;
606 }
607
608
613 public void setDLFileRankLocalService(
614 com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
615 this.dlFileRankLocalService = dlFileRankLocalService;
616 }
617
618
623 public DLFileRankPersistence getDLFileRankPersistence() {
624 return dlFileRankPersistence;
625 }
626
627
632 public void setDLFileRankPersistence(
633 DLFileRankPersistence dlFileRankPersistence) {
634 this.dlFileRankPersistence = dlFileRankPersistence;
635 }
636
637
642 public DLFileRankFinder getDLFileRankFinder() {
643 return dlFileRankFinder;
644 }
645
646
651 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
652 this.dlFileRankFinder = dlFileRankFinder;
653 }
654
655
660 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
661 return dlFileShortcutLocalService;
662 }
663
664
669 public void setDLFileShortcutLocalService(
670 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
671 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
672 }
673
674
679 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
680 return dlFileShortcutService;
681 }
682
683
688 public void setDLFileShortcutService(
689 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
690 this.dlFileShortcutService = dlFileShortcutService;
691 }
692
693
698 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
699 return dlFileShortcutPersistence;
700 }
701
702
707 public void setDLFileShortcutPersistence(
708 DLFileShortcutPersistence dlFileShortcutPersistence) {
709 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
710 }
711
712
717 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
718 return dlFileVersionLocalService;
719 }
720
721
726 public void setDLFileVersionLocalService(
727 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
728 this.dlFileVersionLocalService = dlFileVersionLocalService;
729 }
730
731
736 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
737 return dlFileVersionService;
738 }
739
740
745 public void setDLFileVersionService(
746 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
747 this.dlFileVersionService = dlFileVersionService;
748 }
749
750
755 public DLFileVersionPersistence getDLFileVersionPersistence() {
756 return dlFileVersionPersistence;
757 }
758
759
764 public void setDLFileVersionPersistence(
765 DLFileVersionPersistence dlFileVersionPersistence) {
766 this.dlFileVersionPersistence = dlFileVersionPersistence;
767 }
768
769
774 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
775 return dlFolderLocalService;
776 }
777
778
783 public void setDLFolderLocalService(
784 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
785 this.dlFolderLocalService = dlFolderLocalService;
786 }
787
788
793 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
794 return dlFolderService;
795 }
796
797
802 public void setDLFolderService(
803 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
804 this.dlFolderService = dlFolderService;
805 }
806
807
812 public DLFolderPersistence getDLFolderPersistence() {
813 return dlFolderPersistence;
814 }
815
816
821 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
822 this.dlFolderPersistence = dlFolderPersistence;
823 }
824
825
830 public DLFolderFinder getDLFolderFinder() {
831 return dlFolderFinder;
832 }
833
834
839 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
840 this.dlFolderFinder = dlFolderFinder;
841 }
842
843
848 public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
849 return dlSyncEventLocalService;
850 }
851
852
857 public void setDLSyncEventLocalService(
858 com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
859 this.dlSyncEventLocalService = dlSyncEventLocalService;
860 }
861
862
867 public DLSyncEventPersistence getDLSyncEventPersistence() {
868 return dlSyncEventPersistence;
869 }
870
871
876 public void setDLSyncEventPersistence(
877 DLSyncEventPersistence dlSyncEventPersistence) {
878 this.dlSyncEventPersistence = dlSyncEventPersistence;
879 }
880
881
886 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
887 return counterLocalService;
888 }
889
890
895 public void setCounterLocalService(
896 com.liferay.counter.service.CounterLocalService counterLocalService) {
897 this.counterLocalService = counterLocalService;
898 }
899
900
905 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
906 return resourceLocalService;
907 }
908
909
914 public void setResourceLocalService(
915 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
916 this.resourceLocalService = resourceLocalService;
917 }
918
919
924 public com.liferay.portal.service.UserLocalService getUserLocalService() {
925 return userLocalService;
926 }
927
928
933 public void setUserLocalService(
934 com.liferay.portal.service.UserLocalService userLocalService) {
935 this.userLocalService = userLocalService;
936 }
937
938
943 public com.liferay.portal.service.UserService getUserService() {
944 return userService;
945 }
946
947
952 public void setUserService(
953 com.liferay.portal.service.UserService userService) {
954 this.userService = userService;
955 }
956
957
962 public UserPersistence getUserPersistence() {
963 return userPersistence;
964 }
965
966
971 public void setUserPersistence(UserPersistence userPersistence) {
972 this.userPersistence = userPersistence;
973 }
974
975
980 public UserFinder getUserFinder() {
981 return userFinder;
982 }
983
984
989 public void setUserFinder(UserFinder userFinder) {
990 this.userFinder = userFinder;
991 }
992
993 public void afterPropertiesSet() {
994 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLContent",
995 dlContentLocalService);
996 }
997
998 public void destroy() {
999 persistedModelLocalServiceRegistry.unregister(
1000 "com.liferay.portlet.documentlibrary.model.DLContent");
1001 }
1002
1003
1008 @Override
1009 public String getBeanIdentifier() {
1010 return _beanIdentifier;
1011 }
1012
1013
1018 @Override
1019 public void setBeanIdentifier(String beanIdentifier) {
1020 _beanIdentifier = beanIdentifier;
1021 }
1022
1023 protected Class<?> getModelClass() {
1024 return DLContent.class;
1025 }
1026
1027 protected String getModelClassName() {
1028 return DLContent.class.getName();
1029 }
1030
1031
1036 protected void runSQL(String sql) throws SystemException {
1037 try {
1038 DataSource dataSource = dlContentPersistence.getDataSource();
1039
1040 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1041 sql, new int[0]);
1042
1043 sqlUpdate.update();
1044 }
1045 catch (Exception e) {
1046 throw new SystemException(e);
1047 }
1048 }
1049
1050 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1051 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1052 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1053 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1054 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1055 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1056 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1057 protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1058 @BeanReference(type = DLContentPersistence.class)
1059 protected DLContentPersistence dlContentPersistence;
1060 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1061 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1062 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1063 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1064 @BeanReference(type = DLFileEntryPersistence.class)
1065 protected DLFileEntryPersistence dlFileEntryPersistence;
1066 @BeanReference(type = DLFileEntryFinder.class)
1067 protected DLFileEntryFinder dlFileEntryFinder;
1068 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1069 protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1070 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1071 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1072 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1073 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1074 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1075 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1076 @BeanReference(type = DLFileEntryTypePersistence.class)
1077 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1078 @BeanReference(type = DLFileEntryTypeFinder.class)
1079 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1080 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
1081 protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
1082 @BeanReference(type = DLFileRankPersistence.class)
1083 protected DLFileRankPersistence dlFileRankPersistence;
1084 @BeanReference(type = DLFileRankFinder.class)
1085 protected DLFileRankFinder dlFileRankFinder;
1086 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1087 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1088 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1089 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1090 @BeanReference(type = DLFileShortcutPersistence.class)
1091 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1092 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1093 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1094 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1095 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1096 @BeanReference(type = DLFileVersionPersistence.class)
1097 protected DLFileVersionPersistence dlFileVersionPersistence;
1098 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1099 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1100 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1101 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1102 @BeanReference(type = DLFolderPersistence.class)
1103 protected DLFolderPersistence dlFolderPersistence;
1104 @BeanReference(type = DLFolderFinder.class)
1105 protected DLFolderFinder dlFolderFinder;
1106 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1107 protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1108 @BeanReference(type = DLSyncEventPersistence.class)
1109 protected DLSyncEventPersistence dlSyncEventPersistence;
1110 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1111 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1112 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1113 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1114 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1115 protected com.liferay.portal.service.UserLocalService userLocalService;
1116 @BeanReference(type = com.liferay.portal.service.UserService.class)
1117 protected com.liferay.portal.service.UserService userService;
1118 @BeanReference(type = UserPersistence.class)
1119 protected UserPersistence userPersistence;
1120 @BeanReference(type = UserFinder.class)
1121 protected UserFinder userFinder;
1122 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1123 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1124 private String _beanIdentifier;
1125 }