001
014
015 package com.liferay.portlet.journal.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.GroupLocalService;
033 import com.liferay.portal.service.GroupService;
034 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
035 import com.liferay.portal.service.ResourceLocalService;
036 import com.liferay.portal.service.ResourceService;
037 import com.liferay.portal.service.UserLocalService;
038 import com.liferay.portal.service.UserService;
039 import com.liferay.portal.service.WebDAVPropsLocalService;
040 import com.liferay.portal.service.persistence.GroupFinder;
041 import com.liferay.portal.service.persistence.GroupPersistence;
042 import com.liferay.portal.service.persistence.ResourceFinder;
043 import com.liferay.portal.service.persistence.ResourcePersistence;
044 import com.liferay.portal.service.persistence.UserFinder;
045 import com.liferay.portal.service.persistence.UserPersistence;
046 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
047
048 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
049 import com.liferay.portlet.expando.service.ExpandoValueService;
050 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
051 import com.liferay.portlet.journal.model.JournalStructure;
052 import com.liferay.portlet.journal.service.JournalArticleImageLocalService;
053 import com.liferay.portlet.journal.service.JournalArticleLocalService;
054 import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
055 import com.liferay.portlet.journal.service.JournalArticleService;
056 import com.liferay.portlet.journal.service.JournalContentSearchLocalService;
057 import com.liferay.portlet.journal.service.JournalFeedLocalService;
058 import com.liferay.portlet.journal.service.JournalFeedService;
059 import com.liferay.portlet.journal.service.JournalStructureLocalService;
060 import com.liferay.portlet.journal.service.JournalStructureService;
061 import com.liferay.portlet.journal.service.JournalTemplateLocalService;
062 import com.liferay.portlet.journal.service.JournalTemplateService;
063 import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
064 import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
065 import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
066 import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
067 import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
068 import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
069 import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
070 import com.liferay.portlet.journal.service.persistence.JournalStructureFinder;
071 import com.liferay.portlet.journal.service.persistence.JournalStructurePersistence;
072 import com.liferay.portlet.journal.service.persistence.JournalTemplateFinder;
073 import com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence;
074
075 import java.io.Serializable;
076
077 import java.util.List;
078
079 import javax.sql.DataSource;
080
081
093 public abstract class JournalStructureLocalServiceBaseImpl
094 extends BaseLocalServiceImpl implements JournalStructureLocalService,
095 IdentifiableBean {
096
101
102
109 @Indexable(type = IndexableType.REINDEX)
110 public JournalStructure addJournalStructure(
111 JournalStructure journalStructure) throws SystemException {
112 journalStructure.setNew(true);
113
114 return journalStructurePersistence.update(journalStructure, false);
115 }
116
117
123 public JournalStructure createJournalStructure(long id) {
124 return journalStructurePersistence.create(id);
125 }
126
127
135 @Indexable(type = IndexableType.DELETE)
136 public JournalStructure deleteJournalStructure(long id)
137 throws PortalException, SystemException {
138 return journalStructurePersistence.remove(id);
139 }
140
141
148 @Indexable(type = IndexableType.DELETE)
149 public JournalStructure deleteJournalStructure(
150 JournalStructure journalStructure) throws SystemException {
151 return journalStructurePersistence.remove(journalStructure);
152 }
153
154 public DynamicQuery dynamicQuery() {
155 Class<?> clazz = getClass();
156
157 return DynamicQueryFactoryUtil.forClass(JournalStructure.class,
158 clazz.getClassLoader());
159 }
160
161
168 @SuppressWarnings("rawtypes")
169 public List dynamicQuery(DynamicQuery dynamicQuery)
170 throws SystemException {
171 return journalStructurePersistence.findWithDynamicQuery(dynamicQuery);
172 }
173
174
187 @SuppressWarnings("rawtypes")
188 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
189 throws SystemException {
190 return journalStructurePersistence.findWithDynamicQuery(dynamicQuery,
191 start, end);
192 }
193
194
208 @SuppressWarnings("rawtypes")
209 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
210 OrderByComparator orderByComparator) throws SystemException {
211 return journalStructurePersistence.findWithDynamicQuery(dynamicQuery,
212 start, end, orderByComparator);
213 }
214
215
222 public long dynamicQueryCount(DynamicQuery dynamicQuery)
223 throws SystemException {
224 return journalStructurePersistence.countWithDynamicQuery(dynamicQuery);
225 }
226
227 public JournalStructure fetchJournalStructure(long id)
228 throws SystemException {
229 return journalStructurePersistence.fetchByPrimaryKey(id);
230 }
231
232
240 public JournalStructure getJournalStructure(long id)
241 throws PortalException, SystemException {
242 return journalStructurePersistence.findByPrimaryKey(id);
243 }
244
245 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
246 throws PortalException, SystemException {
247 return journalStructurePersistence.findByPrimaryKey(primaryKeyObj);
248 }
249
250
259 public JournalStructure getJournalStructureByUuidAndGroupId(String uuid,
260 long groupId) throws PortalException, SystemException {
261 return journalStructurePersistence.findByUUID_G(uuid, groupId);
262 }
263
264
276 public List<JournalStructure> getJournalStructures(int start, int end)
277 throws SystemException {
278 return journalStructurePersistence.findAll(start, end);
279 }
280
281
287 public int getJournalStructuresCount() throws SystemException {
288 return journalStructurePersistence.countAll();
289 }
290
291
298 @Indexable(type = IndexableType.REINDEX)
299 public JournalStructure updateJournalStructure(
300 JournalStructure journalStructure) throws SystemException {
301 return updateJournalStructure(journalStructure, true);
302 }
303
304
312 @Indexable(type = IndexableType.REINDEX)
313 public JournalStructure updateJournalStructure(
314 JournalStructure journalStructure, boolean merge)
315 throws SystemException {
316 journalStructure.setNew(false);
317
318 return journalStructurePersistence.update(journalStructure, merge);
319 }
320
321
326 public JournalArticleLocalService getJournalArticleLocalService() {
327 return journalArticleLocalService;
328 }
329
330
335 public void setJournalArticleLocalService(
336 JournalArticleLocalService journalArticleLocalService) {
337 this.journalArticleLocalService = journalArticleLocalService;
338 }
339
340
345 public JournalArticleService getJournalArticleService() {
346 return journalArticleService;
347 }
348
349
354 public void setJournalArticleService(
355 JournalArticleService journalArticleService) {
356 this.journalArticleService = journalArticleService;
357 }
358
359
364 public JournalArticlePersistence getJournalArticlePersistence() {
365 return journalArticlePersistence;
366 }
367
368
373 public void setJournalArticlePersistence(
374 JournalArticlePersistence journalArticlePersistence) {
375 this.journalArticlePersistence = journalArticlePersistence;
376 }
377
378
383 public JournalArticleFinder getJournalArticleFinder() {
384 return journalArticleFinder;
385 }
386
387
392 public void setJournalArticleFinder(
393 JournalArticleFinder journalArticleFinder) {
394 this.journalArticleFinder = journalArticleFinder;
395 }
396
397
402 public JournalArticleImageLocalService getJournalArticleImageLocalService() {
403 return journalArticleImageLocalService;
404 }
405
406
411 public void setJournalArticleImageLocalService(
412 JournalArticleImageLocalService journalArticleImageLocalService) {
413 this.journalArticleImageLocalService = journalArticleImageLocalService;
414 }
415
416
421 public JournalArticleImagePersistence getJournalArticleImagePersistence() {
422 return journalArticleImagePersistence;
423 }
424
425
430 public void setJournalArticleImagePersistence(
431 JournalArticleImagePersistence journalArticleImagePersistence) {
432 this.journalArticleImagePersistence = journalArticleImagePersistence;
433 }
434
435
440 public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
441 return journalArticleResourceLocalService;
442 }
443
444
449 public void setJournalArticleResourceLocalService(
450 JournalArticleResourceLocalService journalArticleResourceLocalService) {
451 this.journalArticleResourceLocalService = journalArticleResourceLocalService;
452 }
453
454
459 public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
460 return journalArticleResourcePersistence;
461 }
462
463
468 public void setJournalArticleResourcePersistence(
469 JournalArticleResourcePersistence journalArticleResourcePersistence) {
470 this.journalArticleResourcePersistence = journalArticleResourcePersistence;
471 }
472
473
478 public JournalContentSearchLocalService getJournalContentSearchLocalService() {
479 return journalContentSearchLocalService;
480 }
481
482
487 public void setJournalContentSearchLocalService(
488 JournalContentSearchLocalService journalContentSearchLocalService) {
489 this.journalContentSearchLocalService = journalContentSearchLocalService;
490 }
491
492
497 public JournalContentSearchPersistence getJournalContentSearchPersistence() {
498 return journalContentSearchPersistence;
499 }
500
501
506 public void setJournalContentSearchPersistence(
507 JournalContentSearchPersistence journalContentSearchPersistence) {
508 this.journalContentSearchPersistence = journalContentSearchPersistence;
509 }
510
511
516 public JournalFeedLocalService getJournalFeedLocalService() {
517 return journalFeedLocalService;
518 }
519
520
525 public void setJournalFeedLocalService(
526 JournalFeedLocalService journalFeedLocalService) {
527 this.journalFeedLocalService = journalFeedLocalService;
528 }
529
530
535 public JournalFeedService getJournalFeedService() {
536 return journalFeedService;
537 }
538
539
544 public void setJournalFeedService(JournalFeedService journalFeedService) {
545 this.journalFeedService = journalFeedService;
546 }
547
548
553 public JournalFeedPersistence getJournalFeedPersistence() {
554 return journalFeedPersistence;
555 }
556
557
562 public void setJournalFeedPersistence(
563 JournalFeedPersistence journalFeedPersistence) {
564 this.journalFeedPersistence = journalFeedPersistence;
565 }
566
567
572 public JournalFeedFinder getJournalFeedFinder() {
573 return journalFeedFinder;
574 }
575
576
581 public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
582 this.journalFeedFinder = journalFeedFinder;
583 }
584
585
590 public JournalStructureLocalService getJournalStructureLocalService() {
591 return journalStructureLocalService;
592 }
593
594
599 public void setJournalStructureLocalService(
600 JournalStructureLocalService journalStructureLocalService) {
601 this.journalStructureLocalService = journalStructureLocalService;
602 }
603
604
609 public JournalStructureService getJournalStructureService() {
610 return journalStructureService;
611 }
612
613
618 public void setJournalStructureService(
619 JournalStructureService journalStructureService) {
620 this.journalStructureService = journalStructureService;
621 }
622
623
628 public JournalStructurePersistence getJournalStructurePersistence() {
629 return journalStructurePersistence;
630 }
631
632
637 public void setJournalStructurePersistence(
638 JournalStructurePersistence journalStructurePersistence) {
639 this.journalStructurePersistence = journalStructurePersistence;
640 }
641
642
647 public JournalStructureFinder getJournalStructureFinder() {
648 return journalStructureFinder;
649 }
650
651
656 public void setJournalStructureFinder(
657 JournalStructureFinder journalStructureFinder) {
658 this.journalStructureFinder = journalStructureFinder;
659 }
660
661
666 public JournalTemplateLocalService getJournalTemplateLocalService() {
667 return journalTemplateLocalService;
668 }
669
670
675 public void setJournalTemplateLocalService(
676 JournalTemplateLocalService journalTemplateLocalService) {
677 this.journalTemplateLocalService = journalTemplateLocalService;
678 }
679
680
685 public JournalTemplateService getJournalTemplateService() {
686 return journalTemplateService;
687 }
688
689
694 public void setJournalTemplateService(
695 JournalTemplateService journalTemplateService) {
696 this.journalTemplateService = journalTemplateService;
697 }
698
699
704 public JournalTemplatePersistence getJournalTemplatePersistence() {
705 return journalTemplatePersistence;
706 }
707
708
713 public void setJournalTemplatePersistence(
714 JournalTemplatePersistence journalTemplatePersistence) {
715 this.journalTemplatePersistence = journalTemplatePersistence;
716 }
717
718
723 public JournalTemplateFinder getJournalTemplateFinder() {
724 return journalTemplateFinder;
725 }
726
727
732 public void setJournalTemplateFinder(
733 JournalTemplateFinder journalTemplateFinder) {
734 this.journalTemplateFinder = journalTemplateFinder;
735 }
736
737
742 public CounterLocalService getCounterLocalService() {
743 return counterLocalService;
744 }
745
746
751 public void setCounterLocalService(CounterLocalService counterLocalService) {
752 this.counterLocalService = counterLocalService;
753 }
754
755
760 public GroupLocalService getGroupLocalService() {
761 return groupLocalService;
762 }
763
764
769 public void setGroupLocalService(GroupLocalService groupLocalService) {
770 this.groupLocalService = groupLocalService;
771 }
772
773
778 public GroupService getGroupService() {
779 return groupService;
780 }
781
782
787 public void setGroupService(GroupService groupService) {
788 this.groupService = groupService;
789 }
790
791
796 public GroupPersistence getGroupPersistence() {
797 return groupPersistence;
798 }
799
800
805 public void setGroupPersistence(GroupPersistence groupPersistence) {
806 this.groupPersistence = groupPersistence;
807 }
808
809
814 public GroupFinder getGroupFinder() {
815 return groupFinder;
816 }
817
818
823 public void setGroupFinder(GroupFinder groupFinder) {
824 this.groupFinder = groupFinder;
825 }
826
827
832 public ResourceLocalService getResourceLocalService() {
833 return resourceLocalService;
834 }
835
836
841 public void setResourceLocalService(
842 ResourceLocalService resourceLocalService) {
843 this.resourceLocalService = resourceLocalService;
844 }
845
846
851 public ResourceService getResourceService() {
852 return resourceService;
853 }
854
855
860 public void setResourceService(ResourceService resourceService) {
861 this.resourceService = resourceService;
862 }
863
864
869 public ResourcePersistence getResourcePersistence() {
870 return resourcePersistence;
871 }
872
873
878 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
879 this.resourcePersistence = resourcePersistence;
880 }
881
882
887 public ResourceFinder getResourceFinder() {
888 return resourceFinder;
889 }
890
891
896 public void setResourceFinder(ResourceFinder resourceFinder) {
897 this.resourceFinder = resourceFinder;
898 }
899
900
905 public UserLocalService getUserLocalService() {
906 return userLocalService;
907 }
908
909
914 public void setUserLocalService(UserLocalService userLocalService) {
915 this.userLocalService = userLocalService;
916 }
917
918
923 public UserService getUserService() {
924 return userService;
925 }
926
927
932 public void setUserService(UserService userService) {
933 this.userService = userService;
934 }
935
936
941 public UserPersistence getUserPersistence() {
942 return userPersistence;
943 }
944
945
950 public void setUserPersistence(UserPersistence userPersistence) {
951 this.userPersistence = userPersistence;
952 }
953
954
959 public UserFinder getUserFinder() {
960 return userFinder;
961 }
962
963
968 public void setUserFinder(UserFinder userFinder) {
969 this.userFinder = userFinder;
970 }
971
972
977 public WebDAVPropsLocalService getWebDAVPropsLocalService() {
978 return webDAVPropsLocalService;
979 }
980
981
986 public void setWebDAVPropsLocalService(
987 WebDAVPropsLocalService webDAVPropsLocalService) {
988 this.webDAVPropsLocalService = webDAVPropsLocalService;
989 }
990
991
996 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
997 return webDAVPropsPersistence;
998 }
999
1000
1005 public void setWebDAVPropsPersistence(
1006 WebDAVPropsPersistence webDAVPropsPersistence) {
1007 this.webDAVPropsPersistence = webDAVPropsPersistence;
1008 }
1009
1010
1015 public ExpandoValueLocalService getExpandoValueLocalService() {
1016 return expandoValueLocalService;
1017 }
1018
1019
1024 public void setExpandoValueLocalService(
1025 ExpandoValueLocalService expandoValueLocalService) {
1026 this.expandoValueLocalService = expandoValueLocalService;
1027 }
1028
1029
1034 public ExpandoValueService getExpandoValueService() {
1035 return expandoValueService;
1036 }
1037
1038
1043 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1044 this.expandoValueService = expandoValueService;
1045 }
1046
1047
1052 public ExpandoValuePersistence getExpandoValuePersistence() {
1053 return expandoValuePersistence;
1054 }
1055
1056
1061 public void setExpandoValuePersistence(
1062 ExpandoValuePersistence expandoValuePersistence) {
1063 this.expandoValuePersistence = expandoValuePersistence;
1064 }
1065
1066 public void afterPropertiesSet() {
1067 persistedModelLocalServiceRegistry.register("com.liferay.portlet.journal.model.JournalStructure",
1068 journalStructureLocalService);
1069 }
1070
1071 public void destroy() {
1072 persistedModelLocalServiceRegistry.unregister(
1073 "com.liferay.portlet.journal.model.JournalStructure");
1074 }
1075
1076
1081 public String getBeanIdentifier() {
1082 return _beanIdentifier;
1083 }
1084
1085
1090 public void setBeanIdentifier(String beanIdentifier) {
1091 _beanIdentifier = beanIdentifier;
1092 }
1093
1094 protected Class<?> getModelClass() {
1095 return JournalStructure.class;
1096 }
1097
1098 protected String getModelClassName() {
1099 return JournalStructure.class.getName();
1100 }
1101
1102
1107 protected void runSQL(String sql) throws SystemException {
1108 try {
1109 DataSource dataSource = journalStructurePersistence.getDataSource();
1110
1111 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1112 sql, new int[0]);
1113
1114 sqlUpdate.update();
1115 }
1116 catch (Exception e) {
1117 throw new SystemException(e);
1118 }
1119 }
1120
1121 @BeanReference(type = JournalArticleLocalService.class)
1122 protected JournalArticleLocalService journalArticleLocalService;
1123 @BeanReference(type = JournalArticleService.class)
1124 protected JournalArticleService journalArticleService;
1125 @BeanReference(type = JournalArticlePersistence.class)
1126 protected JournalArticlePersistence journalArticlePersistence;
1127 @BeanReference(type = JournalArticleFinder.class)
1128 protected JournalArticleFinder journalArticleFinder;
1129 @BeanReference(type = JournalArticleImageLocalService.class)
1130 protected JournalArticleImageLocalService journalArticleImageLocalService;
1131 @BeanReference(type = JournalArticleImagePersistence.class)
1132 protected JournalArticleImagePersistence journalArticleImagePersistence;
1133 @BeanReference(type = JournalArticleResourceLocalService.class)
1134 protected JournalArticleResourceLocalService journalArticleResourceLocalService;
1135 @BeanReference(type = JournalArticleResourcePersistence.class)
1136 protected JournalArticleResourcePersistence journalArticleResourcePersistence;
1137 @BeanReference(type = JournalContentSearchLocalService.class)
1138 protected JournalContentSearchLocalService journalContentSearchLocalService;
1139 @BeanReference(type = JournalContentSearchPersistence.class)
1140 protected JournalContentSearchPersistence journalContentSearchPersistence;
1141 @BeanReference(type = JournalFeedLocalService.class)
1142 protected JournalFeedLocalService journalFeedLocalService;
1143 @BeanReference(type = JournalFeedService.class)
1144 protected JournalFeedService journalFeedService;
1145 @BeanReference(type = JournalFeedPersistence.class)
1146 protected JournalFeedPersistence journalFeedPersistence;
1147 @BeanReference(type = JournalFeedFinder.class)
1148 protected JournalFeedFinder journalFeedFinder;
1149 @BeanReference(type = JournalStructureLocalService.class)
1150 protected JournalStructureLocalService journalStructureLocalService;
1151 @BeanReference(type = JournalStructureService.class)
1152 protected JournalStructureService journalStructureService;
1153 @BeanReference(type = JournalStructurePersistence.class)
1154 protected JournalStructurePersistence journalStructurePersistence;
1155 @BeanReference(type = JournalStructureFinder.class)
1156 protected JournalStructureFinder journalStructureFinder;
1157 @BeanReference(type = JournalTemplateLocalService.class)
1158 protected JournalTemplateLocalService journalTemplateLocalService;
1159 @BeanReference(type = JournalTemplateService.class)
1160 protected JournalTemplateService journalTemplateService;
1161 @BeanReference(type = JournalTemplatePersistence.class)
1162 protected JournalTemplatePersistence journalTemplatePersistence;
1163 @BeanReference(type = JournalTemplateFinder.class)
1164 protected JournalTemplateFinder journalTemplateFinder;
1165 @BeanReference(type = CounterLocalService.class)
1166 protected CounterLocalService counterLocalService;
1167 @BeanReference(type = GroupLocalService.class)
1168 protected GroupLocalService groupLocalService;
1169 @BeanReference(type = GroupService.class)
1170 protected GroupService groupService;
1171 @BeanReference(type = GroupPersistence.class)
1172 protected GroupPersistence groupPersistence;
1173 @BeanReference(type = GroupFinder.class)
1174 protected GroupFinder groupFinder;
1175 @BeanReference(type = ResourceLocalService.class)
1176 protected ResourceLocalService resourceLocalService;
1177 @BeanReference(type = ResourceService.class)
1178 protected ResourceService resourceService;
1179 @BeanReference(type = ResourcePersistence.class)
1180 protected ResourcePersistence resourcePersistence;
1181 @BeanReference(type = ResourceFinder.class)
1182 protected ResourceFinder resourceFinder;
1183 @BeanReference(type = UserLocalService.class)
1184 protected UserLocalService userLocalService;
1185 @BeanReference(type = UserService.class)
1186 protected UserService userService;
1187 @BeanReference(type = UserPersistence.class)
1188 protected UserPersistence userPersistence;
1189 @BeanReference(type = UserFinder.class)
1190 protected UserFinder userFinder;
1191 @BeanReference(type = WebDAVPropsLocalService.class)
1192 protected WebDAVPropsLocalService webDAVPropsLocalService;
1193 @BeanReference(type = WebDAVPropsPersistence.class)
1194 protected WebDAVPropsPersistence webDAVPropsPersistence;
1195 @BeanReference(type = ExpandoValueLocalService.class)
1196 protected ExpandoValueLocalService expandoValueLocalService;
1197 @BeanReference(type = ExpandoValueService.class)
1198 protected ExpandoValueService expandoValueService;
1199 @BeanReference(type = ExpandoValuePersistence.class)
1200 protected ExpandoValuePersistence expandoValuePersistence;
1201 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1202 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1203 private String _beanIdentifier;
1204 }