001
014
015 package com.liferay.portlet.documentlibrary.service.base;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.bean.IdentifiableBean;
021 import com.liferay.portal.kernel.dao.db.DB;
022 import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
023 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025 import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery;
026 import com.liferay.portal.kernel.dao.orm.DefaultActionableDynamicQuery;
027 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
028 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
029 import com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery;
030 import com.liferay.portal.kernel.dao.orm.Projection;
031 import com.liferay.portal.kernel.dao.orm.Property;
032 import com.liferay.portal.kernel.dao.orm.PropertyFactoryUtil;
033 import com.liferay.portal.kernel.exception.PortalException;
034 import com.liferay.portal.kernel.exception.SystemException;
035 import com.liferay.portal.kernel.lar.ExportImportHelperUtil;
036 import com.liferay.portal.kernel.lar.ManifestSummary;
037 import com.liferay.portal.kernel.lar.PortletDataContext;
038 import com.liferay.portal.kernel.lar.StagedModelDataHandler;
039 import com.liferay.portal.kernel.lar.StagedModelDataHandlerRegistryUtil;
040 import com.liferay.portal.kernel.lar.StagedModelDataHandlerUtil;
041 import com.liferay.portal.kernel.lar.StagedModelType;
042 import com.liferay.portal.kernel.search.Indexable;
043 import com.liferay.portal.kernel.search.IndexableType;
044 import com.liferay.portal.kernel.util.OrderByComparator;
045 import com.liferay.portal.model.PersistedModel;
046 import com.liferay.portal.service.BaseLocalServiceImpl;
047 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
048 import com.liferay.portal.service.persistence.UserFinder;
049 import com.liferay.portal.service.persistence.UserPersistence;
050 import com.liferay.portal.util.PortalUtil;
051
052 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
053 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
054 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
055 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
056 import com.liferay.portlet.documentlibrary.model.DLFileShortcut;
057 import com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService;
058 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
059 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
060 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
061 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
062 import com.liferay.portlet.trash.service.persistence.TrashVersionPersistence;
063
064 import java.io.Serializable;
065
066 import java.util.List;
067
068 import javax.sql.DataSource;
069
070
082 @ProviderType
083 public abstract class DLFileShortcutLocalServiceBaseImpl
084 extends BaseLocalServiceImpl implements DLFileShortcutLocalService,
085 IdentifiableBean {
086
091
092
098 @Indexable(type = IndexableType.REINDEX)
099 @Override
100 public DLFileShortcut addDLFileShortcut(DLFileShortcut dlFileShortcut) {
101 dlFileShortcut.setNew(true);
102
103 return dlFileShortcutPersistence.update(dlFileShortcut);
104 }
105
106
112 @Override
113 public DLFileShortcut createDLFileShortcut(long fileShortcutId) {
114 return dlFileShortcutPersistence.create(fileShortcutId);
115 }
116
117
124 @Indexable(type = IndexableType.DELETE)
125 @Override
126 public DLFileShortcut deleteDLFileShortcut(long fileShortcutId)
127 throws PortalException {
128 return dlFileShortcutPersistence.remove(fileShortcutId);
129 }
130
131
137 @Indexable(type = IndexableType.DELETE)
138 @Override
139 public DLFileShortcut deleteDLFileShortcut(DLFileShortcut dlFileShortcut) {
140 return dlFileShortcutPersistence.remove(dlFileShortcut);
141 }
142
143 @Override
144 public DynamicQuery dynamicQuery() {
145 Class<?> clazz = getClass();
146
147 return DynamicQueryFactoryUtil.forClass(DLFileShortcut.class,
148 clazz.getClassLoader());
149 }
150
151
157 @Override
158 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) {
159 return dlFileShortcutPersistence.findWithDynamicQuery(dynamicQuery);
160 }
161
162
174 @Override
175 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
176 int end) {
177 return dlFileShortcutPersistence.findWithDynamicQuery(dynamicQuery,
178 start, end);
179 }
180
181
194 @Override
195 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
196 int end, OrderByComparator<T> orderByComparator) {
197 return dlFileShortcutPersistence.findWithDynamicQuery(dynamicQuery,
198 start, end, orderByComparator);
199 }
200
201
207 @Override
208 public long dynamicQueryCount(DynamicQuery dynamicQuery) {
209 return dlFileShortcutPersistence.countWithDynamicQuery(dynamicQuery);
210 }
211
212
219 @Override
220 public long dynamicQueryCount(DynamicQuery dynamicQuery,
221 Projection projection) {
222 return dlFileShortcutPersistence.countWithDynamicQuery(dynamicQuery,
223 projection);
224 }
225
226 @Override
227 public DLFileShortcut fetchDLFileShortcut(long fileShortcutId) {
228 return dlFileShortcutPersistence.fetchByPrimaryKey(fileShortcutId);
229 }
230
231
238 @Override
239 public DLFileShortcut fetchDLFileShortcutByUuidAndGroupId(String uuid,
240 long groupId) {
241 return dlFileShortcutPersistence.fetchByUUID_G(uuid, groupId);
242 }
243
244
251 @Override
252 public DLFileShortcut getDLFileShortcut(long fileShortcutId)
253 throws PortalException {
254 return dlFileShortcutPersistence.findByPrimaryKey(fileShortcutId);
255 }
256
257 @Override
258 public ActionableDynamicQuery getActionableDynamicQuery() {
259 ActionableDynamicQuery actionableDynamicQuery = new DefaultActionableDynamicQuery();
260
261 actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalServiceUtil.getService());
262 actionableDynamicQuery.setClass(DLFileShortcut.class);
263 actionableDynamicQuery.setClassLoader(getClassLoader());
264
265 actionableDynamicQuery.setPrimaryKeyPropertyName("fileShortcutId");
266
267 return actionableDynamicQuery;
268 }
269
270 protected void initActionableDynamicQuery(
271 ActionableDynamicQuery actionableDynamicQuery) {
272 actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalServiceUtil.getService());
273 actionableDynamicQuery.setClass(DLFileShortcut.class);
274 actionableDynamicQuery.setClassLoader(getClassLoader());
275
276 actionableDynamicQuery.setPrimaryKeyPropertyName("fileShortcutId");
277 }
278
279 @Override
280 public ExportActionableDynamicQuery getExportActionableDynamicQuery(
281 final PortletDataContext portletDataContext) {
282 final ExportActionableDynamicQuery exportActionableDynamicQuery = new ExportActionableDynamicQuery() {
283 @Override
284 public long performCount() throws PortalException {
285 ManifestSummary manifestSummary = portletDataContext.getManifestSummary();
286
287 StagedModelType stagedModelType = getStagedModelType();
288
289 long modelAdditionCount = super.performCount();
290
291 manifestSummary.addModelAdditionCount(stagedModelType.toString(),
292 modelAdditionCount);
293
294 long modelDeletionCount = ExportImportHelperUtil.getModelDeletionCount(portletDataContext,
295 stagedModelType);
296
297 manifestSummary.addModelDeletionCount(stagedModelType.toString(),
298 modelDeletionCount);
299
300 return modelAdditionCount;
301 }
302 };
303
304 initActionableDynamicQuery(exportActionableDynamicQuery);
305
306 exportActionableDynamicQuery.setAddCriteriaMethod(new ActionableDynamicQuery.AddCriteriaMethod() {
307 @Override
308 public void addCriteria(DynamicQuery dynamicQuery) {
309 portletDataContext.addDateRangeCriteria(dynamicQuery,
310 "modifiedDate");
311
312 StagedModelDataHandler<?> stagedModelDataHandler = StagedModelDataHandlerRegistryUtil.getStagedModelDataHandler(DLFileShortcut.class.getName());
313
314 Property workflowStatusProperty = PropertyFactoryUtil.forName(
315 "status");
316
317 dynamicQuery.add(workflowStatusProperty.in(
318 stagedModelDataHandler.getExportableStatuses()));
319 }
320 });
321
322 exportActionableDynamicQuery.setCompanyId(portletDataContext.getCompanyId());
323
324 exportActionableDynamicQuery.setGroupId(portletDataContext.getScopeGroupId());
325
326 exportActionableDynamicQuery.setPerformActionMethod(new ActionableDynamicQuery.PerformActionMethod() {
327 @Override
328 public void performAction(Object object)
329 throws PortalException {
330 DLFileShortcut stagedModel = (DLFileShortcut)object;
331
332 StagedModelDataHandlerUtil.exportStagedModel(portletDataContext,
333 stagedModel);
334 }
335 });
336 exportActionableDynamicQuery.setStagedModelType(new StagedModelType(
337 PortalUtil.getClassNameId(DLFileShortcut.class.getName())));
338
339 return exportActionableDynamicQuery;
340 }
341
342
345 @Override
346 public PersistedModel deletePersistedModel(PersistedModel persistedModel)
347 throws PortalException {
348 return dlFileShortcutLocalService.deleteDLFileShortcut((DLFileShortcut)persistedModel);
349 }
350
351 @Override
352 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
353 throws PortalException {
354 return dlFileShortcutPersistence.findByPrimaryKey(primaryKeyObj);
355 }
356
357
364 @Override
365 public List<DLFileShortcut> getDLFileShortcutsByUuidAndCompanyId(
366 String uuid, long companyId) {
367 return dlFileShortcutPersistence.findByUuid_C(uuid, companyId);
368 }
369
370
380 @Override
381 public List<DLFileShortcut> getDLFileShortcutsByUuidAndCompanyId(
382 String uuid, long companyId, int start, int end,
383 OrderByComparator<DLFileShortcut> orderByComparator) {
384 return dlFileShortcutPersistence.findByUuid_C(uuid, companyId, start,
385 end, orderByComparator);
386 }
387
388
396 @Override
397 public DLFileShortcut getDLFileShortcutByUuidAndGroupId(String uuid,
398 long groupId) throws PortalException {
399 return dlFileShortcutPersistence.findByUUID_G(uuid, groupId);
400 }
401
402
413 @Override
414 public List<DLFileShortcut> getDLFileShortcuts(int start, int end) {
415 return dlFileShortcutPersistence.findAll(start, end);
416 }
417
418
423 @Override
424 public int getDLFileShortcutsCount() {
425 return dlFileShortcutPersistence.countAll();
426 }
427
428
434 @Indexable(type = IndexableType.REINDEX)
435 @Override
436 public DLFileShortcut updateDLFileShortcut(DLFileShortcut dlFileShortcut) {
437 return dlFileShortcutPersistence.update(dlFileShortcut);
438 }
439
440
445 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
446 return dlFileShortcutLocalService;
447 }
448
449
454 public void setDLFileShortcutLocalService(
455 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
456 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
457 }
458
459
464 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
465 return dlFileShortcutService;
466 }
467
468
473 public void setDLFileShortcutService(
474 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
475 this.dlFileShortcutService = dlFileShortcutService;
476 }
477
478
483 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
484 return dlFileShortcutPersistence;
485 }
486
487
492 public void setDLFileShortcutPersistence(
493 DLFileShortcutPersistence dlFileShortcutPersistence) {
494 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
495 }
496
497
502 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
503 return counterLocalService;
504 }
505
506
511 public void setCounterLocalService(
512 com.liferay.counter.service.CounterLocalService counterLocalService) {
513 this.counterLocalService = counterLocalService;
514 }
515
516
521 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
522 return resourceLocalService;
523 }
524
525
530 public void setResourceLocalService(
531 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
532 this.resourceLocalService = resourceLocalService;
533 }
534
535
540 public com.liferay.portal.service.UserLocalService getUserLocalService() {
541 return userLocalService;
542 }
543
544
549 public void setUserLocalService(
550 com.liferay.portal.service.UserLocalService userLocalService) {
551 this.userLocalService = userLocalService;
552 }
553
554
559 public com.liferay.portal.service.UserService getUserService() {
560 return userService;
561 }
562
563
568 public void setUserService(
569 com.liferay.portal.service.UserService userService) {
570 this.userService = userService;
571 }
572
573
578 public UserPersistence getUserPersistence() {
579 return userPersistence;
580 }
581
582
587 public void setUserPersistence(UserPersistence userPersistence) {
588 this.userPersistence = userPersistence;
589 }
590
591
596 public UserFinder getUserFinder() {
597 return userFinder;
598 }
599
600
605 public void setUserFinder(UserFinder userFinder) {
606 this.userFinder = userFinder;
607 }
608
609
614 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
615 return assetEntryLocalService;
616 }
617
618
623 public void setAssetEntryLocalService(
624 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
625 this.assetEntryLocalService = assetEntryLocalService;
626 }
627
628
633 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
634 return assetEntryService;
635 }
636
637
642 public void setAssetEntryService(
643 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
644 this.assetEntryService = assetEntryService;
645 }
646
647
652 public AssetEntryPersistence getAssetEntryPersistence() {
653 return assetEntryPersistence;
654 }
655
656
661 public void setAssetEntryPersistence(
662 AssetEntryPersistence assetEntryPersistence) {
663 this.assetEntryPersistence = assetEntryPersistence;
664 }
665
666
671 public AssetEntryFinder getAssetEntryFinder() {
672 return assetEntryFinder;
673 }
674
675
680 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
681 this.assetEntryFinder = assetEntryFinder;
682 }
683
684
689 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
690 return assetTagLocalService;
691 }
692
693
698 public void setAssetTagLocalService(
699 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
700 this.assetTagLocalService = assetTagLocalService;
701 }
702
703
708 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
709 return assetTagService;
710 }
711
712
717 public void setAssetTagService(
718 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
719 this.assetTagService = assetTagService;
720 }
721
722
727 public AssetTagPersistence getAssetTagPersistence() {
728 return assetTagPersistence;
729 }
730
731
736 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
737 this.assetTagPersistence = assetTagPersistence;
738 }
739
740
745 public AssetTagFinder getAssetTagFinder() {
746 return assetTagFinder;
747 }
748
749
754 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
755 this.assetTagFinder = assetTagFinder;
756 }
757
758
763 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
764 return dlAppLocalService;
765 }
766
767
772 public void setDLAppLocalService(
773 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
774 this.dlAppLocalService = dlAppLocalService;
775 }
776
777
782 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
783 return dlAppService;
784 }
785
786
791 public void setDLAppService(
792 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
793 this.dlAppService = dlAppService;
794 }
795
796
801 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
802 return trashEntryLocalService;
803 }
804
805
810 public void setTrashEntryLocalService(
811 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
812 this.trashEntryLocalService = trashEntryLocalService;
813 }
814
815
820 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
821 return trashEntryService;
822 }
823
824
829 public void setTrashEntryService(
830 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
831 this.trashEntryService = trashEntryService;
832 }
833
834
839 public TrashEntryPersistence getTrashEntryPersistence() {
840 return trashEntryPersistence;
841 }
842
843
848 public void setTrashEntryPersistence(
849 TrashEntryPersistence trashEntryPersistence) {
850 this.trashEntryPersistence = trashEntryPersistence;
851 }
852
853
858 public com.liferay.portlet.trash.service.TrashVersionLocalService getTrashVersionLocalService() {
859 return trashVersionLocalService;
860 }
861
862
867 public void setTrashVersionLocalService(
868 com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService) {
869 this.trashVersionLocalService = trashVersionLocalService;
870 }
871
872
877 public TrashVersionPersistence getTrashVersionPersistence() {
878 return trashVersionPersistence;
879 }
880
881
886 public void setTrashVersionPersistence(
887 TrashVersionPersistence trashVersionPersistence) {
888 this.trashVersionPersistence = trashVersionPersistence;
889 }
890
891
896 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
897 return dlFolderLocalService;
898 }
899
900
905 public void setDLFolderLocalService(
906 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
907 this.dlFolderLocalService = dlFolderLocalService;
908 }
909
910
915 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
916 return dlFolderService;
917 }
918
919
924 public void setDLFolderService(
925 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
926 this.dlFolderService = dlFolderService;
927 }
928
929
934 public DLFolderPersistence getDLFolderPersistence() {
935 return dlFolderPersistence;
936 }
937
938
943 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
944 this.dlFolderPersistence = dlFolderPersistence;
945 }
946
947
952 public DLFolderFinder getDLFolderFinder() {
953 return dlFolderFinder;
954 }
955
956
961 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
962 this.dlFolderFinder = dlFolderFinder;
963 }
964
965 public void afterPropertiesSet() {
966 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLFileShortcut",
967 dlFileShortcutLocalService);
968 }
969
970 public void destroy() {
971 persistedModelLocalServiceRegistry.unregister(
972 "com.liferay.portlet.documentlibrary.model.DLFileShortcut");
973 }
974
975
980 @Override
981 public String getBeanIdentifier() {
982 return _beanIdentifier;
983 }
984
985
990 @Override
991 public void setBeanIdentifier(String beanIdentifier) {
992 _beanIdentifier = beanIdentifier;
993 }
994
995 protected Class<?> getModelClass() {
996 return DLFileShortcut.class;
997 }
998
999 protected String getModelClassName() {
1000 return DLFileShortcut.class.getName();
1001 }
1002
1003
1008 protected void runSQL(String sql) {
1009 try {
1010 DataSource dataSource = dlFileShortcutPersistence.getDataSource();
1011
1012 DB db = DBFactoryUtil.getDB();
1013
1014 sql = db.buildSQL(sql);
1015 sql = PortalUtil.transformSQL(sql);
1016
1017 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1018 sql, new int[0]);
1019
1020 sqlUpdate.update();
1021 }
1022 catch (Exception e) {
1023 throw new SystemException(e);
1024 }
1025 }
1026
1027 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1028 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
1029 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1030 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1031 @BeanReference(type = DLFileShortcutPersistence.class)
1032 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1033 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1034 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1035 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1036 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1037 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1038 protected com.liferay.portal.service.UserLocalService userLocalService;
1039 @BeanReference(type = com.liferay.portal.service.UserService.class)
1040 protected com.liferay.portal.service.UserService userService;
1041 @BeanReference(type = UserPersistence.class)
1042 protected UserPersistence userPersistence;
1043 @BeanReference(type = UserFinder.class)
1044 protected UserFinder userFinder;
1045 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1046 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1047 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1048 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1049 @BeanReference(type = AssetEntryPersistence.class)
1050 protected AssetEntryPersistence assetEntryPersistence;
1051 @BeanReference(type = AssetEntryFinder.class)
1052 protected AssetEntryFinder assetEntryFinder;
1053 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1054 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1055 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1056 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1057 @BeanReference(type = AssetTagPersistence.class)
1058 protected AssetTagPersistence assetTagPersistence;
1059 @BeanReference(type = AssetTagFinder.class)
1060 protected AssetTagFinder assetTagFinder;
1061 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1062 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1063 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1064 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1065 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1066 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1067 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1068 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1069 @BeanReference(type = TrashEntryPersistence.class)
1070 protected TrashEntryPersistence trashEntryPersistence;
1071 @BeanReference(type = com.liferay.portlet.trash.service.TrashVersionLocalService.class)
1072 protected com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService;
1073 @BeanReference(type = TrashVersionPersistence.class)
1074 protected TrashVersionPersistence trashVersionPersistence;
1075 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1076 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1077 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1078 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1079 @BeanReference(type = DLFolderPersistence.class)
1080 protected DLFolderPersistence dlFolderPersistence;
1081 @BeanReference(type = DLFolderFinder.class)
1082 protected DLFolderFinder dlFolderFinder;
1083 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1084 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1085 private String _beanIdentifier;
1086 }