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.messageboards.service.persistence.MBMessageFinder;
070 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
071 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
072
073 import java.io.Serializable;
074
075 import java.util.List;
076
077 import javax.sql.DataSource;
078
079
091 public abstract class DLFileEntryLocalServiceBaseImpl
092 extends BaseLocalServiceImpl implements DLFileEntryLocalService,
093 IdentifiableBean {
094
099
100
107 @Indexable(type = IndexableType.REINDEX)
108 @Override
109 public DLFileEntry addDLFileEntry(DLFileEntry dlFileEntry)
110 throws SystemException {
111 dlFileEntry.setNew(true);
112
113 return dlFileEntryPersistence.update(dlFileEntry);
114 }
115
116
122 @Override
123 public DLFileEntry createDLFileEntry(long fileEntryId) {
124 return dlFileEntryPersistence.create(fileEntryId);
125 }
126
127
135 @Indexable(type = IndexableType.DELETE)
136 @Override
137 public DLFileEntry deleteDLFileEntry(long fileEntryId)
138 throws PortalException, SystemException {
139 return dlFileEntryPersistence.remove(fileEntryId);
140 }
141
142
149 @Indexable(type = IndexableType.DELETE)
150 @Override
151 public DLFileEntry deleteDLFileEntry(DLFileEntry dlFileEntry)
152 throws SystemException {
153 return dlFileEntryPersistence.remove(dlFileEntry);
154 }
155
156 @Override
157 public DynamicQuery dynamicQuery() {
158 Class<?> clazz = getClass();
159
160 return DynamicQueryFactoryUtil.forClass(DLFileEntry.class,
161 clazz.getClassLoader());
162 }
163
164
171 @Override
172 @SuppressWarnings("rawtypes")
173 public List dynamicQuery(DynamicQuery dynamicQuery)
174 throws SystemException {
175 return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery);
176 }
177
178
191 @Override
192 @SuppressWarnings("rawtypes")
193 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
194 throws SystemException {
195 return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
196 end);
197 }
198
199
213 @Override
214 @SuppressWarnings("rawtypes")
215 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
216 OrderByComparator orderByComparator) throws SystemException {
217 return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
218 end, orderByComparator);
219 }
220
221
228 @Override
229 public long dynamicQueryCount(DynamicQuery dynamicQuery)
230 throws SystemException {
231 return dlFileEntryPersistence.countWithDynamicQuery(dynamicQuery);
232 }
233
234
242 @Override
243 public long dynamicQueryCount(DynamicQuery dynamicQuery,
244 Projection projection) throws SystemException {
245 return dlFileEntryPersistence.countWithDynamicQuery(dynamicQuery,
246 projection);
247 }
248
249 @Override
250 public DLFileEntry fetchDLFileEntry(long fileEntryId)
251 throws SystemException {
252 return dlFileEntryPersistence.fetchByPrimaryKey(fileEntryId);
253 }
254
255
263 @Override
264 public DLFileEntry fetchDLFileEntryByUuidAndCompanyId(String uuid,
265 long companyId) throws SystemException {
266 return dlFileEntryPersistence.fetchByUuid_C_First(uuid, companyId, null);
267 }
268
269
277 @Override
278 public DLFileEntry fetchDLFileEntryByUuidAndGroupId(String uuid,
279 long groupId) throws SystemException {
280 return dlFileEntryPersistence.fetchByUUID_G(uuid, groupId);
281 }
282
283
291 @Override
292 public DLFileEntry getDLFileEntry(long fileEntryId)
293 throws PortalException, SystemException {
294 return dlFileEntryPersistence.findByPrimaryKey(fileEntryId);
295 }
296
297 @Override
298 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
299 throws PortalException, SystemException {
300 return dlFileEntryPersistence.findByPrimaryKey(primaryKeyObj);
301 }
302
303
312 @Override
313 public DLFileEntry getDLFileEntryByUuidAndCompanyId(String uuid,
314 long companyId) throws PortalException, SystemException {
315 return dlFileEntryPersistence.findByUuid_C_First(uuid, companyId, null);
316 }
317
318
327 @Override
328 public DLFileEntry getDLFileEntryByUuidAndGroupId(String uuid, long groupId)
329 throws PortalException, SystemException {
330 return dlFileEntryPersistence.findByUUID_G(uuid, groupId);
331 }
332
333
345 @Override
346 public List<DLFileEntry> getDLFileEntries(int start, int end)
347 throws SystemException {
348 return dlFileEntryPersistence.findAll(start, end);
349 }
350
351
357 @Override
358 public int getDLFileEntriesCount() throws SystemException {
359 return dlFileEntryPersistence.countAll();
360 }
361
362
369 @Indexable(type = IndexableType.REINDEX)
370 @Override
371 public DLFileEntry updateDLFileEntry(DLFileEntry dlFileEntry)
372 throws SystemException {
373 return dlFileEntryPersistence.update(dlFileEntry);
374 }
375
376
381 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
382 return dlAppLocalService;
383 }
384
385
390 public void setDLAppLocalService(
391 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
392 this.dlAppLocalService = dlAppLocalService;
393 }
394
395
400 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
401 return dlAppService;
402 }
403
404
409 public void setDLAppService(
410 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
411 this.dlAppService = dlAppService;
412 }
413
414
419 public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
420 return dlAppHelperLocalService;
421 }
422
423
428 public void setDLAppHelperLocalService(
429 com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
430 this.dlAppHelperLocalService = dlAppHelperLocalService;
431 }
432
433
438 public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
439 return dlContentLocalService;
440 }
441
442
447 public void setDLContentLocalService(
448 com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
449 this.dlContentLocalService = dlContentLocalService;
450 }
451
452
457 public DLContentPersistence getDLContentPersistence() {
458 return dlContentPersistence;
459 }
460
461
466 public void setDLContentPersistence(
467 DLContentPersistence dlContentPersistence) {
468 this.dlContentPersistence = dlContentPersistence;
469 }
470
471
476 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
477 return dlFileEntryLocalService;
478 }
479
480
485 public void setDLFileEntryLocalService(
486 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
487 this.dlFileEntryLocalService = dlFileEntryLocalService;
488 }
489
490
495 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
496 return dlFileEntryService;
497 }
498
499
504 public void setDLFileEntryService(
505 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
506 this.dlFileEntryService = dlFileEntryService;
507 }
508
509
514 public DLFileEntryPersistence getDLFileEntryPersistence() {
515 return dlFileEntryPersistence;
516 }
517
518
523 public void setDLFileEntryPersistence(
524 DLFileEntryPersistence dlFileEntryPersistence) {
525 this.dlFileEntryPersistence = dlFileEntryPersistence;
526 }
527
528
533 public DLFileEntryFinder getDLFileEntryFinder() {
534 return dlFileEntryFinder;
535 }
536
537
542 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
543 this.dlFileEntryFinder = dlFileEntryFinder;
544 }
545
546
551 public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
552 return dlFileEntryMetadataLocalService;
553 }
554
555
560 public void setDLFileEntryMetadataLocalService(
561 com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
562 this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
563 }
564
565
570 public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
571 return dlFileEntryMetadataPersistence;
572 }
573
574
579 public void setDLFileEntryMetadataPersistence(
580 DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
581 this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
582 }
583
584
589 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
590 return dlFileEntryTypeLocalService;
591 }
592
593
598 public void setDLFileEntryTypeLocalService(
599 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
600 this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
601 }
602
603
608 public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
609 return dlFileEntryTypeService;
610 }
611
612
617 public void setDLFileEntryTypeService(
618 com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
619 this.dlFileEntryTypeService = dlFileEntryTypeService;
620 }
621
622
627 public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
628 return dlFileEntryTypePersistence;
629 }
630
631
636 public void setDLFileEntryTypePersistence(
637 DLFileEntryTypePersistence dlFileEntryTypePersistence) {
638 this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
639 }
640
641
646 public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
647 return dlFileEntryTypeFinder;
648 }
649
650
655 public void setDLFileEntryTypeFinder(
656 DLFileEntryTypeFinder dlFileEntryTypeFinder) {
657 this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
658 }
659
660
665 public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
666 return dlFileRankLocalService;
667 }
668
669
674 public void setDLFileRankLocalService(
675 com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
676 this.dlFileRankLocalService = dlFileRankLocalService;
677 }
678
679
684 public DLFileRankPersistence getDLFileRankPersistence() {
685 return dlFileRankPersistence;
686 }
687
688
693 public void setDLFileRankPersistence(
694 DLFileRankPersistence dlFileRankPersistence) {
695 this.dlFileRankPersistence = dlFileRankPersistence;
696 }
697
698
703 public DLFileRankFinder getDLFileRankFinder() {
704 return dlFileRankFinder;
705 }
706
707
712 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
713 this.dlFileRankFinder = dlFileRankFinder;
714 }
715
716
721 public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
722 return dlFileShortcutLocalService;
723 }
724
725
730 public void setDLFileShortcutLocalService(
731 com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
732 this.dlFileShortcutLocalService = dlFileShortcutLocalService;
733 }
734
735
740 public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
741 return dlFileShortcutService;
742 }
743
744
749 public void setDLFileShortcutService(
750 com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
751 this.dlFileShortcutService = dlFileShortcutService;
752 }
753
754
759 public DLFileShortcutPersistence getDLFileShortcutPersistence() {
760 return dlFileShortcutPersistence;
761 }
762
763
768 public void setDLFileShortcutPersistence(
769 DLFileShortcutPersistence dlFileShortcutPersistence) {
770 this.dlFileShortcutPersistence = dlFileShortcutPersistence;
771 }
772
773
778 public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
779 return dlFileVersionLocalService;
780 }
781
782
787 public void setDLFileVersionLocalService(
788 com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
789 this.dlFileVersionLocalService = dlFileVersionLocalService;
790 }
791
792
797 public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
798 return dlFileVersionService;
799 }
800
801
806 public void setDLFileVersionService(
807 com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
808 this.dlFileVersionService = dlFileVersionService;
809 }
810
811
816 public DLFileVersionPersistence getDLFileVersionPersistence() {
817 return dlFileVersionPersistence;
818 }
819
820
825 public void setDLFileVersionPersistence(
826 DLFileVersionPersistence dlFileVersionPersistence) {
827 this.dlFileVersionPersistence = dlFileVersionPersistence;
828 }
829
830
835 public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
836 return dlFolderLocalService;
837 }
838
839
844 public void setDLFolderLocalService(
845 com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
846 this.dlFolderLocalService = dlFolderLocalService;
847 }
848
849
854 public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
855 return dlFolderService;
856 }
857
858
863 public void setDLFolderService(
864 com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
865 this.dlFolderService = dlFolderService;
866 }
867
868
873 public DLFolderPersistence getDLFolderPersistence() {
874 return dlFolderPersistence;
875 }
876
877
882 public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
883 this.dlFolderPersistence = dlFolderPersistence;
884 }
885
886
891 public DLFolderFinder getDLFolderFinder() {
892 return dlFolderFinder;
893 }
894
895
900 public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
901 this.dlFolderFinder = dlFolderFinder;
902 }
903
904
909 public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
910 return dlSyncEventLocalService;
911 }
912
913
918 public void setDLSyncEventLocalService(
919 com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
920 this.dlSyncEventLocalService = dlSyncEventLocalService;
921 }
922
923
928 public DLSyncEventPersistence getDLSyncEventPersistence() {
929 return dlSyncEventPersistence;
930 }
931
932
937 public void setDLSyncEventPersistence(
938 DLSyncEventPersistence dlSyncEventPersistence) {
939 this.dlSyncEventPersistence = dlSyncEventPersistence;
940 }
941
942
947 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
948 return counterLocalService;
949 }
950
951
956 public void setCounterLocalService(
957 com.liferay.counter.service.CounterLocalService counterLocalService) {
958 this.counterLocalService = counterLocalService;
959 }
960
961
966 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
967 return groupLocalService;
968 }
969
970
975 public void setGroupLocalService(
976 com.liferay.portal.service.GroupLocalService groupLocalService) {
977 this.groupLocalService = groupLocalService;
978 }
979
980
985 public com.liferay.portal.service.GroupService getGroupService() {
986 return groupService;
987 }
988
989
994 public void setGroupService(
995 com.liferay.portal.service.GroupService groupService) {
996 this.groupService = groupService;
997 }
998
999
1004 public GroupPersistence getGroupPersistence() {
1005 return groupPersistence;
1006 }
1007
1008
1013 public void setGroupPersistence(GroupPersistence groupPersistence) {
1014 this.groupPersistence = groupPersistence;
1015 }
1016
1017
1022 public GroupFinder getGroupFinder() {
1023 return groupFinder;
1024 }
1025
1026
1031 public void setGroupFinder(GroupFinder groupFinder) {
1032 this.groupFinder = groupFinder;
1033 }
1034
1035
1040 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
1041 return imageLocalService;
1042 }
1043
1044
1049 public void setImageLocalService(
1050 com.liferay.portal.service.ImageLocalService imageLocalService) {
1051 this.imageLocalService = imageLocalService;
1052 }
1053
1054
1059 public com.liferay.portal.service.ImageService getImageService() {
1060 return imageService;
1061 }
1062
1063
1068 public void setImageService(
1069 com.liferay.portal.service.ImageService imageService) {
1070 this.imageService = imageService;
1071 }
1072
1073
1078 public ImagePersistence getImagePersistence() {
1079 return imagePersistence;
1080 }
1081
1082
1087 public void setImagePersistence(ImagePersistence imagePersistence) {
1088 this.imagePersistence = imagePersistence;
1089 }
1090
1091
1096 public com.liferay.portal.service.LockLocalService getLockLocalService() {
1097 return lockLocalService;
1098 }
1099
1100
1105 public void setLockLocalService(
1106 com.liferay.portal.service.LockLocalService lockLocalService) {
1107 this.lockLocalService = lockLocalService;
1108 }
1109
1110
1115 public LockPersistence getLockPersistence() {
1116 return lockPersistence;
1117 }
1118
1119
1124 public void setLockPersistence(LockPersistence lockPersistence) {
1125 this.lockPersistence = lockPersistence;
1126 }
1127
1128
1133 public LockFinder getLockFinder() {
1134 return lockFinder;
1135 }
1136
1137
1142 public void setLockFinder(LockFinder lockFinder) {
1143 this.lockFinder = lockFinder;
1144 }
1145
1146
1151 public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
1152 return repositoryLocalService;
1153 }
1154
1155
1160 public void setRepositoryLocalService(
1161 com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
1162 this.repositoryLocalService = repositoryLocalService;
1163 }
1164
1165
1170 public com.liferay.portal.service.RepositoryService getRepositoryService() {
1171 return repositoryService;
1172 }
1173
1174
1179 public void setRepositoryService(
1180 com.liferay.portal.service.RepositoryService repositoryService) {
1181 this.repositoryService = repositoryService;
1182 }
1183
1184
1189 public RepositoryPersistence getRepositoryPersistence() {
1190 return repositoryPersistence;
1191 }
1192
1193
1198 public void setRepositoryPersistence(
1199 RepositoryPersistence repositoryPersistence) {
1200 this.repositoryPersistence = repositoryPersistence;
1201 }
1202
1203
1208 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
1209 return resourceLocalService;
1210 }
1211
1212
1217 public void setResourceLocalService(
1218 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
1219 this.resourceLocalService = resourceLocalService;
1220 }
1221
1222
1227 public com.liferay.portal.service.UserLocalService getUserLocalService() {
1228 return userLocalService;
1229 }
1230
1231
1236 public void setUserLocalService(
1237 com.liferay.portal.service.UserLocalService userLocalService) {
1238 this.userLocalService = userLocalService;
1239 }
1240
1241
1246 public com.liferay.portal.service.UserService getUserService() {
1247 return userService;
1248 }
1249
1250
1255 public void setUserService(
1256 com.liferay.portal.service.UserService userService) {
1257 this.userService = userService;
1258 }
1259
1260
1265 public UserPersistence getUserPersistence() {
1266 return userPersistence;
1267 }
1268
1269
1274 public void setUserPersistence(UserPersistence userPersistence) {
1275 this.userPersistence = userPersistence;
1276 }
1277
1278
1283 public UserFinder getUserFinder() {
1284 return userFinder;
1285 }
1286
1287
1292 public void setUserFinder(UserFinder userFinder) {
1293 this.userFinder = userFinder;
1294 }
1295
1296
1301 public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
1302 return webDAVPropsLocalService;
1303 }
1304
1305
1310 public void setWebDAVPropsLocalService(
1311 com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
1312 this.webDAVPropsLocalService = webDAVPropsLocalService;
1313 }
1314
1315
1320 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1321 return webDAVPropsPersistence;
1322 }
1323
1324
1329 public void setWebDAVPropsPersistence(
1330 WebDAVPropsPersistence webDAVPropsPersistence) {
1331 this.webDAVPropsPersistence = webDAVPropsPersistence;
1332 }
1333
1334
1339 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1340 return workflowInstanceLinkLocalService;
1341 }
1342
1343
1348 public void setWorkflowInstanceLinkLocalService(
1349 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1350 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1351 }
1352
1353
1358 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1359 return workflowInstanceLinkPersistence;
1360 }
1361
1362
1367 public void setWorkflowInstanceLinkPersistence(
1368 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1369 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1370 }
1371
1372
1377 public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
1378 return assetCategoryLocalService;
1379 }
1380
1381
1386 public void setAssetCategoryLocalService(
1387 com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
1388 this.assetCategoryLocalService = assetCategoryLocalService;
1389 }
1390
1391
1396 public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
1397 return assetCategoryService;
1398 }
1399
1400
1405 public void setAssetCategoryService(
1406 com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
1407 this.assetCategoryService = assetCategoryService;
1408 }
1409
1410
1415 public AssetCategoryPersistence getAssetCategoryPersistence() {
1416 return assetCategoryPersistence;
1417 }
1418
1419
1424 public void setAssetCategoryPersistence(
1425 AssetCategoryPersistence assetCategoryPersistence) {
1426 this.assetCategoryPersistence = assetCategoryPersistence;
1427 }
1428
1429
1434 public AssetCategoryFinder getAssetCategoryFinder() {
1435 return assetCategoryFinder;
1436 }
1437
1438
1443 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1444 this.assetCategoryFinder = assetCategoryFinder;
1445 }
1446
1447
1452 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1453 return assetEntryLocalService;
1454 }
1455
1456
1461 public void setAssetEntryLocalService(
1462 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1463 this.assetEntryLocalService = assetEntryLocalService;
1464 }
1465
1466
1471 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1472 return assetEntryService;
1473 }
1474
1475
1480 public void setAssetEntryService(
1481 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1482 this.assetEntryService = assetEntryService;
1483 }
1484
1485
1490 public AssetEntryPersistence getAssetEntryPersistence() {
1491 return assetEntryPersistence;
1492 }
1493
1494
1499 public void setAssetEntryPersistence(
1500 AssetEntryPersistence assetEntryPersistence) {
1501 this.assetEntryPersistence = assetEntryPersistence;
1502 }
1503
1504
1509 public AssetEntryFinder getAssetEntryFinder() {
1510 return assetEntryFinder;
1511 }
1512
1513
1518 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1519 this.assetEntryFinder = assetEntryFinder;
1520 }
1521
1522
1527 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
1528 return assetLinkLocalService;
1529 }
1530
1531
1536 public void setAssetLinkLocalService(
1537 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
1538 this.assetLinkLocalService = assetLinkLocalService;
1539 }
1540
1541
1546 public AssetLinkPersistence getAssetLinkPersistence() {
1547 return assetLinkPersistence;
1548 }
1549
1550
1555 public void setAssetLinkPersistence(
1556 AssetLinkPersistence assetLinkPersistence) {
1557 this.assetLinkPersistence = assetLinkPersistence;
1558 }
1559
1560
1565 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1566 return assetTagLocalService;
1567 }
1568
1569
1574 public void setAssetTagLocalService(
1575 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1576 this.assetTagLocalService = assetTagLocalService;
1577 }
1578
1579
1584 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1585 return assetTagService;
1586 }
1587
1588
1593 public void setAssetTagService(
1594 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1595 this.assetTagService = assetTagService;
1596 }
1597
1598
1603 public AssetTagPersistence getAssetTagPersistence() {
1604 return assetTagPersistence;
1605 }
1606
1607
1612 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1613 this.assetTagPersistence = assetTagPersistence;
1614 }
1615
1616
1621 public AssetTagFinder getAssetTagFinder() {
1622 return assetTagFinder;
1623 }
1624
1625
1630 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1631 this.assetTagFinder = assetTagFinder;
1632 }
1633
1634
1639 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
1640 return ddmStructureLocalService;
1641 }
1642
1643
1648 public void setDDMStructureLocalService(
1649 com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
1650 this.ddmStructureLocalService = ddmStructureLocalService;
1651 }
1652
1653
1658 public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
1659 return ddmStructureService;
1660 }
1661
1662
1667 public void setDDMStructureService(
1668 com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
1669 this.ddmStructureService = ddmStructureService;
1670 }
1671
1672
1677 public DDMStructurePersistence getDDMStructurePersistence() {
1678 return ddmStructurePersistence;
1679 }
1680
1681
1686 public void setDDMStructurePersistence(
1687 DDMStructurePersistence ddmStructurePersistence) {
1688 this.ddmStructurePersistence = ddmStructurePersistence;
1689 }
1690
1691
1696 public DDMStructureFinder getDDMStructureFinder() {
1697 return ddmStructureFinder;
1698 }
1699
1700
1705 public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1706 this.ddmStructureFinder = ddmStructureFinder;
1707 }
1708
1709
1714 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1715 return expandoRowLocalService;
1716 }
1717
1718
1723 public void setExpandoRowLocalService(
1724 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1725 this.expandoRowLocalService = expandoRowLocalService;
1726 }
1727
1728
1733 public ExpandoRowPersistence getExpandoRowPersistence() {
1734 return expandoRowPersistence;
1735 }
1736
1737
1742 public void setExpandoRowPersistence(
1743 ExpandoRowPersistence expandoRowPersistence) {
1744 this.expandoRowPersistence = expandoRowPersistence;
1745 }
1746
1747
1752 public com.liferay.portlet.expando.service.ExpandoTableLocalService getExpandoTableLocalService() {
1753 return expandoTableLocalService;
1754 }
1755
1756
1761 public void setExpandoTableLocalService(
1762 com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService) {
1763 this.expandoTableLocalService = expandoTableLocalService;
1764 }
1765
1766
1771 public ExpandoTablePersistence getExpandoTablePersistence() {
1772 return expandoTablePersistence;
1773 }
1774
1775
1780 public void setExpandoTablePersistence(
1781 ExpandoTablePersistence expandoTablePersistence) {
1782 this.expandoTablePersistence = expandoTablePersistence;
1783 }
1784
1785
1790 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
1791 return mbMessageLocalService;
1792 }
1793
1794
1799 public void setMBMessageLocalService(
1800 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
1801 this.mbMessageLocalService = mbMessageLocalService;
1802 }
1803
1804
1809 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
1810 return mbMessageService;
1811 }
1812
1813
1818 public void setMBMessageService(
1819 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
1820 this.mbMessageService = mbMessageService;
1821 }
1822
1823
1828 public MBMessagePersistence getMBMessagePersistence() {
1829 return mbMessagePersistence;
1830 }
1831
1832
1837 public void setMBMessagePersistence(
1838 MBMessagePersistence mbMessagePersistence) {
1839 this.mbMessagePersistence = mbMessagePersistence;
1840 }
1841
1842
1847 public MBMessageFinder getMBMessageFinder() {
1848 return mbMessageFinder;
1849 }
1850
1851
1856 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1857 this.mbMessageFinder = mbMessageFinder;
1858 }
1859
1860
1865 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1866 return trashEntryLocalService;
1867 }
1868
1869
1874 public void setTrashEntryLocalService(
1875 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1876 this.trashEntryLocalService = trashEntryLocalService;
1877 }
1878
1879
1884 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1885 return trashEntryService;
1886 }
1887
1888
1893 public void setTrashEntryService(
1894 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1895 this.trashEntryService = trashEntryService;
1896 }
1897
1898
1903 public TrashEntryPersistence getTrashEntryPersistence() {
1904 return trashEntryPersistence;
1905 }
1906
1907
1912 public void setTrashEntryPersistence(
1913 TrashEntryPersistence trashEntryPersistence) {
1914 this.trashEntryPersistence = trashEntryPersistence;
1915 }
1916
1917 public void afterPropertiesSet() {
1918 persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLFileEntry",
1919 dlFileEntryLocalService);
1920 }
1921
1922 public void destroy() {
1923 persistedModelLocalServiceRegistry.unregister(
1924 "com.liferay.portlet.documentlibrary.model.DLFileEntry");
1925 }
1926
1927
1932 @Override
1933 public String getBeanIdentifier() {
1934 return _beanIdentifier;
1935 }
1936
1937
1942 @Override
1943 public void setBeanIdentifier(String beanIdentifier) {
1944 _beanIdentifier = beanIdentifier;
1945 }
1946
1947 protected Class<?> getModelClass() {
1948 return DLFileEntry.class;
1949 }
1950
1951 protected String getModelClassName() {
1952 return DLFileEntry.class.getName();
1953 }
1954
1955
1960 protected void runSQL(String sql) throws SystemException {
1961 try {
1962 DataSource dataSource = dlFileEntryPersistence.getDataSource();
1963
1964 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1965 sql, new int[0]);
1966
1967 sqlUpdate.update();
1968 }
1969 catch (Exception e) {
1970 throw new SystemException(e);
1971 }
1972 }
1973
1974 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1975 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1976 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1977 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1978 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1979 protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1980 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1981 protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1982 @BeanReference(type = DLContentPersistence.class)
1983 protected DLContentPersistence dlContentPersistence;
1984 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1985 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1986 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1987 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1988 @BeanReference(type = DLFileEntryPersistence.class)
1989 protected DLFileEntryPersistence dlFileEntryPersistence;
1990 @BeanReference(type = DLFileEntryFinder.class)
1991 protected DLFileEntryFinder dlFileEntryFinder;
1992 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1993 protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1994 @BeanReference(type = DLFileEntryMetadataPersistence.class)
1995 protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1996 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1997 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1998 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1999 protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
2000 @BeanReference(type = DLFileEntryTypePersistence.class)
2001 protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
2002 @BeanReference(type = DLFileEntryTypeFinder.class)
2003 protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
2004 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
2005 protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
2006 @BeanReference(type = DLFileRankPersistence.class)
2007 protected DLFileRankPersistence dlFileRankPersistence;
2008 @BeanReference(type = DLFileRankFinder.class)
2009 protected DLFileRankFinder dlFileRankFinder;
2010 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
2011 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
2012 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
2013 protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
2014 @BeanReference(type = DLFileShortcutPersistence.class)
2015 protected DLFileShortcutPersistence dlFileShortcutPersistence;
2016 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
2017 protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
2018 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
2019 protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
2020 @BeanReference(type = DLFileVersionPersistence.class)
2021 protected DLFileVersionPersistence dlFileVersionPersistence;
2022 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
2023 protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
2024 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
2025 protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
2026 @BeanReference(type = DLFolderPersistence.class)
2027 protected DLFolderPersistence dlFolderPersistence;
2028 @BeanReference(type = DLFolderFinder.class)
2029 protected DLFolderFinder dlFolderFinder;
2030 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
2031 protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
2032 @BeanReference(type = DLSyncEventPersistence.class)
2033 protected DLSyncEventPersistence dlSyncEventPersistence;
2034 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
2035 protected com.liferay.counter.service.CounterLocalService counterLocalService;
2036 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
2037 protected com.liferay.portal.service.GroupLocalService groupLocalService;
2038 @BeanReference(type = com.liferay.portal.service.GroupService.class)
2039 protected com.liferay.portal.service.GroupService groupService;
2040 @BeanReference(type = GroupPersistence.class)
2041 protected GroupPersistence groupPersistence;
2042 @BeanReference(type = GroupFinder.class)
2043 protected GroupFinder groupFinder;
2044 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
2045 protected com.liferay.portal.service.ImageLocalService imageLocalService;
2046 @BeanReference(type = com.liferay.portal.service.ImageService.class)
2047 protected com.liferay.portal.service.ImageService imageService;
2048 @BeanReference(type = ImagePersistence.class)
2049 protected ImagePersistence imagePersistence;
2050 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
2051 protected com.liferay.portal.service.LockLocalService lockLocalService;
2052 @BeanReference(type = LockPersistence.class)
2053 protected LockPersistence lockPersistence;
2054 @BeanReference(type = LockFinder.class)
2055 protected LockFinder lockFinder;
2056 @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
2057 protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
2058 @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
2059 protected com.liferay.portal.service.RepositoryService repositoryService;
2060 @BeanReference(type = RepositoryPersistence.class)
2061 protected RepositoryPersistence repositoryPersistence;
2062 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
2063 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
2064 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
2065 protected com.liferay.portal.service.UserLocalService userLocalService;
2066 @BeanReference(type = com.liferay.portal.service.UserService.class)
2067 protected com.liferay.portal.service.UserService userService;
2068 @BeanReference(type = UserPersistence.class)
2069 protected UserPersistence userPersistence;
2070 @BeanReference(type = UserFinder.class)
2071 protected UserFinder userFinder;
2072 @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
2073 protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
2074 @BeanReference(type = WebDAVPropsPersistence.class)
2075 protected WebDAVPropsPersistence webDAVPropsPersistence;
2076 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
2077 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
2078 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
2079 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
2080 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
2081 protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
2082 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
2083 protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
2084 @BeanReference(type = AssetCategoryPersistence.class)
2085 protected AssetCategoryPersistence assetCategoryPersistence;
2086 @BeanReference(type = AssetCategoryFinder.class)
2087 protected AssetCategoryFinder assetCategoryFinder;
2088 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
2089 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
2090 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
2091 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
2092 @BeanReference(type = AssetEntryPersistence.class)
2093 protected AssetEntryPersistence assetEntryPersistence;
2094 @BeanReference(type = AssetEntryFinder.class)
2095 protected AssetEntryFinder assetEntryFinder;
2096 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
2097 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
2098 @BeanReference(type = AssetLinkPersistence.class)
2099 protected AssetLinkPersistence assetLinkPersistence;
2100 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
2101 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
2102 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
2103 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
2104 @BeanReference(type = AssetTagPersistence.class)
2105 protected AssetTagPersistence assetTagPersistence;
2106 @BeanReference(type = AssetTagFinder.class)
2107 protected AssetTagFinder assetTagFinder;
2108 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
2109 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
2110 @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
2111 protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
2112 @BeanReference(type = DDMStructurePersistence.class)
2113 protected DDMStructurePersistence ddmStructurePersistence;
2114 @BeanReference(type = DDMStructureFinder.class)
2115 protected DDMStructureFinder ddmStructureFinder;
2116 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
2117 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
2118 @BeanReference(type = ExpandoRowPersistence.class)
2119 protected ExpandoRowPersistence expandoRowPersistence;
2120 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoTableLocalService.class)
2121 protected com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService;
2122 @BeanReference(type = ExpandoTablePersistence.class)
2123 protected ExpandoTablePersistence expandoTablePersistence;
2124 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
2125 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
2126 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
2127 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
2128 @BeanReference(type = MBMessagePersistence.class)
2129 protected MBMessagePersistence mbMessagePersistence;
2130 @BeanReference(type = MBMessageFinder.class)
2131 protected MBMessageFinder mbMessageFinder;
2132 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
2133 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
2134 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
2135 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
2136 @BeanReference(type = TrashEntryPersistence.class)
2137 protected TrashEntryPersistence trashEntryPersistence;
2138 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
2139 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
2140 private String _beanIdentifier;
2141 }