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.Criterion;
027 import com.liferay.portal.kernel.dao.orm.DefaultActionableDynamicQuery;
028 import com.liferay.portal.kernel.dao.orm.Disjunction;
029 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
030 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
031 import com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery;
032 import com.liferay.portal.kernel.dao.orm.Projection;
033 import com.liferay.portal.kernel.dao.orm.Property;
034 import com.liferay.portal.kernel.dao.orm.PropertyFactoryUtil;
035 import com.liferay.portal.kernel.dao.orm.RestrictionsFactoryUtil;
036 import com.liferay.portal.kernel.exception.PortalException;
037 import com.liferay.portal.kernel.exception.SystemException;
038 import com.liferay.portal.kernel.search.Indexable;
039 import com.liferay.portal.kernel.search.IndexableType;
040 import com.liferay.portal.kernel.util.OrderByComparator;
041 import com.liferay.portal.kernel.workflow.WorkflowConstants;
042 import com.liferay.portal.model.PersistedModel;
043 import com.liferay.portal.service.BaseLocalServiceImpl;
044 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
045 import com.liferay.portal.service.persistence.UserFinder;
046 import com.liferay.portal.service.persistence.UserPersistence;
047 import com.liferay.portal.util.PortalUtil;
048
049 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
050 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
051 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
052 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
053 import com.liferay.portlet.documentlibrary.model.DLFileShortcut;
054 import com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService;
055 import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
056 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
057 import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
058 import com.liferay.portlet.exportimport.lar.ExportImportHelperUtil;
059 import com.liferay.portlet.exportimport.lar.ManifestSummary;
060 import com.liferay.portlet.exportimport.lar.PortletDataContext;
061 import com.liferay.portlet.exportimport.lar.StagedModelDataHandler;
062 import com.liferay.portlet.exportimport.lar.StagedModelDataHandlerRegistryUtil;
063 import com.liferay.portlet.exportimport.lar.StagedModelDataHandlerUtil;
064 import com.liferay.portlet.exportimport.lar.StagedModelType;
065 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
066 import com.liferay.portlet.trash.service.persistence.TrashVersionPersistence;
067
068 import java.io.Serializable;
069
070 import java.util.List;
071
072 import javax.sql.DataSource;
073
074
086 @ProviderType
087 public abstract class DLFileShortcutLocalServiceBaseImpl
088 extends BaseLocalServiceImpl implements DLFileShortcutLocalService,
089 IdentifiableBean {
090
095
096
102 @Indexable(type = IndexableType.REINDEX)
103 @Override
104 public DLFileShortcut addDLFileShortcut(DLFileShortcut dlFileShortcut) {
105 dlFileShortcut.setNew(true);
106
107 return dlFileShortcutPersistence.update(dlFileShortcut);
108 }
109
110
116 @Override
117 public DLFileShortcut createDLFileShortcut(long fileShortcutId) {
118 return dlFileShortcutPersistence.create(fileShortcutId);
119 }
120
121
128 @Indexable(type = IndexableType.DELETE)
129 @Override
130 public DLFileShortcut deleteDLFileShortcut(long fileShortcutId)
131 throws PortalException {
132 return dlFileShortcutPersistence.remove(fileShortcutId);
133 }
134
135
141 @Indexable(type = IndexableType.DELETE)
142 @Override
143 public DLFileShortcut deleteDLFileShortcut(DLFileShortcut dlFileShortcut) {
144 return dlFileShortcutPersistence.remove(dlFileShortcut);
145 }
146
147 @Override
148 public DynamicQuery dynamicQuery() {
149 Class<?> clazz = getClass();
150
151 return DynamicQueryFactoryUtil.forClass(DLFileShortcut.class,
152 clazz.getClassLoader());
153 }
154
155
161 @Override
162 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) {
163 return dlFileShortcutPersistence.findWithDynamicQuery(dynamicQuery);
164 }
165
166
178 @Override
179 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
180 int end) {
181 return dlFileShortcutPersistence.findWithDynamicQuery(dynamicQuery,
182 start, end);
183 }
184
185
198 @Override
199 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
200 int end, OrderByComparator<T> orderByComparator) {
201 return dlFileShortcutPersistence.findWithDynamicQuery(dynamicQuery,
202 start, end, orderByComparator);
203 }
204
205
211 @Override
212 public long dynamicQueryCount(DynamicQuery dynamicQuery) {
213 return dlFileShortcutPersistence.countWithDynamicQuery(dynamicQuery);
214 }
215
216
223 @Override
224 public long dynamicQueryCount(DynamicQuery dynamicQuery,
225 Projection projection) {
226 return dlFileShortcutPersistence.countWithDynamicQuery(dynamicQuery,
227 projection);
228 }
229
230 @Override
231 public DLFileShortcut fetchDLFileShortcut(long fileShortcutId) {
232 return dlFileShortcutPersistence.fetchByPrimaryKey(fileShortcutId);
233 }
234
235
242 @Override
243 public DLFileShortcut fetchDLFileShortcutByUuidAndGroupId(String uuid,
244 long groupId) {
245 return dlFileShortcutPersistence.fetchByUUID_G(uuid, groupId);
246 }
247
248
255 @Override
256 public DLFileShortcut getDLFileShortcut(long fileShortcutId)
257 throws PortalException {
258 return dlFileShortcutPersistence.findByPrimaryKey(fileShortcutId);
259 }
260
261 @Override
262 public ActionableDynamicQuery getActionableDynamicQuery() {
263 ActionableDynamicQuery actionableDynamicQuery = new DefaultActionableDynamicQuery();
264
265 actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalServiceUtil.getService());
266 actionableDynamicQuery.setClass(DLFileShortcut.class);
267 actionableDynamicQuery.setClassLoader(getClassLoader());
268
269 actionableDynamicQuery.setPrimaryKeyPropertyName("fileShortcutId");
270
271 return actionableDynamicQuery;
272 }
273
274 protected void initActionableDynamicQuery(
275 ActionableDynamicQuery actionableDynamicQuery) {
276 actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalServiceUtil.getService());
277 actionableDynamicQuery.setClass(DLFileShortcut.class);
278 actionableDynamicQuery.setClassLoader(getClassLoader());
279
280 actionableDynamicQuery.setPrimaryKeyPropertyName("fileShortcutId");
281 }
282
283 @Override
284 public ExportActionableDynamicQuery getExportActionableDynamicQuery(
285 final PortletDataContext portletDataContext) {
286 final ExportActionableDynamicQuery exportActionableDynamicQuery = new ExportActionableDynamicQuery() {
287 @Override
288 public long performCount() throws PortalException {
289 ManifestSummary manifestSummary = portletDataContext.getManifestSummary();
290
291 StagedModelType stagedModelType = getStagedModelType();
292
293 long modelAdditionCount = super.performCount();
294
295 manifestSummary.addModelAdditionCount(stagedModelType,
296 modelAdditionCount);
297
298 long modelDeletionCount = ExportImportHelperUtil.getModelDeletionCount(portletDataContext,
299 stagedModelType);
300
301 manifestSummary.addModelDeletionCount(stagedModelType,
302 modelDeletionCount);
303
304 return modelAdditionCount;
305 }
306 };
307
308 initActionableDynamicQuery(exportActionableDynamicQuery);
309
310 exportActionableDynamicQuery.setAddCriteriaMethod(new ActionableDynamicQuery.AddCriteriaMethod() {
311 @Override
312 public void addCriteria(DynamicQuery dynamicQuery) {
313 Criterion modifiedDateCriterion = portletDataContext.getDateRangeCriteria(
314 "modifiedDate");
315 Criterion statusDateCriterion = portletDataContext.getDateRangeCriteria(
316 "statusDate");
317
318 if ((modifiedDateCriterion != null) &&
319 (statusDateCriterion != null)) {
320 Disjunction disjunction = RestrictionsFactoryUtil.disjunction();
321
322 disjunction.add(modifiedDateCriterion);
323 disjunction.add(statusDateCriterion);
324
325 dynamicQuery.add(disjunction);
326 }
327
328 Property workflowStatusProperty = PropertyFactoryUtil.forName(
329 "status");
330
331 if (portletDataContext.isInitialPublication()) {
332 dynamicQuery.add(workflowStatusProperty.ne(
333 WorkflowConstants.STATUS_IN_TRASH));
334 }
335 else {
336 StagedModelDataHandler<?> stagedModelDataHandler = StagedModelDataHandlerRegistryUtil.getStagedModelDataHandler(DLFileShortcut.class.getName());
337
338 dynamicQuery.add(workflowStatusProperty.in(
339 stagedModelDataHandler.getExportableStatuses()));
340 }
341 }
342 });
343
344 exportActionableDynamicQuery.setCompanyId(portletDataContext.getCompanyId());
345
346 exportActionableDynamicQuery.setGroupId(portletDataContext.getScopeGroupId());
347
348 exportActionableDynamicQuery.setPerformActionMethod(new ActionableDynamicQuery.PerformActionMethod<DLFileShortcut>() {
349 @Override
350 public void performAction(DLFileShortcut dlFileShortcut)
351 throws PortalException {
352 StagedModelDataHandlerUtil.exportStagedModel(portletDataContext,
353 dlFileShortcut);
354 }
355 });
356 exportActionableDynamicQuery.setStagedModelType(new StagedModelType(
357 PortalUtil.getClassNameId(DLFileShortcut.class.getName())));
358
359 return exportActionableDynamicQuery;
360 }
361
362
365 @Override
366 public PersistedModel deletePersistedModel(PersistedModel persistedModel)
367 throws PortalException {
368 return dlFileShortcutLocalService.deleteDLFileShortcut((DLFileShortcut)persistedModel);
369 }
370
371 @Override
372 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
373 throws PortalException {
374 return dlFileShortcutPersistence.findByPrimaryKey(primaryKeyObj);
375 }
376
377
384 @Override
385 public List<DLFileShortcut> getDLFileShortcutsByUuidAndCompanyId(
386 String uuid, long companyId) {
387 return dlFileShortcutPersistence.findByUuid_C(uuid, companyId);
388 }
389
390
400 @Override
401 public List<DLFileShortcut> getDLFileShortcutsByUuidAndCompanyId(
402 String uuid, long companyId, int start, int end,
403 OrderByComparator<DLFileShortcut> orderByComparator) {
404 return dlFileShortcutPersistence.findByUuid_C(uuid, companyId, start,
405 end, orderByComparator);
406 }
407
408
416 @Override
417 public DLFileShortcut getDLFileShortcutByUuidAndGroupId(String uuid,
418 long groupId) throws PortalException {
419 return dlFileShortcutPersistence.findByUUID_G(uuid, groupId);
420 }
421
422
433 @Override
434 public List<DLFileShortcut> getDLFileShortcuts(int start, int end) {
435 return dlFileShortcutPersistence.findAll(start, end);
436 }
437
438
443 @Override
444 public int getDLFileShortcutsCount() {
445 return dlFileShortcutPersistence.countAll();
446 }
447
448
454 @Indexable(type = IndexableType.REINDEX)
455 @Override
456 public DLFileShortcut updateDLFileShortcut(DLFileShortcut dlFileShortcut) {
457 return dlFileShortcutPersistence.update(dlFileShortcut);
458 }
459
460
465 public DLFileShortcutLocalService getDLFileShortcutLocalService() {
466 return dlFileShortcutLocalService;
467 }
468
469
474 public void setDLFileShortcutLocalService(
475 DLFileShortcutLocalService dlFileShortcutLocalService) {
476 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
477 }
478
479
484 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
485 return dlFileShortcutService;
486 }
487
488
493 public void setDLFileShortcutService(
494 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
495 this.dlFileShortcutService = dlFileShortcutService;
496 }
497
498
503 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
504 return dlFileShortcutPersistence;
505 }
506
507
512 public void setDLFileShortcutPersistence(
513 DLFileShortcutPersistence dlFileShortcutPersistence) {
514 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
515 }
516
517
522 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
523 return counterLocalService;
524 }
525
526
531 public void setCounterLocalService(
532 com.liferay.counter.service.CounterLocalService counterLocalService) {
533 this.counterLocalService = counterLocalService;
534 }
535
536
541 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
542 return resourceLocalService;
543 }
544
545
550 public void setResourceLocalService(
551 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
552 this.resourceLocalService = resourceLocalService;
553 }
554
555
560 public com.liferay.portal.service.UserLocalService getUserLocalService() {
561 return userLocalService;
562 }
563
564
569 public void setUserLocalService(
570 com.liferay.portal.service.UserLocalService userLocalService) {
571 this.userLocalService = userLocalService;
572 }
573
574
579 public com.liferay.portal.service.UserService getUserService() {
580 return userService;
581 }
582
583
588 public void setUserService(
589 com.liferay.portal.service.UserService userService) {
590 this.userService = userService;
591 }
592
593
598 public UserPersistence getUserPersistence() {
599 return userPersistence;
600 }
601
602
607 public void setUserPersistence(UserPersistence userPersistence) {
608 this.userPersistence = userPersistence;
609 }
610
611
616 public UserFinder getUserFinder() {
617 return userFinder;
618 }
619
620
625 public void setUserFinder(UserFinder userFinder) {
626 this.userFinder = userFinder;
627 }
628
629
634 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
635 return assetEntryLocalService;
636 }
637
638
643 public void setAssetEntryLocalService(
644 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
645 this.assetEntryLocalService = assetEntryLocalService;
646 }
647
648
653 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
654 return assetEntryService;
655 }
656
657
662 public void setAssetEntryService(
663 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
664 this.assetEntryService = assetEntryService;
665 }
666
667
672 public AssetEntryPersistence getAssetEntryPersistence() {
673 return assetEntryPersistence;
674 }
675
676
681 public void setAssetEntryPersistence(
682 AssetEntryPersistence assetEntryPersistence) {
683 this.assetEntryPersistence = assetEntryPersistence;
684 }
685
686
691 public AssetEntryFinder getAssetEntryFinder() {
692 return assetEntryFinder;
693 }
694
695
700 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
701 this.assetEntryFinder = assetEntryFinder;
702 }
703
704
709 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
710 return assetTagLocalService;
711 }
712
713
718 public void setAssetTagLocalService(
719 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
720 this.assetTagLocalService = assetTagLocalService;
721 }
722
723
728 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
729 return assetTagService;
730 }
731
732
737 public void setAssetTagService(
738 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
739 this.assetTagService = assetTagService;
740 }
741
742
747 public AssetTagPersistence getAssetTagPersistence() {
748 return assetTagPersistence;
749 }
750
751
756 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
757 this.assetTagPersistence = assetTagPersistence;
758 }
759
760
765 public AssetTagFinder getAssetTagFinder() {
766 return assetTagFinder;
767 }
768
769
774 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
775 this.assetTagFinder = assetTagFinder;
776 }
777
778
783 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
784 return dlAppLocalService;
785 }
786
787
792 public void setDLAppLocalService(
793 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
794 this.dlAppLocalService = dlAppLocalService;
795 }
796
797
802 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
803 return dlAppService;
804 }
805
806
811 public void setDLAppService(
812 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
813 this.dlAppService = dlAppService;
814 }
815
816
821 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
822 return trashEntryLocalService;
823 }
824
825
830 public void setTrashEntryLocalService(
831 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
832 this.trashEntryLocalService = trashEntryLocalService;
833 }
834
835
840 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
841 return trashEntryService;
842 }
843
844
849 public void setTrashEntryService(
850 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
851 this.trashEntryService = trashEntryService;
852 }
853
854
859 public TrashEntryPersistence getTrashEntryPersistence() {
860 return trashEntryPersistence;
861 }
862
863
868 public void setTrashEntryPersistence(
869 TrashEntryPersistence trashEntryPersistence) {
870 this.trashEntryPersistence = trashEntryPersistence;
871 }
872
873
878 public com.liferay.portlet.trash.service.TrashVersionLocalService getTrashVersionLocalService() {
879 return trashVersionLocalService;
880 }
881
882
887 public void setTrashVersionLocalService(
888 com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService) {
889 this.trashVersionLocalService = trashVersionLocalService;
890 }
891
892
897 public TrashVersionPersistence getTrashVersionPersistence() {
898 return trashVersionPersistence;
899 }
900
901
906 public void setTrashVersionPersistence(
907 TrashVersionPersistence trashVersionPersistence) {
908 this.trashVersionPersistence = trashVersionPersistence;
909 }
910
911
916 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
917 return dlFolderLocalService;
918 }
919
920
925 public void setDLFolderLocalService(
926 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
927 this.dlFolderLocalService = dlFolderLocalService;
928 }
929
930
935 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
936 return dlFolderService;
937 }
938
939
944 public void setDLFolderService(
945 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
946 this.dlFolderService = dlFolderService;
947 }
948
949
954 public DLFolderPersistence getDLFolderPersistence() {
955 return dlFolderPersistence;
956 }
957
958
963 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
964 this.dlFolderPersistence = dlFolderPersistence;
965 }
966
967
972 public DLFolderFinder getDLFolderFinder() {
973 return dlFolderFinder;
974 }
975
976
981 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
982 this.dlFolderFinder = dlFolderFinder;
983 }
984
985 public void afterPropertiesSet() {
986 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLFileShortcut",
987 dlFileShortcutLocalService);
988 }
989
990 public void destroy() {
991 persistedModelLocalServiceRegistry.unregister(
992 "com.liferay.portlet.documentlibrary.model.DLFileShortcut");
993 }
994
995
1000 @Override
1001 public String getBeanIdentifier() {
1002 return _beanIdentifier;
1003 }
1004
1005
1010 @Override
1011 public void setBeanIdentifier(String beanIdentifier) {
1012 _beanIdentifier = beanIdentifier;
1013 }
1014
1015 protected Class<?> getModelClass() {
1016 return DLFileShortcut.class;
1017 }
1018
1019 protected String getModelClassName() {
1020 return DLFileShortcut.class.getName();
1021 }
1022
1023
1028 protected void runSQL(String sql) {
1029 try {
1030 DataSource dataSource = dlFileShortcutPersistence.getDataSource();
1031
1032 DB db = DBFactoryUtil.getDB();
1033
1034 sql = db.buildSQL(sql);
1035 sql = PortalUtil.transformSQL(sql);
1036
1037 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1038 sql, new int[0]);
1039
1040 sqlUpdate.update();
1041 }
1042 catch (Exception e) {
1043 throw new SystemException(e);
1044 }
1045 }
1046
1047 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
1048 protected DLFileShortcutLocalService dlFileShortcutLocalService;
1049 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
1050 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
1051 @BeanReference(type = DLFileShortcutPersistence.class)
1052 protected DLFileShortcutPersistence dlFileShortcutPersistence;
1053 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1054 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1055 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1056 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1057 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1058 protected com.liferay.portal.service.UserLocalService userLocalService;
1059 @BeanReference(type = com.liferay.portal.service.UserService.class)
1060 protected com.liferay.portal.service.UserService userService;
1061 @BeanReference(type = UserPersistence.class)
1062 protected UserPersistence userPersistence;
1063 @BeanReference(type = UserFinder.class)
1064 protected UserFinder userFinder;
1065 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1066 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1067 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1068 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1069 @BeanReference(type = AssetEntryPersistence.class)
1070 protected AssetEntryPersistence assetEntryPersistence;
1071 @BeanReference(type = AssetEntryFinder.class)
1072 protected AssetEntryFinder assetEntryFinder;
1073 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1074 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1075 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1076 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1077 @BeanReference(type = AssetTagPersistence.class)
1078 protected AssetTagPersistence assetTagPersistence;
1079 @BeanReference(type = AssetTagFinder.class)
1080 protected AssetTagFinder assetTagFinder;
1081 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1082 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1083 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1084 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1085 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1086 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1087 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1088 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1089 @BeanReference(type = TrashEntryPersistence.class)
1090 protected TrashEntryPersistence trashEntryPersistence;
1091 @BeanReference(type = com.liferay.portlet.trash.service.TrashVersionLocalService.class)
1092 protected com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService;
1093 @BeanReference(type = TrashVersionPersistence.class)
1094 protected TrashVersionPersistence trashVersionPersistence;
1095 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
1096 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
1097 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
1098 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
1099 @BeanReference(type = DLFolderPersistence.class)
1100 protected DLFolderPersistence dlFolderPersistence;
1101 @BeanReference(type = DLFolderFinder.class)
1102 protected DLFolderFinder dlFolderFinder;
1103 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1104 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1105 private String _beanIdentifier;
1106 }