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.exception.PortalException;
025 import com.liferay.portal.kernel.exception.SystemException;
026 import com.liferay.portal.kernel.search.Indexable;
027 import com.liferay.portal.kernel.search.IndexableType;
028 import com.liferay.portal.kernel.util.OrderByComparator;
029 import com.liferay.portal.model.PersistedModel;
030 import com.liferay.portal.service.BaseLocalServiceImpl;
031 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
032 import com.liferay.portal.service.persistence.GroupFinder;
033 import com.liferay.portal.service.persistence.GroupPersistence;
034 import com.liferay.portal.service.persistence.ImagePersistence;
035 import com.liferay.portal.service.persistence.LockFinder;
036 import com.liferay.portal.service.persistence.LockPersistence;
037 import com.liferay.portal.service.persistence.RepositoryPersistence;
038 import com.liferay.portal.service.persistence.UserFinder;
039 import com.liferay.portal.service.persistence.UserPersistence;
040 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
041 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
042
043 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
044 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
045 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
046 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
047 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
048 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
049 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
050 import com.liferay.portlet.documentlibrary.model.DLFileEntry;
051 import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
052 import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
053 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
054 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
055 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
056 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
057 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
058 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
059 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
060 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
061 import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
062 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
063 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
064 import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
065 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
066 import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
067 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
068 import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
069 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
070
071 import java.io.Serializable;
072
073 import java.util.List;
074
075 import javax.sql.DataSource;
076
077
089 public abstract class DLFileEntryLocalServiceBaseImpl
090 extends BaseLocalServiceImpl implements DLFileEntryLocalService,
091 IdentifiableBean {
092
097
098
105 @Indexable(type = IndexableType.REINDEX)
106 @Override
107 public DLFileEntry addDLFileEntry(DLFileEntry dlFileEntry)
108 throws SystemException {
109 dlFileEntry.setNew(true);
110
111 return dlFileEntryPersistence.update(dlFileEntry);
112 }
113
114
120 @Override
121 public DLFileEntry createDLFileEntry(long fileEntryId) {
122 return dlFileEntryPersistence.create(fileEntryId);
123 }
124
125
133 @Indexable(type = IndexableType.DELETE)
134 @Override
135 public DLFileEntry deleteDLFileEntry(long fileEntryId)
136 throws PortalException, SystemException {
137 return dlFileEntryPersistence.remove(fileEntryId);
138 }
139
140
147 @Indexable(type = IndexableType.DELETE)
148 @Override
149 public DLFileEntry deleteDLFileEntry(DLFileEntry dlFileEntry)
150 throws SystemException {
151 return dlFileEntryPersistence.remove(dlFileEntry);
152 }
153
154 @Override
155 public DynamicQuery dynamicQuery() {
156 Class<?> clazz = getClass();
157
158 return DynamicQueryFactoryUtil.forClass(DLFileEntry.class,
159 clazz.getClassLoader());
160 }
161
162
169 @Override
170 @SuppressWarnings("rawtypes")
171 public List dynamicQuery(DynamicQuery dynamicQuery)
172 throws SystemException {
173 return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery);
174 }
175
176
189 @Override
190 @SuppressWarnings("rawtypes")
191 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
192 throws SystemException {
193 return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
194 end);
195 }
196
197
211 @Override
212 @SuppressWarnings("rawtypes")
213 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
214 OrderByComparator orderByComparator) throws SystemException {
215 return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
216 end, orderByComparator);
217 }
218
219
226 @Override
227 public long dynamicQueryCount(DynamicQuery dynamicQuery)
228 throws SystemException {
229 return dlFileEntryPersistence.countWithDynamicQuery(dynamicQuery);
230 }
231
232
240 @Override
241 public long dynamicQueryCount(DynamicQuery dynamicQuery,
242 Projection projection) throws SystemException {
243 return dlFileEntryPersistence.countWithDynamicQuery(dynamicQuery,
244 projection);
245 }
246
247 @Override
248 public DLFileEntry fetchDLFileEntry(long fileEntryId)
249 throws SystemException {
250 return dlFileEntryPersistence.fetchByPrimaryKey(fileEntryId);
251 }
252
253
261 @Override
262 public DLFileEntry fetchDLFileEntryByUuidAndCompanyId(String uuid,
263 long companyId) throws SystemException {
264 return dlFileEntryPersistence.fetchByUuid_C_First(uuid, companyId, null);
265 }
266
267
275 @Override
276 public DLFileEntry fetchDLFileEntryByUuidAndGroupId(String uuid,
277 long groupId) throws SystemException {
278 return dlFileEntryPersistence.fetchByUUID_G(uuid, groupId);
279 }
280
281
289 @Override
290 public DLFileEntry getDLFileEntry(long fileEntryId)
291 throws PortalException, SystemException {
292 return dlFileEntryPersistence.findByPrimaryKey(fileEntryId);
293 }
294
295 @Override
296 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
297 throws PortalException, SystemException {
298 return dlFileEntryPersistence.findByPrimaryKey(primaryKeyObj);
299 }
300
301
310 @Override
311 public DLFileEntry getDLFileEntryByUuidAndCompanyId(String uuid,
312 long companyId) throws PortalException, SystemException {
313 return dlFileEntryPersistence.findByUuid_C_First(uuid, companyId, null);
314 }
315
316
325 @Override
326 public DLFileEntry getDLFileEntryByUuidAndGroupId(String uuid, long groupId)
327 throws PortalException, SystemException {
328 return dlFileEntryPersistence.findByUUID_G(uuid, groupId);
329 }
330
331
343 @Override
344 public List<DLFileEntry> getDLFileEntries(int start, int end)
345 throws SystemException {
346 return dlFileEntryPersistence.findAll(start, end);
347 }
348
349
355 @Override
356 public int getDLFileEntriesCount() throws SystemException {
357 return dlFileEntryPersistence.countAll();
358 }
359
360
367 @Indexable(type = IndexableType.REINDEX)
368 @Override
369 public DLFileEntry updateDLFileEntry(DLFileEntry dlFileEntry)
370 throws SystemException {
371 return dlFileEntryPersistence.update(dlFileEntry);
372 }
373
374
379 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
380 return dlAppLocalService;
381 }
382
383
388 public void setDLAppLocalService(
389 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
390 this.dlAppLocalService = dlAppLocalService;
391 }
392
393
398 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
399 return dlAppService;
400 }
401
402
407 public void setDLAppService(
408 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
409 this.dlAppService = dlAppService;
410 }
411
412
417 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
418 return dlAppHelperLocalService;
419 }
420
421
426 public void setDLAppHelperLocalService(
427 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
428 this.dlAppHelperLocalService = dlAppHelperLocalService;
429 }
430
431
436 public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
437 return dlContentLocalService;
438 }
439
440
445 public void setDLContentLocalService(
446 com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
447 this.dlContentLocalService = dlContentLocalService;
448 }
449
450
455 public DLContentPersistence getDLContentPersistence() {
456 return dlContentPersistence;
457 }
458
459
464 public void setDLContentPersistence(
465 DLContentPersistence dlContentPersistence) {
466 this.dlContentPersistence = dlContentPersistence;
467 }
468
469
474 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
475 return dlFileEntryLocalService;
476 }
477
478
483 public void setDLFileEntryLocalService(
484 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
485 this.dlFileEntryLocalService = dlFileEntryLocalService;
486 }
487
488
493 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
494 return dlFileEntryService;
495 }
496
497
502 public void setDLFileEntryService(
503 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
504 this.dlFileEntryService = dlFileEntryService;
505 }
506
507
512 public DLFileEntryPersistence getDLFileEntryPersistence() {
513 return dlFileEntryPersistence;
514 }
515
516
521 public void setDLFileEntryPersistence(
522 DLFileEntryPersistence dlFileEntryPersistence) {
523 this.dlFileEntryPersistence = dlFileEntryPersistence;
524 }
525
526
531 public DLFileEntryFinder getDLFileEntryFinder() {
532 return dlFileEntryFinder;
533 }
534
535
540 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
541 this.dlFileEntryFinder = dlFileEntryFinder;
542 }
543
544
549 public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
550 return dlFileEntryMetadataLocalService;
551 }
552
553
558 public void setDLFileEntryMetadataLocalService(
559 com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
560 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
561 }
562
563
568 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
569 return dlFileEntryMetadataPersistence;
570 }
571
572
577 public void setDLFileEntryMetadataPersistence(
578 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
579 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
580 }
581
582
587 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
588 return dlFileEntryTypeLocalService;
589 }
590
591
596 public void setDLFileEntryTypeLocalService(
597 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
598 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
599 }
600
601
606 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
607 return dlFileEntryTypeService;
608 }
609
610
615 public void setDLFileEntryTypeService(
616 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
617 this.dlFileEntryTypeService = dlFileEntryTypeService;
618 }
619
620
625 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
626 return dlFileEntryTypePersistence;
627 }
628
629
634 public void setDLFileEntryTypePersistence(
635 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
636 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
637 }
638
639
644 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
645 return dlFileEntryTypeFinder;
646 }
647
648
653 public void setDLFileEntryTypeFinder(
654 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
655 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
656 }
657
658
663 public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
664 return dlFileRankLocalService;
665 }
666
667
672 public void setDLFileRankLocalService(
673 com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
674 this.dlFileRankLocalService = dlFileRankLocalService;
675 }
676
677
682 public DLFileRankPersistence getDLFileRankPersistence() {
683 return dlFileRankPersistence;
684 }
685
686
691 public void setDLFileRankPersistence(
692 DLFileRankPersistence dlFileRankPersistence) {
693 this.dlFileRankPersistence = dlFileRankPersistence;
694 }
695
696
701 public DLFileRankFinder getDLFileRankFinder() {
702 return dlFileRankFinder;
703 }
704
705
710 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
711 this.dlFileRankFinder = dlFileRankFinder;
712 }
713
714
719 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
720 return dlFileShortcutLocalService;
721 }
722
723
728 public void setDLFileShortcutLocalService(
729 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
730 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
731 }
732
733
738 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
739 return dlFileShortcutService;
740 }
741
742
747 public void setDLFileShortcutService(
748 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
749 this.dlFileShortcutService = dlFileShortcutService;
750 }
751
752
757 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
758 return dlFileShortcutPersistence;
759 }
760
761
766 public void setDLFileShortcutPersistence(
767 DLFileShortcutPersistence dlFileShortcutPersistence) {
768 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
769 }
770
771
776 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
777 return dlFileVersionLocalService;
778 }
779
780
785 public void setDLFileVersionLocalService(
786 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
787 this.dlFileVersionLocalService = dlFileVersionLocalService;
788 }
789
790
795 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
796 return dlFileVersionService;
797 }
798
799
804 public void setDLFileVersionService(
805 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
806 this.dlFileVersionService = dlFileVersionService;
807 }
808
809
814 public DLFileVersionPersistence getDLFileVersionPersistence() {
815 return dlFileVersionPersistence;
816 }
817
818
823 public void setDLFileVersionPersistence(
824 DLFileVersionPersistence dlFileVersionPersistence) {
825 this.dlFileVersionPersistence = dlFileVersionPersistence;
826 }
827
828
833 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
834 return dlFolderLocalService;
835 }
836
837
842 public void setDLFolderLocalService(
843 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
844 this.dlFolderLocalService = dlFolderLocalService;
845 }
846
847
852 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
853 return dlFolderService;
854 }
855
856
861 public void setDLFolderService(
862 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
863 this.dlFolderService = dlFolderService;
864 }
865
866
871 public DLFolderPersistence getDLFolderPersistence() {
872 return dlFolderPersistence;
873 }
874
875
880 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
881 this.dlFolderPersistence = dlFolderPersistence;
882 }
883
884
889 public DLFolderFinder getDLFolderFinder() {
890 return dlFolderFinder;
891 }
892
893
898 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
899 this.dlFolderFinder = dlFolderFinder;
900 }
901
902
907 public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
908 return dlSyncEventLocalService;
909 }
910
911
916 public void setDLSyncEventLocalService(
917 com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
918 this.dlSyncEventLocalService = dlSyncEventLocalService;
919 }
920
921
926 public DLSyncEventPersistence getDLSyncEventPersistence() {
927 return dlSyncEventPersistence;
928 }
929
930
935 public void setDLSyncEventPersistence(
936 DLSyncEventPersistence dlSyncEventPersistence) {
937 this.dlSyncEventPersistence = dlSyncEventPersistence;
938 }
939
940
945 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
946 return counterLocalService;
947 }
948
949
954 public void setCounterLocalService(
955 com.liferay.counter.service.CounterLocalService counterLocalService) {
956 this.counterLocalService = counterLocalService;
957 }
958
959
964 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
965 return groupLocalService;
966 }
967
968
973 public void setGroupLocalService(
974 com.liferay.portal.service.GroupLocalService groupLocalService) {
975 this.groupLocalService = groupLocalService;
976 }
977
978
983 public com.liferay.portal.service.GroupService getGroupService() {
984 return groupService;
985 }
986
987
992 public void setGroupService(
993 com.liferay.portal.service.GroupService groupService) {
994 this.groupService = groupService;
995 }
996
997
1002 public GroupPersistence getGroupPersistence() {
1003 return groupPersistence;
1004 }
1005
1006
1011 public void setGroupPersistence(GroupPersistence groupPersistence) {
1012 this.groupPersistence = groupPersistence;
1013 }
1014
1015
1020 public GroupFinder getGroupFinder() {
1021 return groupFinder;
1022 }
1023
1024
1029 public void setGroupFinder(GroupFinder groupFinder) {
1030 this.groupFinder = groupFinder;
1031 }
1032
1033
1038 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
1039 return imageLocalService;
1040 }
1041
1042
1047 public void setImageLocalService(
1048 com.liferay.portal.service.ImageLocalService imageLocalService) {
1049 this.imageLocalService = imageLocalService;
1050 }
1051
1052
1057 public com.liferay.portal.service.ImageService getImageService() {
1058 return imageService;
1059 }
1060
1061
1066 public void setImageService(
1067 com.liferay.portal.service.ImageService imageService) {
1068 this.imageService = imageService;
1069 }
1070
1071
1076 public ImagePersistence getImagePersistence() {
1077 return imagePersistence;
1078 }
1079
1080
1085 public void setImagePersistence(ImagePersistence imagePersistence) {
1086 this.imagePersistence = imagePersistence;
1087 }
1088
1089
1094 public com.liferay.portal.service.LockLocalService getLockLocalService() {
1095 return lockLocalService;
1096 }
1097
1098
1103 public void setLockLocalService(
1104 com.liferay.portal.service.LockLocalService lockLocalService) {
1105 this.lockLocalService = lockLocalService;
1106 }
1107
1108
1113 public LockPersistence getLockPersistence() {
1114 return lockPersistence;
1115 }
1116
1117
1122 public void setLockPersistence(LockPersistence lockPersistence) {
1123 this.lockPersistence = lockPersistence;
1124 }
1125
1126
1131 public LockFinder getLockFinder() {
1132 return lockFinder;
1133 }
1134
1135
1140 public void setLockFinder(LockFinder lockFinder) {
1141 this.lockFinder = lockFinder;
1142 }
1143
1144
1149 public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
1150 return repositoryLocalService;
1151 }
1152
1153
1158 public void setRepositoryLocalService(
1159 com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
1160 this.repositoryLocalService = repositoryLocalService;
1161 }
1162
1163
1168 public com.liferay.portal.service.RepositoryService getRepositoryService() {
1169 return repositoryService;
1170 }
1171
1172
1177 public void setRepositoryService(
1178 com.liferay.portal.service.RepositoryService repositoryService) {
1179 this.repositoryService = repositoryService;
1180 }
1181
1182
1187 public RepositoryPersistence getRepositoryPersistence() {
1188 return repositoryPersistence;
1189 }
1190
1191
1196 public void setRepositoryPersistence(
1197 RepositoryPersistence repositoryPersistence) {
1198 this.repositoryPersistence = repositoryPersistence;
1199 }
1200
1201
1206 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
1207 return resourceLocalService;
1208 }
1209
1210
1215 public void setResourceLocalService(
1216 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
1217 this.resourceLocalService = resourceLocalService;
1218 }
1219
1220
1225 public com.liferay.portal.service.UserLocalService getUserLocalService() {
1226 return userLocalService;
1227 }
1228
1229
1234 public void setUserLocalService(
1235 com.liferay.portal.service.UserLocalService userLocalService) {
1236 this.userLocalService = userLocalService;
1237 }
1238
1239
1244 public com.liferay.portal.service.UserService getUserService() {
1245 return userService;
1246 }
1247
1248
1253 public void setUserService(
1254 com.liferay.portal.service.UserService userService) {
1255 this.userService = userService;
1256 }
1257
1258
1263 public UserPersistence getUserPersistence() {
1264 return userPersistence;
1265 }
1266
1267
1272 public void setUserPersistence(UserPersistence userPersistence) {
1273 this.userPersistence = userPersistence;
1274 }
1275
1276
1281 public UserFinder getUserFinder() {
1282 return userFinder;
1283 }
1284
1285
1290 public void setUserFinder(UserFinder userFinder) {
1291 this.userFinder = userFinder;
1292 }
1293
1294
1299 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
1300 return webDAVPropsLocalService;
1301 }
1302
1303
1308 public void setWebDAVPropsLocalService(
1309 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
1310 this.webDAVPropsLocalService = webDAVPropsLocalService;
1311 }
1312
1313
1318 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1319 return webDAVPropsPersistence;
1320 }
1321
1322
1327 public void setWebDAVPropsPersistence(
1328 WebDAVPropsPersistence webDAVPropsPersistence) {
1329 this.webDAVPropsPersistence = webDAVPropsPersistence;
1330 }
1331
1332
1337 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1338 return workflowInstanceLinkLocalService;
1339 }
1340
1341
1346 public void setWorkflowInstanceLinkLocalService(
1347 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1348 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1349 }
1350
1351
1356 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1357 return workflowInstanceLinkPersistence;
1358 }
1359
1360
1365 public void setWorkflowInstanceLinkPersistence(
1366 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1367 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1368 }
1369
1370
1375 public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
1376 return assetCategoryLocalService;
1377 }
1378
1379
1384 public void setAssetCategoryLocalService(
1385 com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
1386 this.assetCategoryLocalService = assetCategoryLocalService;
1387 }
1388
1389
1394 public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
1395 return assetCategoryService;
1396 }
1397
1398
1403 public void setAssetCategoryService(
1404 com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
1405 this.assetCategoryService = assetCategoryService;
1406 }
1407
1408
1413 public AssetCategoryPersistence getAssetCategoryPersistence() {
1414 return assetCategoryPersistence;
1415 }
1416
1417
1422 public void setAssetCategoryPersistence(
1423 AssetCategoryPersistence assetCategoryPersistence) {
1424 this.assetCategoryPersistence = assetCategoryPersistence;
1425 }
1426
1427
1432 public AssetCategoryFinder getAssetCategoryFinder() {
1433 return assetCategoryFinder;
1434 }
1435
1436
1441 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1442 this.assetCategoryFinder = assetCategoryFinder;
1443 }
1444
1445
1450 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1451 return assetEntryLocalService;
1452 }
1453
1454
1459 public void setAssetEntryLocalService(
1460 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1461 this.assetEntryLocalService = assetEntryLocalService;
1462 }
1463
1464
1469 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1470 return assetEntryService;
1471 }
1472
1473
1478 public void setAssetEntryService(
1479 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1480 this.assetEntryService = assetEntryService;
1481 }
1482
1483
1488 public AssetEntryPersistence getAssetEntryPersistence() {
1489 return assetEntryPersistence;
1490 }
1491
1492
1497 public void setAssetEntryPersistence(
1498 AssetEntryPersistence assetEntryPersistence) {
1499 this.assetEntryPersistence = assetEntryPersistence;
1500 }
1501
1502
1507 public AssetEntryFinder getAssetEntryFinder() {
1508 return assetEntryFinder;
1509 }
1510
1511
1516 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1517 this.assetEntryFinder = assetEntryFinder;
1518 }
1519
1520
1525 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
1526 return assetLinkLocalService;
1527 }
1528
1529
1534 public void setAssetLinkLocalService(
1535 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
1536 this.assetLinkLocalService = assetLinkLocalService;
1537 }
1538
1539
1544 public AssetLinkPersistence getAssetLinkPersistence() {
1545 return assetLinkPersistence;
1546 }
1547
1548
1553 public void setAssetLinkPersistence(
1554 AssetLinkPersistence assetLinkPersistence) {
1555 this.assetLinkPersistence = assetLinkPersistence;
1556 }
1557
1558
1563 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1564 return assetTagLocalService;
1565 }
1566
1567
1572 public void setAssetTagLocalService(
1573 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1574 this.assetTagLocalService = assetTagLocalService;
1575 }
1576
1577
1582 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1583 return assetTagService;
1584 }
1585
1586
1591 public void setAssetTagService(
1592 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1593 this.assetTagService = assetTagService;
1594 }
1595
1596
1601 public AssetTagPersistence getAssetTagPersistence() {
1602 return assetTagPersistence;
1603 }
1604
1605
1610 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1611 this.assetTagPersistence = assetTagPersistence;
1612 }
1613
1614
1619 public AssetTagFinder getAssetTagFinder() {
1620 return assetTagFinder;
1621 }
1622
1623
1628 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1629 this.assetTagFinder = assetTagFinder;
1630 }
1631
1632
1637 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
1638 return ddmStructureLocalService;
1639 }
1640
1641
1646 public void setDDMStructureLocalService(
1647 com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
1648 this.ddmStructureLocalService = ddmStructureLocalService;
1649 }
1650
1651
1656 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
1657 return ddmStructureService;
1658 }
1659
1660
1665 public void setDDMStructureService(
1666 com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
1667 this.ddmStructureService = ddmStructureService;
1668 }
1669
1670
1675 public DDMStructurePersistence getDDMStructurePersistence() {
1676 return ddmStructurePersistence;
1677 }
1678
1679
1684 public void setDDMStructurePersistence(
1685 DDMStructurePersistence ddmStructurePersistence) {
1686 this.ddmStructurePersistence = ddmStructurePersistence;
1687 }
1688
1689
1694 public DDMStructureFinder getDDMStructureFinder() {
1695 return ddmStructureFinder;
1696 }
1697
1698
1703 public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1704 this.ddmStructureFinder = ddmStructureFinder;
1705 }
1706
1707
1712 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1713 return expandoRowLocalService;
1714 }
1715
1716
1721 public void setExpandoRowLocalService(
1722 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1723 this.expandoRowLocalService = expandoRowLocalService;
1724 }
1725
1726
1731 public ExpandoRowPersistence getExpandoRowPersistence() {
1732 return expandoRowPersistence;
1733 }
1734
1735
1740 public void setExpandoRowPersistence(
1741 ExpandoRowPersistence expandoRowPersistence) {
1742 this.expandoRowPersistence = expandoRowPersistence;
1743 }
1744
1745
1750 public com.liferay.portlet.expando.service.ExpandoTableLocalService getExpandoTableLocalService() {
1751 return expandoTableLocalService;
1752 }
1753
1754
1759 public void setExpandoTableLocalService(
1760 com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService) {
1761 this.expandoTableLocalService = expandoTableLocalService;
1762 }
1763
1764
1769 public ExpandoTablePersistence getExpandoTablePersistence() {
1770 return expandoTablePersistence;
1771 }
1772
1773
1778 public void setExpandoTablePersistence(
1779 ExpandoTablePersistence expandoTablePersistence) {
1780 this.expandoTablePersistence = expandoTablePersistence;
1781 }
1782
1783
1788 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1789 return trashEntryLocalService;
1790 }
1791
1792
1797 public void setTrashEntryLocalService(
1798 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1799 this.trashEntryLocalService = trashEntryLocalService;
1800 }
1801
1802
1807 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1808 return trashEntryService;
1809 }
1810
1811
1816 public void setTrashEntryService(
1817 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1818 this.trashEntryService = trashEntryService;
1819 }
1820
1821
1826 public TrashEntryPersistence getTrashEntryPersistence() {
1827 return trashEntryPersistence;
1828 }
1829
1830
1835 public void setTrashEntryPersistence(
1836 TrashEntryPersistence trashEntryPersistence) {
1837 this.trashEntryPersistence = trashEntryPersistence;
1838 }
1839
1840 public void afterPropertiesSet() {
1841 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLFileEntry",
1842 dlFileEntryLocalService);
1843 }
1844
1845 public void destroy() {
1846 persistedModelLocalServiceRegistry.unregister(
1847 "com.liferay.portlet.documentlibrary.model.DLFileEntry");
1848 }
1849
1850
1855 @Override
1856 public String getBeanIdentifier() {
1857 return _beanIdentifier;
1858 }
1859
1860
1865 @Override
1866 public void setBeanIdentifier(String beanIdentifier) {
1867 _beanIdentifier = beanIdentifier;
1868 }
1869
1870 protected Class<?> getModelClass() {
1871 return DLFileEntry.class;
1872 }
1873
1874 protected String getModelClassName() {
1875 return DLFileEntry.class.getName();
1876 }
1877
1878
1883 protected void runSQL(String sql) throws SystemException {
1884 try {
1885 DataSource dataSource = dlFileEntryPersistence.getDataSource();
1886
1887 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1888 sql, new int[0]);
1889
1890 sqlUpdate.update();
1891 }
1892 catch (Exception e) {
1893 throw new SystemException(e);
1894 }
1895 }
1896
1897 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1898 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1899 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1900 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1901 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1902 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1903 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1904 protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1905 @BeanReference(type = DLContentPersistence.class)
1906 protected DLContentPersistence dlContentPersistence;
1907 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1908 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1909 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1910 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1911 @BeanReference(type = DLFileEntryPersistence.class)
1912 protected DLFileEntryPersistence dlFileEntryPersistence;
1913 @BeanReference(type = DLFileEntryFinder.class)
1914 protected DLFileEntryFinder dlFileEntryFinder;
1915 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1916 protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1917 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1918 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1919 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1920 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1921 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1922 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
1923 @BeanReference(type = DLFileEntryTypePersistence.class)
1924 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1925 @BeanReference(type = DLFileEntryTypeFinder.class)
1926 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1927 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
1928 protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
1929 @BeanReference(type = DLFileRankPersistence.class)
1930 protected DLFileRankPersistence dlFileRankPersistence;
1931 @BeanReference(type = DLFileRankFinder.class)
1932 protected DLFileRankFinder dlFileRankFinder;
1933 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1934 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1935 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1936 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1937 @BeanReference(type = DLFileShortcutPersistence.class)
1938 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1939 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
1940 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
1941 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
1942 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
1943 @BeanReference(type = DLFileVersionPersistence.class)
1944 protected DLFileVersionPersistence dlFileVersionPersistence;
1945 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1946 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1947 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1948 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1949 @BeanReference(type = DLFolderPersistence.class)
1950 protected DLFolderPersistence dlFolderPersistence;
1951 @BeanReference(type = DLFolderFinder.class)
1952 protected DLFolderFinder dlFolderFinder;
1953 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
1954 protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
1955 @BeanReference(type = DLSyncEventPersistence.class)
1956 protected DLSyncEventPersistence dlSyncEventPersistence;
1957 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1958 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1959 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1960 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1961 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1962 protected com.liferay.portal.service.GroupService groupService;
1963 @BeanReference(type = GroupPersistence.class)
1964 protected GroupPersistence groupPersistence;
1965 @BeanReference(type = GroupFinder.class)
1966 protected GroupFinder groupFinder;
1967 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1968 protected com.liferay.portal.service.ImageLocalService imageLocalService;
1969 @BeanReference(type = com.liferay.portal.service.ImageService.class)
1970 protected com.liferay.portal.service.ImageService imageService;
1971 @BeanReference(type = ImagePersistence.class)
1972 protected ImagePersistence imagePersistence;
1973 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1974 protected com.liferay.portal.service.LockLocalService lockLocalService;
1975 @BeanReference(type = LockPersistence.class)
1976 protected LockPersistence lockPersistence;
1977 @BeanReference(type = LockFinder.class)
1978 protected LockFinder lockFinder;
1979 @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1980 protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1981 @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1982 protected com.liferay.portal.service.RepositoryService repositoryService;
1983 @BeanReference(type = RepositoryPersistence.class)
1984 protected RepositoryPersistence repositoryPersistence;
1985 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1986 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1987 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1988 protected com.liferay.portal.service.UserLocalService userLocalService;
1989 @BeanReference(type = com.liferay.portal.service.UserService.class)
1990 protected com.liferay.portal.service.UserService userService;
1991 @BeanReference(type = UserPersistence.class)
1992 protected UserPersistence userPersistence;
1993 @BeanReference(type = UserFinder.class)
1994 protected UserFinder userFinder;
1995 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1996 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1997 @BeanReference(type = WebDAVPropsPersistence.class)
1998 protected WebDAVPropsPersistence webDAVPropsPersistence;
1999 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
2000 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
2001 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
2002 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
2003 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
2004 protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
2005 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
2006 protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
2007 @BeanReference(type = AssetCategoryPersistence.class)
2008 protected AssetCategoryPersistence assetCategoryPersistence;
2009 @BeanReference(type = AssetCategoryFinder.class)
2010 protected AssetCategoryFinder assetCategoryFinder;
2011 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
2012 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
2013 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
2014 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
2015 @BeanReference(type = AssetEntryPersistence.class)
2016 protected AssetEntryPersistence assetEntryPersistence;
2017 @BeanReference(type = AssetEntryFinder.class)
2018 protected AssetEntryFinder assetEntryFinder;
2019 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
2020 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
2021 @BeanReference(type = AssetLinkPersistence.class)
2022 protected AssetLinkPersistence assetLinkPersistence;
2023 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
2024 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
2025 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
2026 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
2027 @BeanReference(type = AssetTagPersistence.class)
2028 protected AssetTagPersistence assetTagPersistence;
2029 @BeanReference(type = AssetTagFinder.class)
2030 protected AssetTagFinder assetTagFinder;
2031 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
2032 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
2033 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
2034 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
2035 @BeanReference(type = DDMStructurePersistence.class)
2036 protected DDMStructurePersistence ddmStructurePersistence;
2037 @BeanReference(type = DDMStructureFinder.class)
2038 protected DDMStructureFinder ddmStructureFinder;
2039 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
2040 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
2041 @BeanReference(type = ExpandoRowPersistence.class)
2042 protected ExpandoRowPersistence expandoRowPersistence;
2043 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoTableLocalService.class)
2044 protected com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService;
2045 @BeanReference(type = ExpandoTablePersistence.class)
2046 protected ExpandoTablePersistence expandoTablePersistence;
2047 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
2048 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
2049 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
2050 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
2051 @BeanReference(type = TrashEntryPersistence.class)
2052 protected TrashEntryPersistence trashEntryPersistence;
2053 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
2054 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
2055 private String _beanIdentifier;
2056 }