001
014
015 package com.liferay.portlet.asset.service.base;
016
017 import com.liferay.counter.service.CounterLocalService;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.bean.IdentifiableBean;
021 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
024 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
025 import com.liferay.portal.kernel.exception.PortalException;
026 import com.liferay.portal.kernel.exception.SystemException;
027 import com.liferay.portal.kernel.search.Indexable;
028 import com.liferay.portal.kernel.search.IndexableType;
029 import com.liferay.portal.kernel.util.OrderByComparator;
030 import com.liferay.portal.model.PersistedModel;
031 import com.liferay.portal.service.BaseLocalServiceImpl;
032 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
033 import com.liferay.portal.service.ResourceLocalService;
034 import com.liferay.portal.service.ResourceService;
035 import com.liferay.portal.service.UserLocalService;
036 import com.liferay.portal.service.UserService;
037 import com.liferay.portal.service.persistence.ResourceFinder;
038 import com.liferay.portal.service.persistence.ResourcePersistence;
039 import com.liferay.portal.service.persistence.UserFinder;
040 import com.liferay.portal.service.persistence.UserPersistence;
041
042 import com.liferay.portlet.asset.model.AssetCategory;
043 import com.liferay.portlet.asset.service.AssetCategoryLocalService;
044 import com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService;
045 import com.liferay.portlet.asset.service.AssetCategoryPropertyService;
046 import com.liferay.portlet.asset.service.AssetCategoryService;
047 import com.liferay.portlet.asset.service.AssetEntryLocalService;
048 import com.liferay.portlet.asset.service.AssetEntryService;
049 import com.liferay.portlet.asset.service.AssetLinkLocalService;
050 import com.liferay.portlet.asset.service.AssetTagLocalService;
051 import com.liferay.portlet.asset.service.AssetTagPropertyLocalService;
052 import com.liferay.portlet.asset.service.AssetTagPropertyService;
053 import com.liferay.portlet.asset.service.AssetTagService;
054 import com.liferay.portlet.asset.service.AssetTagStatsLocalService;
055 import com.liferay.portlet.asset.service.AssetVocabularyLocalService;
056 import com.liferay.portlet.asset.service.AssetVocabularyService;
057 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
058 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
059 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
060 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
061 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
062 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
063 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
064 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
065 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
066 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
067 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
068 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
069 import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
070 import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
071 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
072
073 import java.io.Serializable;
074
075 import java.util.List;
076
077 import javax.sql.DataSource;
078
079
091 public abstract class AssetCategoryLocalServiceBaseImpl
092 extends BaseLocalServiceImpl implements AssetCategoryLocalService,
093 IdentifiableBean {
094
099
100
107 @Indexable(type = IndexableType.REINDEX)
108 public AssetCategory addAssetCategory(AssetCategory assetCategory)
109 throws SystemException {
110 assetCategory.setNew(true);
111
112 return assetCategoryPersistence.update(assetCategory, false);
113 }
114
115
121 public AssetCategory createAssetCategory(long categoryId) {
122 return assetCategoryPersistence.create(categoryId);
123 }
124
125
133 @Indexable(type = IndexableType.DELETE)
134 public AssetCategory deleteAssetCategory(long categoryId)
135 throws PortalException, SystemException {
136 return assetCategoryPersistence.remove(categoryId);
137 }
138
139
146 @Indexable(type = IndexableType.DELETE)
147 public AssetCategory deleteAssetCategory(AssetCategory assetCategory)
148 throws SystemException {
149 return assetCategoryPersistence.remove(assetCategory);
150 }
151
152 public DynamicQuery dynamicQuery() {
153 Class<?> clazz = getClass();
154
155 return DynamicQueryFactoryUtil.forClass(AssetCategory.class,
156 clazz.getClassLoader());
157 }
158
159
166 @SuppressWarnings("rawtypes")
167 public List dynamicQuery(DynamicQuery dynamicQuery)
168 throws SystemException {
169 return assetCategoryPersistence.findWithDynamicQuery(dynamicQuery);
170 }
171
172
185 @SuppressWarnings("rawtypes")
186 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
187 throws SystemException {
188 return assetCategoryPersistence.findWithDynamicQuery(dynamicQuery,
189 start, end);
190 }
191
192
206 @SuppressWarnings("rawtypes")
207 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
208 OrderByComparator orderByComparator) throws SystemException {
209 return assetCategoryPersistence.findWithDynamicQuery(dynamicQuery,
210 start, end, orderByComparator);
211 }
212
213
220 public long dynamicQueryCount(DynamicQuery dynamicQuery)
221 throws SystemException {
222 return assetCategoryPersistence.countWithDynamicQuery(dynamicQuery);
223 }
224
225 public AssetCategory fetchAssetCategory(long categoryId)
226 throws SystemException {
227 return assetCategoryPersistence.fetchByPrimaryKey(categoryId);
228 }
229
230
238 public AssetCategory getAssetCategory(long categoryId)
239 throws PortalException, SystemException {
240 return assetCategoryPersistence.findByPrimaryKey(categoryId);
241 }
242
243 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
244 throws PortalException, SystemException {
245 return assetCategoryPersistence.findByPrimaryKey(primaryKeyObj);
246 }
247
248
257 public AssetCategory getAssetCategoryByUuidAndGroupId(String uuid,
258 long groupId) throws PortalException, SystemException {
259 return assetCategoryPersistence.findByUUID_G(uuid, groupId);
260 }
261
262
274 public List<AssetCategory> getAssetCategories(int start, int end)
275 throws SystemException {
276 return assetCategoryPersistence.findAll(start, end);
277 }
278
279
285 public int getAssetCategoriesCount() throws SystemException {
286 return assetCategoryPersistence.countAll();
287 }
288
289
296 @Indexable(type = IndexableType.REINDEX)
297 public AssetCategory updateAssetCategory(AssetCategory assetCategory)
298 throws SystemException {
299 return updateAssetCategory(assetCategory, true);
300 }
301
302
310 @Indexable(type = IndexableType.REINDEX)
311 public AssetCategory updateAssetCategory(AssetCategory assetCategory,
312 boolean merge) throws SystemException {
313 assetCategory.setNew(false);
314
315 return assetCategoryPersistence.update(assetCategory, merge);
316 }
317
318
323 public AssetCategoryLocalService getAssetCategoryLocalService() {
324 return assetCategoryLocalService;
325 }
326
327
332 public void setAssetCategoryLocalService(
333 AssetCategoryLocalService assetCategoryLocalService) {
334 this.assetCategoryLocalService = assetCategoryLocalService;
335 }
336
337
342 public AssetCategoryService getAssetCategoryService() {
343 return assetCategoryService;
344 }
345
346
351 public void setAssetCategoryService(
352 AssetCategoryService assetCategoryService) {
353 this.assetCategoryService = assetCategoryService;
354 }
355
356
361 public AssetCategoryPersistence getAssetCategoryPersistence() {
362 return assetCategoryPersistence;
363 }
364
365
370 public void setAssetCategoryPersistence(
371 AssetCategoryPersistence assetCategoryPersistence) {
372 this.assetCategoryPersistence = assetCategoryPersistence;
373 }
374
375
380 public AssetCategoryFinder getAssetCategoryFinder() {
381 return assetCategoryFinder;
382 }
383
384
389 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
390 this.assetCategoryFinder = assetCategoryFinder;
391 }
392
393
398 public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
399 return assetCategoryPropertyLocalService;
400 }
401
402
407 public void setAssetCategoryPropertyLocalService(
408 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
409 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
410 }
411
412
417 public AssetCategoryPropertyService getAssetCategoryPropertyService() {
418 return assetCategoryPropertyService;
419 }
420
421
426 public void setAssetCategoryPropertyService(
427 AssetCategoryPropertyService assetCategoryPropertyService) {
428 this.assetCategoryPropertyService = assetCategoryPropertyService;
429 }
430
431
436 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
437 return assetCategoryPropertyPersistence;
438 }
439
440
445 public void setAssetCategoryPropertyPersistence(
446 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
447 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
448 }
449
450
455 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
456 return assetCategoryPropertyFinder;
457 }
458
459
464 public void setAssetCategoryPropertyFinder(
465 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
466 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
467 }
468
469
474 public AssetEntryLocalService getAssetEntryLocalService() {
475 return assetEntryLocalService;
476 }
477
478
483 public void setAssetEntryLocalService(
484 AssetEntryLocalService assetEntryLocalService) {
485 this.assetEntryLocalService = assetEntryLocalService;
486 }
487
488
493 public AssetEntryService getAssetEntryService() {
494 return assetEntryService;
495 }
496
497
502 public void setAssetEntryService(AssetEntryService assetEntryService) {
503 this.assetEntryService = assetEntryService;
504 }
505
506
511 public AssetEntryPersistence getAssetEntryPersistence() {
512 return assetEntryPersistence;
513 }
514
515
520 public void setAssetEntryPersistence(
521 AssetEntryPersistence assetEntryPersistence) {
522 this.assetEntryPersistence = assetEntryPersistence;
523 }
524
525
530 public AssetEntryFinder getAssetEntryFinder() {
531 return assetEntryFinder;
532 }
533
534
539 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
540 this.assetEntryFinder = assetEntryFinder;
541 }
542
543
548 public AssetLinkLocalService getAssetLinkLocalService() {
549 return assetLinkLocalService;
550 }
551
552
557 public void setAssetLinkLocalService(
558 AssetLinkLocalService assetLinkLocalService) {
559 this.assetLinkLocalService = assetLinkLocalService;
560 }
561
562
567 public AssetLinkPersistence getAssetLinkPersistence() {
568 return assetLinkPersistence;
569 }
570
571
576 public void setAssetLinkPersistence(
577 AssetLinkPersistence assetLinkPersistence) {
578 this.assetLinkPersistence = assetLinkPersistence;
579 }
580
581
586 public AssetTagLocalService getAssetTagLocalService() {
587 return assetTagLocalService;
588 }
589
590
595 public void setAssetTagLocalService(
596 AssetTagLocalService assetTagLocalService) {
597 this.assetTagLocalService = assetTagLocalService;
598 }
599
600
605 public AssetTagService getAssetTagService() {
606 return assetTagService;
607 }
608
609
614 public void setAssetTagService(AssetTagService assetTagService) {
615 this.assetTagService = assetTagService;
616 }
617
618
623 public AssetTagPersistence getAssetTagPersistence() {
624 return assetTagPersistence;
625 }
626
627
632 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
633 this.assetTagPersistence = assetTagPersistence;
634 }
635
636
641 public AssetTagFinder getAssetTagFinder() {
642 return assetTagFinder;
643 }
644
645
650 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
651 this.assetTagFinder = assetTagFinder;
652 }
653
654
659 public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
660 return assetTagPropertyLocalService;
661 }
662
663
668 public void setAssetTagPropertyLocalService(
669 AssetTagPropertyLocalService assetTagPropertyLocalService) {
670 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
671 }
672
673
678 public AssetTagPropertyService getAssetTagPropertyService() {
679 return assetTagPropertyService;
680 }
681
682
687 public void setAssetTagPropertyService(
688 AssetTagPropertyService assetTagPropertyService) {
689 this.assetTagPropertyService = assetTagPropertyService;
690 }
691
692
697 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
698 return assetTagPropertyPersistence;
699 }
700
701
706 public void setAssetTagPropertyPersistence(
707 AssetTagPropertyPersistence assetTagPropertyPersistence) {
708 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
709 }
710
711
716 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
717 return assetTagPropertyFinder;
718 }
719
720
725 public void setAssetTagPropertyFinder(
726 AssetTagPropertyFinder assetTagPropertyFinder) {
727 this.assetTagPropertyFinder = assetTagPropertyFinder;
728 }
729
730
735 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
736 return assetTagPropertyKeyFinder;
737 }
738
739
744 public void setAssetTagPropertyKeyFinder(
745 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
746 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
747 }
748
749
754 public AssetTagStatsLocalService getAssetTagStatsLocalService() {
755 return assetTagStatsLocalService;
756 }
757
758
763 public void setAssetTagStatsLocalService(
764 AssetTagStatsLocalService assetTagStatsLocalService) {
765 this.assetTagStatsLocalService = assetTagStatsLocalService;
766 }
767
768
773 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
774 return assetTagStatsPersistence;
775 }
776
777
782 public void setAssetTagStatsPersistence(
783 AssetTagStatsPersistence assetTagStatsPersistence) {
784 this.assetTagStatsPersistence = assetTagStatsPersistence;
785 }
786
787
792 public AssetVocabularyLocalService getAssetVocabularyLocalService() {
793 return assetVocabularyLocalService;
794 }
795
796
801 public void setAssetVocabularyLocalService(
802 AssetVocabularyLocalService assetVocabularyLocalService) {
803 this.assetVocabularyLocalService = assetVocabularyLocalService;
804 }
805
806
811 public AssetVocabularyService getAssetVocabularyService() {
812 return assetVocabularyService;
813 }
814
815
820 public void setAssetVocabularyService(
821 AssetVocabularyService assetVocabularyService) {
822 this.assetVocabularyService = assetVocabularyService;
823 }
824
825
830 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
831 return assetVocabularyPersistence;
832 }
833
834
839 public void setAssetVocabularyPersistence(
840 AssetVocabularyPersistence assetVocabularyPersistence) {
841 this.assetVocabularyPersistence = assetVocabularyPersistence;
842 }
843
844
849 public AssetVocabularyFinder getAssetVocabularyFinder() {
850 return assetVocabularyFinder;
851 }
852
853
858 public void setAssetVocabularyFinder(
859 AssetVocabularyFinder assetVocabularyFinder) {
860 this.assetVocabularyFinder = assetVocabularyFinder;
861 }
862
863
868 public CounterLocalService getCounterLocalService() {
869 return counterLocalService;
870 }
871
872
877 public void setCounterLocalService(CounterLocalService counterLocalService) {
878 this.counterLocalService = counterLocalService;
879 }
880
881
886 public ResourceLocalService getResourceLocalService() {
887 return resourceLocalService;
888 }
889
890
895 public void setResourceLocalService(
896 ResourceLocalService resourceLocalService) {
897 this.resourceLocalService = resourceLocalService;
898 }
899
900
905 public ResourceService getResourceService() {
906 return resourceService;
907 }
908
909
914 public void setResourceService(ResourceService resourceService) {
915 this.resourceService = resourceService;
916 }
917
918
923 public ResourcePersistence getResourcePersistence() {
924 return resourcePersistence;
925 }
926
927
932 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
933 this.resourcePersistence = resourcePersistence;
934 }
935
936
941 public ResourceFinder getResourceFinder() {
942 return resourceFinder;
943 }
944
945
950 public void setResourceFinder(ResourceFinder resourceFinder) {
951 this.resourceFinder = resourceFinder;
952 }
953
954
959 public UserLocalService getUserLocalService() {
960 return userLocalService;
961 }
962
963
968 public void setUserLocalService(UserLocalService userLocalService) {
969 this.userLocalService = userLocalService;
970 }
971
972
977 public UserService getUserService() {
978 return userService;
979 }
980
981
986 public void setUserService(UserService userService) {
987 this.userService = userService;
988 }
989
990
995 public UserPersistence getUserPersistence() {
996 return userPersistence;
997 }
998
999
1004 public void setUserPersistence(UserPersistence userPersistence) {
1005 this.userPersistence = userPersistence;
1006 }
1007
1008
1013 public UserFinder getUserFinder() {
1014 return userFinder;
1015 }
1016
1017
1022 public void setUserFinder(UserFinder userFinder) {
1023 this.userFinder = userFinder;
1024 }
1025
1026 public void afterPropertiesSet() {
1027 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetCategory",
1028 assetCategoryLocalService);
1029 }
1030
1031 public void destroy() {
1032 persistedModelLocalServiceRegistry.unregister(
1033 "com.liferay.portlet.asset.model.AssetCategory");
1034 }
1035
1036
1041 public String getBeanIdentifier() {
1042 return _beanIdentifier;
1043 }
1044
1045
1050 public void setBeanIdentifier(String beanIdentifier) {
1051 _beanIdentifier = beanIdentifier;
1052 }
1053
1054 protected Class<?> getModelClass() {
1055 return AssetCategory.class;
1056 }
1057
1058 protected String getModelClassName() {
1059 return AssetCategory.class.getName();
1060 }
1061
1062
1067 protected void runSQL(String sql) throws SystemException {
1068 try {
1069 DataSource dataSource = assetCategoryPersistence.getDataSource();
1070
1071 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1072 sql, new int[0]);
1073
1074 sqlUpdate.update();
1075 }
1076 catch (Exception e) {
1077 throw new SystemException(e);
1078 }
1079 }
1080
1081 @BeanReference(type = AssetCategoryLocalService.class)
1082 protected AssetCategoryLocalService assetCategoryLocalService;
1083 @BeanReference(type = AssetCategoryService.class)
1084 protected AssetCategoryService assetCategoryService;
1085 @BeanReference(type = AssetCategoryPersistence.class)
1086 protected AssetCategoryPersistence assetCategoryPersistence;
1087 @BeanReference(type = AssetCategoryFinder.class)
1088 protected AssetCategoryFinder assetCategoryFinder;
1089 @BeanReference(type = AssetCategoryPropertyLocalService.class)
1090 protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1091 @BeanReference(type = AssetCategoryPropertyService.class)
1092 protected AssetCategoryPropertyService assetCategoryPropertyService;
1093 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1094 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1095 @BeanReference(type = AssetCategoryPropertyFinder.class)
1096 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1097 @BeanReference(type = AssetEntryLocalService.class)
1098 protected AssetEntryLocalService assetEntryLocalService;
1099 @BeanReference(type = AssetEntryService.class)
1100 protected AssetEntryService assetEntryService;
1101 @BeanReference(type = AssetEntryPersistence.class)
1102 protected AssetEntryPersistence assetEntryPersistence;
1103 @BeanReference(type = AssetEntryFinder.class)
1104 protected AssetEntryFinder assetEntryFinder;
1105 @BeanReference(type = AssetLinkLocalService.class)
1106 protected AssetLinkLocalService assetLinkLocalService;
1107 @BeanReference(type = AssetLinkPersistence.class)
1108 protected AssetLinkPersistence assetLinkPersistence;
1109 @BeanReference(type = AssetTagLocalService.class)
1110 protected AssetTagLocalService assetTagLocalService;
1111 @BeanReference(type = AssetTagService.class)
1112 protected AssetTagService assetTagService;
1113 @BeanReference(type = AssetTagPersistence.class)
1114 protected AssetTagPersistence assetTagPersistence;
1115 @BeanReference(type = AssetTagFinder.class)
1116 protected AssetTagFinder assetTagFinder;
1117 @BeanReference(type = AssetTagPropertyLocalService.class)
1118 protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1119 @BeanReference(type = AssetTagPropertyService.class)
1120 protected AssetTagPropertyService assetTagPropertyService;
1121 @BeanReference(type = AssetTagPropertyPersistence.class)
1122 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1123 @BeanReference(type = AssetTagPropertyFinder.class)
1124 protected AssetTagPropertyFinder assetTagPropertyFinder;
1125 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1126 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1127 @BeanReference(type = AssetTagStatsLocalService.class)
1128 protected AssetTagStatsLocalService assetTagStatsLocalService;
1129 @BeanReference(type = AssetTagStatsPersistence.class)
1130 protected AssetTagStatsPersistence assetTagStatsPersistence;
1131 @BeanReference(type = AssetVocabularyLocalService.class)
1132 protected AssetVocabularyLocalService assetVocabularyLocalService;
1133 @BeanReference(type = AssetVocabularyService.class)
1134 protected AssetVocabularyService assetVocabularyService;
1135 @BeanReference(type = AssetVocabularyPersistence.class)
1136 protected AssetVocabularyPersistence assetVocabularyPersistence;
1137 @BeanReference(type = AssetVocabularyFinder.class)
1138 protected AssetVocabularyFinder assetVocabularyFinder;
1139 @BeanReference(type = CounterLocalService.class)
1140 protected CounterLocalService counterLocalService;
1141 @BeanReference(type = ResourceLocalService.class)
1142 protected ResourceLocalService resourceLocalService;
1143 @BeanReference(type = ResourceService.class)
1144 protected ResourceService resourceService;
1145 @BeanReference(type = ResourcePersistence.class)
1146 protected ResourcePersistence resourcePersistence;
1147 @BeanReference(type = ResourceFinder.class)
1148 protected ResourceFinder resourceFinder;
1149 @BeanReference(type = UserLocalService.class)
1150 protected UserLocalService userLocalService;
1151 @BeanReference(type = UserService.class)
1152 protected UserService userService;
1153 @BeanReference(type = UserPersistence.class)
1154 protected UserPersistence userPersistence;
1155 @BeanReference(type = UserFinder.class)
1156 protected UserFinder userFinder;
1157 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1158 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1159 private String _beanIdentifier;
1160 }