001
014
015 package com.liferay.portlet.calendar.service.base;
016
017 import com.liferay.counter.service.CounterLocalService;
018
019 import com.liferay.mail.service.MailService;
020
021 import com.liferay.portal.kernel.bean.BeanReference;
022 import com.liferay.portal.kernel.bean.IdentifiableBean;
023 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
026 import com.liferay.portal.kernel.exception.PortalException;
027 import com.liferay.portal.kernel.exception.SystemException;
028 import com.liferay.portal.kernel.log.Log;
029 import com.liferay.portal.kernel.log.LogFactoryUtil;
030 import com.liferay.portal.kernel.search.Indexer;
031 import com.liferay.portal.kernel.search.IndexerRegistryUtil;
032 import com.liferay.portal.kernel.search.SearchException;
033 import com.liferay.portal.kernel.util.OrderByComparator;
034 import com.liferay.portal.model.PersistedModel;
035 import com.liferay.portal.service.CompanyLocalService;
036 import com.liferay.portal.service.CompanyService;
037 import com.liferay.portal.service.GroupLocalService;
038 import com.liferay.portal.service.GroupService;
039 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
040 import com.liferay.portal.service.PortletPreferencesLocalService;
041 import com.liferay.portal.service.PortletPreferencesService;
042 import com.liferay.portal.service.ResourceLocalService;
043 import com.liferay.portal.service.ResourceService;
044 import com.liferay.portal.service.UserLocalService;
045 import com.liferay.portal.service.UserService;
046 import com.liferay.portal.service.persistence.CompanyPersistence;
047 import com.liferay.portal.service.persistence.GroupFinder;
048 import com.liferay.portal.service.persistence.GroupPersistence;
049 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
050 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
051 import com.liferay.portal.service.persistence.ResourceFinder;
052 import com.liferay.portal.service.persistence.ResourcePersistence;
053 import com.liferay.portal.service.persistence.UserFinder;
054 import com.liferay.portal.service.persistence.UserPersistence;
055
056 import com.liferay.portlet.asset.service.AssetEntryLocalService;
057 import com.liferay.portlet.asset.service.AssetEntryService;
058 import com.liferay.portlet.asset.service.AssetLinkLocalService;
059 import com.liferay.portlet.asset.service.AssetTagLocalService;
060 import com.liferay.portlet.asset.service.AssetTagService;
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.calendar.model.CalEvent;
067 import com.liferay.portlet.calendar.service.CalEventLocalService;
068 import com.liferay.portlet.calendar.service.CalEventService;
069 import com.liferay.portlet.calendar.service.persistence.CalEventFinder;
070 import com.liferay.portlet.calendar.service.persistence.CalEventPersistence;
071 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
072 import com.liferay.portlet.expando.service.ExpandoValueService;
073 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
074 import com.liferay.portlet.social.service.SocialActivityLocalService;
075 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
076 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
077
078 import java.io.Serializable;
079
080 import java.util.List;
081
082 import javax.sql.DataSource;
083
084
096 public abstract class CalEventLocalServiceBaseImpl
097 implements CalEventLocalService, IdentifiableBean {
098
103
104
111 public CalEvent addCalEvent(CalEvent calEvent) throws SystemException {
112 calEvent.setNew(true);
113
114 calEvent = calEventPersistence.update(calEvent, false);
115
116 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
117
118 if (indexer != null) {
119 try {
120 indexer.reindex(calEvent);
121 }
122 catch (SearchException se) {
123 if (_log.isWarnEnabled()) {
124 _log.warn(se, se);
125 }
126 }
127 }
128
129 return calEvent;
130 }
131
132
138 public CalEvent createCalEvent(long eventId) {
139 return calEventPersistence.create(eventId);
140 }
141
142
149 public void deleteCalEvent(long eventId)
150 throws PortalException, SystemException {
151 CalEvent calEvent = calEventPersistence.remove(eventId);
152
153 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
154
155 if (indexer != null) {
156 try {
157 indexer.delete(calEvent);
158 }
159 catch (SearchException se) {
160 if (_log.isWarnEnabled()) {
161 _log.warn(se, se);
162 }
163 }
164 }
165 }
166
167
173 public void deleteCalEvent(CalEvent calEvent) throws SystemException {
174 calEventPersistence.remove(calEvent);
175
176 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
177
178 if (indexer != null) {
179 try {
180 indexer.delete(calEvent);
181 }
182 catch (SearchException se) {
183 if (_log.isWarnEnabled()) {
184 _log.warn(se, se);
185 }
186 }
187 }
188 }
189
190
197 @SuppressWarnings("rawtypes")
198 public List dynamicQuery(DynamicQuery dynamicQuery)
199 throws SystemException {
200 return calEventPersistence.findWithDynamicQuery(dynamicQuery);
201 }
202
203
216 @SuppressWarnings("rawtypes")
217 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
218 throws SystemException {
219 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start, end);
220 }
221
222
236 @SuppressWarnings("rawtypes")
237 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
238 OrderByComparator orderByComparator) throws SystemException {
239 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start,
240 end, orderByComparator);
241 }
242
243
250 public long dynamicQueryCount(DynamicQuery dynamicQuery)
251 throws SystemException {
252 return calEventPersistence.countWithDynamicQuery(dynamicQuery);
253 }
254
255 public CalEvent fetchCalEvent(long eventId) throws SystemException {
256 return calEventPersistence.fetchByPrimaryKey(eventId);
257 }
258
259
267 public CalEvent getCalEvent(long eventId)
268 throws PortalException, SystemException {
269 return calEventPersistence.findByPrimaryKey(eventId);
270 }
271
272 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
273 throws PortalException, SystemException {
274 return calEventPersistence.findByPrimaryKey(primaryKeyObj);
275 }
276
277
286 public CalEvent getCalEventByUuidAndGroupId(String uuid, long groupId)
287 throws PortalException, SystemException {
288 return calEventPersistence.findByUUID_G(uuid, groupId);
289 }
290
291
303 public List<CalEvent> getCalEvents(int start, int end)
304 throws SystemException {
305 return calEventPersistence.findAll(start, end);
306 }
307
308
314 public int getCalEventsCount() throws SystemException {
315 return calEventPersistence.countAll();
316 }
317
318
325 public CalEvent updateCalEvent(CalEvent calEvent) throws SystemException {
326 return updateCalEvent(calEvent, true);
327 }
328
329
337 public CalEvent updateCalEvent(CalEvent calEvent, boolean merge)
338 throws SystemException {
339 calEvent.setNew(false);
340
341 calEvent = calEventPersistence.update(calEvent, merge);
342
343 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
344
345 if (indexer != null) {
346 try {
347 indexer.reindex(calEvent);
348 }
349 catch (SearchException se) {
350 if (_log.isWarnEnabled()) {
351 _log.warn(se, se);
352 }
353 }
354 }
355
356 return calEvent;
357 }
358
359
364 public CalEventLocalService getCalEventLocalService() {
365 return calEventLocalService;
366 }
367
368
373 public void setCalEventLocalService(
374 CalEventLocalService calEventLocalService) {
375 this.calEventLocalService = calEventLocalService;
376 }
377
378
383 public CalEventService getCalEventService() {
384 return calEventService;
385 }
386
387
392 public void setCalEventService(CalEventService calEventService) {
393 this.calEventService = calEventService;
394 }
395
396
401 public CalEventPersistence getCalEventPersistence() {
402 return calEventPersistence;
403 }
404
405
410 public void setCalEventPersistence(CalEventPersistence calEventPersistence) {
411 this.calEventPersistence = calEventPersistence;
412 }
413
414
419 public CalEventFinder getCalEventFinder() {
420 return calEventFinder;
421 }
422
423
428 public void setCalEventFinder(CalEventFinder calEventFinder) {
429 this.calEventFinder = calEventFinder;
430 }
431
432
437 public CounterLocalService getCounterLocalService() {
438 return counterLocalService;
439 }
440
441
446 public void setCounterLocalService(CounterLocalService counterLocalService) {
447 this.counterLocalService = counterLocalService;
448 }
449
450
455 public MailService getMailService() {
456 return mailService;
457 }
458
459
464 public void setMailService(MailService mailService) {
465 this.mailService = mailService;
466 }
467
468
473 public CompanyLocalService getCompanyLocalService() {
474 return companyLocalService;
475 }
476
477
482 public void setCompanyLocalService(CompanyLocalService companyLocalService) {
483 this.companyLocalService = companyLocalService;
484 }
485
486
491 public CompanyService getCompanyService() {
492 return companyService;
493 }
494
495
500 public void setCompanyService(CompanyService companyService) {
501 this.companyService = companyService;
502 }
503
504
509 public CompanyPersistence getCompanyPersistence() {
510 return companyPersistence;
511 }
512
513
518 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
519 this.companyPersistence = companyPersistence;
520 }
521
522
527 public GroupLocalService getGroupLocalService() {
528 return groupLocalService;
529 }
530
531
536 public void setGroupLocalService(GroupLocalService groupLocalService) {
537 this.groupLocalService = groupLocalService;
538 }
539
540
545 public GroupService getGroupService() {
546 return groupService;
547 }
548
549
554 public void setGroupService(GroupService groupService) {
555 this.groupService = groupService;
556 }
557
558
563 public GroupPersistence getGroupPersistence() {
564 return groupPersistence;
565 }
566
567
572 public void setGroupPersistence(GroupPersistence groupPersistence) {
573 this.groupPersistence = groupPersistence;
574 }
575
576
581 public GroupFinder getGroupFinder() {
582 return groupFinder;
583 }
584
585
590 public void setGroupFinder(GroupFinder groupFinder) {
591 this.groupFinder = groupFinder;
592 }
593
594
599 public PortletPreferencesLocalService getPortletPreferencesLocalService() {
600 return portletPreferencesLocalService;
601 }
602
603
608 public void setPortletPreferencesLocalService(
609 PortletPreferencesLocalService portletPreferencesLocalService) {
610 this.portletPreferencesLocalService = portletPreferencesLocalService;
611 }
612
613
618 public PortletPreferencesService getPortletPreferencesService() {
619 return portletPreferencesService;
620 }
621
622
627 public void setPortletPreferencesService(
628 PortletPreferencesService portletPreferencesService) {
629 this.portletPreferencesService = portletPreferencesService;
630 }
631
632
637 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
638 return portletPreferencesPersistence;
639 }
640
641
646 public void setPortletPreferencesPersistence(
647 PortletPreferencesPersistence portletPreferencesPersistence) {
648 this.portletPreferencesPersistence = portletPreferencesPersistence;
649 }
650
651
656 public PortletPreferencesFinder getPortletPreferencesFinder() {
657 return portletPreferencesFinder;
658 }
659
660
665 public void setPortletPreferencesFinder(
666 PortletPreferencesFinder portletPreferencesFinder) {
667 this.portletPreferencesFinder = portletPreferencesFinder;
668 }
669
670
675 public ResourceLocalService getResourceLocalService() {
676 return resourceLocalService;
677 }
678
679
684 public void setResourceLocalService(
685 ResourceLocalService resourceLocalService) {
686 this.resourceLocalService = resourceLocalService;
687 }
688
689
694 public ResourceService getResourceService() {
695 return resourceService;
696 }
697
698
703 public void setResourceService(ResourceService resourceService) {
704 this.resourceService = resourceService;
705 }
706
707
712 public ResourcePersistence getResourcePersistence() {
713 return resourcePersistence;
714 }
715
716
721 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
722 this.resourcePersistence = resourcePersistence;
723 }
724
725
730 public ResourceFinder getResourceFinder() {
731 return resourceFinder;
732 }
733
734
739 public void setResourceFinder(ResourceFinder resourceFinder) {
740 this.resourceFinder = resourceFinder;
741 }
742
743
748 public UserLocalService getUserLocalService() {
749 return userLocalService;
750 }
751
752
757 public void setUserLocalService(UserLocalService userLocalService) {
758 this.userLocalService = userLocalService;
759 }
760
761
766 public UserService getUserService() {
767 return userService;
768 }
769
770
775 public void setUserService(UserService userService) {
776 this.userService = userService;
777 }
778
779
784 public UserPersistence getUserPersistence() {
785 return userPersistence;
786 }
787
788
793 public void setUserPersistence(UserPersistence userPersistence) {
794 this.userPersistence = userPersistence;
795 }
796
797
802 public UserFinder getUserFinder() {
803 return userFinder;
804 }
805
806
811 public void setUserFinder(UserFinder userFinder) {
812 this.userFinder = userFinder;
813 }
814
815
820 public AssetEntryLocalService getAssetEntryLocalService() {
821 return assetEntryLocalService;
822 }
823
824
829 public void setAssetEntryLocalService(
830 AssetEntryLocalService assetEntryLocalService) {
831 this.assetEntryLocalService = assetEntryLocalService;
832 }
833
834
839 public AssetEntryService getAssetEntryService() {
840 return assetEntryService;
841 }
842
843
848 public void setAssetEntryService(AssetEntryService assetEntryService) {
849 this.assetEntryService = assetEntryService;
850 }
851
852
857 public AssetEntryPersistence getAssetEntryPersistence() {
858 return assetEntryPersistence;
859 }
860
861
866 public void setAssetEntryPersistence(
867 AssetEntryPersistence assetEntryPersistence) {
868 this.assetEntryPersistence = assetEntryPersistence;
869 }
870
871
876 public AssetEntryFinder getAssetEntryFinder() {
877 return assetEntryFinder;
878 }
879
880
885 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
886 this.assetEntryFinder = assetEntryFinder;
887 }
888
889
894 public AssetLinkLocalService getAssetLinkLocalService() {
895 return assetLinkLocalService;
896 }
897
898
903 public void setAssetLinkLocalService(
904 AssetLinkLocalService assetLinkLocalService) {
905 this.assetLinkLocalService = assetLinkLocalService;
906 }
907
908
913 public AssetLinkPersistence getAssetLinkPersistence() {
914 return assetLinkPersistence;
915 }
916
917
922 public void setAssetLinkPersistence(
923 AssetLinkPersistence assetLinkPersistence) {
924 this.assetLinkPersistence = assetLinkPersistence;
925 }
926
927
932 public AssetTagLocalService getAssetTagLocalService() {
933 return assetTagLocalService;
934 }
935
936
941 public void setAssetTagLocalService(
942 AssetTagLocalService assetTagLocalService) {
943 this.assetTagLocalService = assetTagLocalService;
944 }
945
946
951 public AssetTagService getAssetTagService() {
952 return assetTagService;
953 }
954
955
960 public void setAssetTagService(AssetTagService assetTagService) {
961 this.assetTagService = assetTagService;
962 }
963
964
969 public AssetTagPersistence getAssetTagPersistence() {
970 return assetTagPersistence;
971 }
972
973
978 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
979 this.assetTagPersistence = assetTagPersistence;
980 }
981
982
987 public AssetTagFinder getAssetTagFinder() {
988 return assetTagFinder;
989 }
990
991
996 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
997 this.assetTagFinder = assetTagFinder;
998 }
999
1000
1005 public ExpandoValueLocalService getExpandoValueLocalService() {
1006 return expandoValueLocalService;
1007 }
1008
1009
1014 public void setExpandoValueLocalService(
1015 ExpandoValueLocalService expandoValueLocalService) {
1016 this.expandoValueLocalService = expandoValueLocalService;
1017 }
1018
1019
1024 public ExpandoValueService getExpandoValueService() {
1025 return expandoValueService;
1026 }
1027
1028
1033 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1034 this.expandoValueService = expandoValueService;
1035 }
1036
1037
1042 public ExpandoValuePersistence getExpandoValuePersistence() {
1043 return expandoValuePersistence;
1044 }
1045
1046
1051 public void setExpandoValuePersistence(
1052 ExpandoValuePersistence expandoValuePersistence) {
1053 this.expandoValuePersistence = expandoValuePersistence;
1054 }
1055
1056
1061 public SocialActivityLocalService getSocialActivityLocalService() {
1062 return socialActivityLocalService;
1063 }
1064
1065
1070 public void setSocialActivityLocalService(
1071 SocialActivityLocalService socialActivityLocalService) {
1072 this.socialActivityLocalService = socialActivityLocalService;
1073 }
1074
1075
1080 public SocialActivityPersistence getSocialActivityPersistence() {
1081 return socialActivityPersistence;
1082 }
1083
1084
1089 public void setSocialActivityPersistence(
1090 SocialActivityPersistence socialActivityPersistence) {
1091 this.socialActivityPersistence = socialActivityPersistence;
1092 }
1093
1094
1099 public SocialActivityFinder getSocialActivityFinder() {
1100 return socialActivityFinder;
1101 }
1102
1103
1108 public void setSocialActivityFinder(
1109 SocialActivityFinder socialActivityFinder) {
1110 this.socialActivityFinder = socialActivityFinder;
1111 }
1112
1113 public void afterPropertiesSet() {
1114 persistedModelLocalServiceRegistry.register("com.liferay.portlet.calendar.model.CalEvent",
1115 calEventLocalService);
1116 }
1117
1118 public void destroy() {
1119 persistedModelLocalServiceRegistry.unregister(
1120 "com.liferay.portlet.calendar.model.CalEvent");
1121 }
1122
1123
1128 public String getBeanIdentifier() {
1129 return _beanIdentifier;
1130 }
1131
1132
1137 public void setBeanIdentifier(String beanIdentifier) {
1138 _beanIdentifier = beanIdentifier;
1139 }
1140
1141 protected ClassLoader getClassLoader() {
1142 Class<?> clazz = getClass();
1143
1144 return clazz.getClassLoader();
1145 }
1146
1147 protected Class<?> getModelClass() {
1148 return CalEvent.class;
1149 }
1150
1151 protected String getModelClassName() {
1152 return CalEvent.class.getName();
1153 }
1154
1155
1160 protected void runSQL(String sql) throws SystemException {
1161 try {
1162 DataSource dataSource = calEventPersistence.getDataSource();
1163
1164 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1165 sql, new int[0]);
1166
1167 sqlUpdate.update();
1168 }
1169 catch (Exception e) {
1170 throw new SystemException(e);
1171 }
1172 }
1173
1174 @BeanReference(type = CalEventLocalService.class)
1175 protected CalEventLocalService calEventLocalService;
1176 @BeanReference(type = CalEventService.class)
1177 protected CalEventService calEventService;
1178 @BeanReference(type = CalEventPersistence.class)
1179 protected CalEventPersistence calEventPersistence;
1180 @BeanReference(type = CalEventFinder.class)
1181 protected CalEventFinder calEventFinder;
1182 @BeanReference(type = CounterLocalService.class)
1183 protected CounterLocalService counterLocalService;
1184 @BeanReference(type = MailService.class)
1185 protected MailService mailService;
1186 @BeanReference(type = CompanyLocalService.class)
1187 protected CompanyLocalService companyLocalService;
1188 @BeanReference(type = CompanyService.class)
1189 protected CompanyService companyService;
1190 @BeanReference(type = CompanyPersistence.class)
1191 protected CompanyPersistence companyPersistence;
1192 @BeanReference(type = GroupLocalService.class)
1193 protected GroupLocalService groupLocalService;
1194 @BeanReference(type = GroupService.class)
1195 protected GroupService groupService;
1196 @BeanReference(type = GroupPersistence.class)
1197 protected GroupPersistence groupPersistence;
1198 @BeanReference(type = GroupFinder.class)
1199 protected GroupFinder groupFinder;
1200 @BeanReference(type = PortletPreferencesLocalService.class)
1201 protected PortletPreferencesLocalService portletPreferencesLocalService;
1202 @BeanReference(type = PortletPreferencesService.class)
1203 protected PortletPreferencesService portletPreferencesService;
1204 @BeanReference(type = PortletPreferencesPersistence.class)
1205 protected PortletPreferencesPersistence portletPreferencesPersistence;
1206 @BeanReference(type = PortletPreferencesFinder.class)
1207 protected PortletPreferencesFinder portletPreferencesFinder;
1208 @BeanReference(type = ResourceLocalService.class)
1209 protected ResourceLocalService resourceLocalService;
1210 @BeanReference(type = ResourceService.class)
1211 protected ResourceService resourceService;
1212 @BeanReference(type = ResourcePersistence.class)
1213 protected ResourcePersistence resourcePersistence;
1214 @BeanReference(type = ResourceFinder.class)
1215 protected ResourceFinder resourceFinder;
1216 @BeanReference(type = UserLocalService.class)
1217 protected UserLocalService userLocalService;
1218 @BeanReference(type = UserService.class)
1219 protected UserService userService;
1220 @BeanReference(type = UserPersistence.class)
1221 protected UserPersistence userPersistence;
1222 @BeanReference(type = UserFinder.class)
1223 protected UserFinder userFinder;
1224 @BeanReference(type = AssetEntryLocalService.class)
1225 protected AssetEntryLocalService assetEntryLocalService;
1226 @BeanReference(type = AssetEntryService.class)
1227 protected AssetEntryService assetEntryService;
1228 @BeanReference(type = AssetEntryPersistence.class)
1229 protected AssetEntryPersistence assetEntryPersistence;
1230 @BeanReference(type = AssetEntryFinder.class)
1231 protected AssetEntryFinder assetEntryFinder;
1232 @BeanReference(type = AssetLinkLocalService.class)
1233 protected AssetLinkLocalService assetLinkLocalService;
1234 @BeanReference(type = AssetLinkPersistence.class)
1235 protected AssetLinkPersistence assetLinkPersistence;
1236 @BeanReference(type = AssetTagLocalService.class)
1237 protected AssetTagLocalService assetTagLocalService;
1238 @BeanReference(type = AssetTagService.class)
1239 protected AssetTagService assetTagService;
1240 @BeanReference(type = AssetTagPersistence.class)
1241 protected AssetTagPersistence assetTagPersistence;
1242 @BeanReference(type = AssetTagFinder.class)
1243 protected AssetTagFinder assetTagFinder;
1244 @BeanReference(type = ExpandoValueLocalService.class)
1245 protected ExpandoValueLocalService expandoValueLocalService;
1246 @BeanReference(type = ExpandoValueService.class)
1247 protected ExpandoValueService expandoValueService;
1248 @BeanReference(type = ExpandoValuePersistence.class)
1249 protected ExpandoValuePersistence expandoValuePersistence;
1250 @BeanReference(type = SocialActivityLocalService.class)
1251 protected SocialActivityLocalService socialActivityLocalService;
1252 @BeanReference(type = SocialActivityPersistence.class)
1253 protected SocialActivityPersistence socialActivityPersistence;
1254 @BeanReference(type = SocialActivityFinder.class)
1255 protected SocialActivityFinder socialActivityFinder;
1256 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1257 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1258 private static Log _log = LogFactoryUtil.getLog(CalEventLocalServiceBaseImpl.class);
1259 private String _beanIdentifier;
1260 }