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.dao.orm.DynamicQueryFactoryUtil;
027 import com.liferay.portal.kernel.exception.PortalException;
028 import com.liferay.portal.kernel.exception.SystemException;
029 import com.liferay.portal.kernel.search.Indexable;
030 import com.liferay.portal.kernel.search.IndexableType;
031 import com.liferay.portal.kernel.util.OrderByComparator;
032 import com.liferay.portal.model.PersistedModel;
033 import com.liferay.portal.service.BaseLocalServiceImpl;
034 import com.liferay.portal.service.CompanyLocalService;
035 import com.liferay.portal.service.CompanyService;
036 import com.liferay.portal.service.GroupLocalService;
037 import com.liferay.portal.service.GroupService;
038 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
039 import com.liferay.portal.service.PortletPreferencesLocalService;
040 import com.liferay.portal.service.PortletPreferencesService;
041 import com.liferay.portal.service.ResourceLocalService;
042 import com.liferay.portal.service.SubscriptionLocalService;
043 import com.liferay.portal.service.UserLocalService;
044 import com.liferay.portal.service.UserService;
045 import com.liferay.portal.service.persistence.CompanyPersistence;
046 import com.liferay.portal.service.persistence.GroupFinder;
047 import com.liferay.portal.service.persistence.GroupPersistence;
048 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
049 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
050 import com.liferay.portal.service.persistence.SubscriptionPersistence;
051 import com.liferay.portal.service.persistence.UserFinder;
052 import com.liferay.portal.service.persistence.UserPersistence;
053
054 import com.liferay.portlet.asset.service.AssetEntryLocalService;
055 import com.liferay.portlet.asset.service.AssetEntryService;
056 import com.liferay.portlet.asset.service.AssetLinkLocalService;
057 import com.liferay.portlet.asset.service.AssetTagLocalService;
058 import com.liferay.portlet.asset.service.AssetTagService;
059 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
060 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
061 import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
062 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
063 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
064 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
065 import com.liferay.portlet.calendar.model.CalEvent;
066 import com.liferay.portlet.calendar.service.CalEventLocalService;
067 import com.liferay.portlet.calendar.service.CalEventService;
068 import com.liferay.portlet.calendar.service.persistence.CalEventFinder;
069 import com.liferay.portlet.calendar.service.persistence.CalEventPersistence;
070 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
071 import com.liferay.portlet.expando.service.ExpandoValueService;
072 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
073 import com.liferay.portlet.messageboards.service.MBMessageLocalService;
074 import com.liferay.portlet.messageboards.service.MBMessageService;
075 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
076 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
077 import com.liferay.portlet.social.service.SocialActivityLocalService;
078 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
079 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
080
081 import java.io.Serializable;
082
083 import java.util.List;
084
085 import javax.sql.DataSource;
086
087
099 public abstract class CalEventLocalServiceBaseImpl extends BaseLocalServiceImpl
100 implements CalEventLocalService, IdentifiableBean {
101
106
107
114 @Indexable(type = IndexableType.REINDEX)
115 public CalEvent addCalEvent(CalEvent calEvent) throws SystemException {
116 calEvent.setNew(true);
117
118 return calEventPersistence.update(calEvent);
119 }
120
121
127 public CalEvent createCalEvent(long eventId) {
128 return calEventPersistence.create(eventId);
129 }
130
131
139 @Indexable(type = IndexableType.DELETE)
140 public CalEvent deleteCalEvent(long eventId)
141 throws PortalException, SystemException {
142 return calEventPersistence.remove(eventId);
143 }
144
145
152 @Indexable(type = IndexableType.DELETE)
153 public CalEvent deleteCalEvent(CalEvent calEvent) throws SystemException {
154 return calEventPersistence.remove(calEvent);
155 }
156
157 public DynamicQuery dynamicQuery() {
158 Class<?> clazz = getClass();
159
160 return DynamicQueryFactoryUtil.forClass(CalEvent.class,
161 clazz.getClassLoader());
162 }
163
164
171 @SuppressWarnings("rawtypes")
172 public List dynamicQuery(DynamicQuery dynamicQuery)
173 throws SystemException {
174 return calEventPersistence.findWithDynamicQuery(dynamicQuery);
175 }
176
177
190 @SuppressWarnings("rawtypes")
191 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
192 throws SystemException {
193 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start, end);
194 }
195
196
210 @SuppressWarnings("rawtypes")
211 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
212 OrderByComparator orderByComparator) throws SystemException {
213 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start,
214 end, orderByComparator);
215 }
216
217
224 public long dynamicQueryCount(DynamicQuery dynamicQuery)
225 throws SystemException {
226 return calEventPersistence.countWithDynamicQuery(dynamicQuery);
227 }
228
229 public CalEvent fetchCalEvent(long eventId) throws SystemException {
230 return calEventPersistence.fetchByPrimaryKey(eventId);
231 }
232
233
241 public CalEvent getCalEvent(long eventId)
242 throws PortalException, SystemException {
243 return calEventPersistence.findByPrimaryKey(eventId);
244 }
245
246 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
247 throws PortalException, SystemException {
248 return calEventPersistence.findByPrimaryKey(primaryKeyObj);
249 }
250
251
260 public CalEvent getCalEventByUuidAndGroupId(String uuid, long groupId)
261 throws PortalException, SystemException {
262 return calEventPersistence.findByUUID_G(uuid, groupId);
263 }
264
265
277 public List<CalEvent> getCalEvents(int start, int end)
278 throws SystemException {
279 return calEventPersistence.findAll(start, end);
280 }
281
282
288 public int getCalEventsCount() throws SystemException {
289 return calEventPersistence.countAll();
290 }
291
292
299 @Indexable(type = IndexableType.REINDEX)
300 public CalEvent updateCalEvent(CalEvent calEvent) throws SystemException {
301 return calEventPersistence.update(calEvent);
302 }
303
304
309 public CalEventLocalService getCalEventLocalService() {
310 return calEventLocalService;
311 }
312
313
318 public void setCalEventLocalService(
319 CalEventLocalService calEventLocalService) {
320 this.calEventLocalService = calEventLocalService;
321 }
322
323
328 public CalEventService getCalEventService() {
329 return calEventService;
330 }
331
332
337 public void setCalEventService(CalEventService calEventService) {
338 this.calEventService = calEventService;
339 }
340
341
346 public CalEventPersistence getCalEventPersistence() {
347 return calEventPersistence;
348 }
349
350
355 public void setCalEventPersistence(CalEventPersistence calEventPersistence) {
356 this.calEventPersistence = calEventPersistence;
357 }
358
359
364 public CalEventFinder getCalEventFinder() {
365 return calEventFinder;
366 }
367
368
373 public void setCalEventFinder(CalEventFinder calEventFinder) {
374 this.calEventFinder = calEventFinder;
375 }
376
377
382 public CounterLocalService getCounterLocalService() {
383 return counterLocalService;
384 }
385
386
391 public void setCounterLocalService(CounterLocalService counterLocalService) {
392 this.counterLocalService = counterLocalService;
393 }
394
395
400 public MailService getMailService() {
401 return mailService;
402 }
403
404
409 public void setMailService(MailService mailService) {
410 this.mailService = mailService;
411 }
412
413
418 public CompanyLocalService getCompanyLocalService() {
419 return companyLocalService;
420 }
421
422
427 public void setCompanyLocalService(CompanyLocalService companyLocalService) {
428 this.companyLocalService = companyLocalService;
429 }
430
431
436 public CompanyService getCompanyService() {
437 return companyService;
438 }
439
440
445 public void setCompanyService(CompanyService companyService) {
446 this.companyService = companyService;
447 }
448
449
454 public CompanyPersistence getCompanyPersistence() {
455 return companyPersistence;
456 }
457
458
463 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
464 this.companyPersistence = companyPersistence;
465 }
466
467
472 public GroupLocalService getGroupLocalService() {
473 return groupLocalService;
474 }
475
476
481 public void setGroupLocalService(GroupLocalService groupLocalService) {
482 this.groupLocalService = groupLocalService;
483 }
484
485
490 public GroupService getGroupService() {
491 return groupService;
492 }
493
494
499 public void setGroupService(GroupService groupService) {
500 this.groupService = groupService;
501 }
502
503
508 public GroupPersistence getGroupPersistence() {
509 return groupPersistence;
510 }
511
512
517 public void setGroupPersistence(GroupPersistence groupPersistence) {
518 this.groupPersistence = groupPersistence;
519 }
520
521
526 public GroupFinder getGroupFinder() {
527 return groupFinder;
528 }
529
530
535 public void setGroupFinder(GroupFinder groupFinder) {
536 this.groupFinder = groupFinder;
537 }
538
539
544 public PortletPreferencesLocalService getPortletPreferencesLocalService() {
545 return portletPreferencesLocalService;
546 }
547
548
553 public void setPortletPreferencesLocalService(
554 PortletPreferencesLocalService portletPreferencesLocalService) {
555 this.portletPreferencesLocalService = portletPreferencesLocalService;
556 }
557
558
563 public PortletPreferencesService getPortletPreferencesService() {
564 return portletPreferencesService;
565 }
566
567
572 public void setPortletPreferencesService(
573 PortletPreferencesService portletPreferencesService) {
574 this.portletPreferencesService = portletPreferencesService;
575 }
576
577
582 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
583 return portletPreferencesPersistence;
584 }
585
586
591 public void setPortletPreferencesPersistence(
592 PortletPreferencesPersistence portletPreferencesPersistence) {
593 this.portletPreferencesPersistence = portletPreferencesPersistence;
594 }
595
596
601 public PortletPreferencesFinder getPortletPreferencesFinder() {
602 return portletPreferencesFinder;
603 }
604
605
610 public void setPortletPreferencesFinder(
611 PortletPreferencesFinder portletPreferencesFinder) {
612 this.portletPreferencesFinder = portletPreferencesFinder;
613 }
614
615
620 public ResourceLocalService getResourceLocalService() {
621 return resourceLocalService;
622 }
623
624
629 public void setResourceLocalService(
630 ResourceLocalService resourceLocalService) {
631 this.resourceLocalService = resourceLocalService;
632 }
633
634
639 public SubscriptionLocalService getSubscriptionLocalService() {
640 return subscriptionLocalService;
641 }
642
643
648 public void setSubscriptionLocalService(
649 SubscriptionLocalService subscriptionLocalService) {
650 this.subscriptionLocalService = subscriptionLocalService;
651 }
652
653
658 public SubscriptionPersistence getSubscriptionPersistence() {
659 return subscriptionPersistence;
660 }
661
662
667 public void setSubscriptionPersistence(
668 SubscriptionPersistence subscriptionPersistence) {
669 this.subscriptionPersistence = subscriptionPersistence;
670 }
671
672
677 public UserLocalService getUserLocalService() {
678 return userLocalService;
679 }
680
681
686 public void setUserLocalService(UserLocalService userLocalService) {
687 this.userLocalService = userLocalService;
688 }
689
690
695 public UserService getUserService() {
696 return userService;
697 }
698
699
704 public void setUserService(UserService userService) {
705 this.userService = userService;
706 }
707
708
713 public UserPersistence getUserPersistence() {
714 return userPersistence;
715 }
716
717
722 public void setUserPersistence(UserPersistence userPersistence) {
723 this.userPersistence = userPersistence;
724 }
725
726
731 public UserFinder getUserFinder() {
732 return userFinder;
733 }
734
735
740 public void setUserFinder(UserFinder userFinder) {
741 this.userFinder = userFinder;
742 }
743
744
749 public AssetEntryLocalService getAssetEntryLocalService() {
750 return assetEntryLocalService;
751 }
752
753
758 public void setAssetEntryLocalService(
759 AssetEntryLocalService assetEntryLocalService) {
760 this.assetEntryLocalService = assetEntryLocalService;
761 }
762
763
768 public AssetEntryService getAssetEntryService() {
769 return assetEntryService;
770 }
771
772
777 public void setAssetEntryService(AssetEntryService assetEntryService) {
778 this.assetEntryService = assetEntryService;
779 }
780
781
786 public AssetEntryPersistence getAssetEntryPersistence() {
787 return assetEntryPersistence;
788 }
789
790
795 public void setAssetEntryPersistence(
796 AssetEntryPersistence assetEntryPersistence) {
797 this.assetEntryPersistence = assetEntryPersistence;
798 }
799
800
805 public AssetEntryFinder getAssetEntryFinder() {
806 return assetEntryFinder;
807 }
808
809
814 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
815 this.assetEntryFinder = assetEntryFinder;
816 }
817
818
823 public AssetLinkLocalService getAssetLinkLocalService() {
824 return assetLinkLocalService;
825 }
826
827
832 public void setAssetLinkLocalService(
833 AssetLinkLocalService assetLinkLocalService) {
834 this.assetLinkLocalService = assetLinkLocalService;
835 }
836
837
842 public AssetLinkPersistence getAssetLinkPersistence() {
843 return assetLinkPersistence;
844 }
845
846
851 public void setAssetLinkPersistence(
852 AssetLinkPersistence assetLinkPersistence) {
853 this.assetLinkPersistence = assetLinkPersistence;
854 }
855
856
861 public AssetLinkFinder getAssetLinkFinder() {
862 return assetLinkFinder;
863 }
864
865
870 public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
871 this.assetLinkFinder = assetLinkFinder;
872 }
873
874
879 public AssetTagLocalService getAssetTagLocalService() {
880 return assetTagLocalService;
881 }
882
883
888 public void setAssetTagLocalService(
889 AssetTagLocalService assetTagLocalService) {
890 this.assetTagLocalService = assetTagLocalService;
891 }
892
893
898 public AssetTagService getAssetTagService() {
899 return assetTagService;
900 }
901
902
907 public void setAssetTagService(AssetTagService assetTagService) {
908 this.assetTagService = assetTagService;
909 }
910
911
916 public AssetTagPersistence getAssetTagPersistence() {
917 return assetTagPersistence;
918 }
919
920
925 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
926 this.assetTagPersistence = assetTagPersistence;
927 }
928
929
934 public AssetTagFinder getAssetTagFinder() {
935 return assetTagFinder;
936 }
937
938
943 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
944 this.assetTagFinder = assetTagFinder;
945 }
946
947
952 public ExpandoValueLocalService getExpandoValueLocalService() {
953 return expandoValueLocalService;
954 }
955
956
961 public void setExpandoValueLocalService(
962 ExpandoValueLocalService expandoValueLocalService) {
963 this.expandoValueLocalService = expandoValueLocalService;
964 }
965
966
971 public ExpandoValueService getExpandoValueService() {
972 return expandoValueService;
973 }
974
975
980 public void setExpandoValueService(ExpandoValueService expandoValueService) {
981 this.expandoValueService = expandoValueService;
982 }
983
984
989 public ExpandoValuePersistence getExpandoValuePersistence() {
990 return expandoValuePersistence;
991 }
992
993
998 public void setExpandoValuePersistence(
999 ExpandoValuePersistence expandoValuePersistence) {
1000 this.expandoValuePersistence = expandoValuePersistence;
1001 }
1002
1003
1008 public MBMessageLocalService getMBMessageLocalService() {
1009 return mbMessageLocalService;
1010 }
1011
1012
1017 public void setMBMessageLocalService(
1018 MBMessageLocalService mbMessageLocalService) {
1019 this.mbMessageLocalService = mbMessageLocalService;
1020 }
1021
1022
1027 public MBMessageService getMBMessageService() {
1028 return mbMessageService;
1029 }
1030
1031
1036 public void setMBMessageService(MBMessageService mbMessageService) {
1037 this.mbMessageService = mbMessageService;
1038 }
1039
1040
1045 public MBMessagePersistence getMBMessagePersistence() {
1046 return mbMessagePersistence;
1047 }
1048
1049
1054 public void setMBMessagePersistence(
1055 MBMessagePersistence mbMessagePersistence) {
1056 this.mbMessagePersistence = mbMessagePersistence;
1057 }
1058
1059
1064 public MBMessageFinder getMBMessageFinder() {
1065 return mbMessageFinder;
1066 }
1067
1068
1073 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1074 this.mbMessageFinder = mbMessageFinder;
1075 }
1076
1077
1082 public SocialActivityLocalService getSocialActivityLocalService() {
1083 return socialActivityLocalService;
1084 }
1085
1086
1091 public void setSocialActivityLocalService(
1092 SocialActivityLocalService socialActivityLocalService) {
1093 this.socialActivityLocalService = socialActivityLocalService;
1094 }
1095
1096
1101 public SocialActivityPersistence getSocialActivityPersistence() {
1102 return socialActivityPersistence;
1103 }
1104
1105
1110 public void setSocialActivityPersistence(
1111 SocialActivityPersistence socialActivityPersistence) {
1112 this.socialActivityPersistence = socialActivityPersistence;
1113 }
1114
1115
1120 public SocialActivityFinder getSocialActivityFinder() {
1121 return socialActivityFinder;
1122 }
1123
1124
1129 public void setSocialActivityFinder(
1130 SocialActivityFinder socialActivityFinder) {
1131 this.socialActivityFinder = socialActivityFinder;
1132 }
1133
1134 public void afterPropertiesSet() {
1135 persistedModelLocalServiceRegistry.register("com.liferay.portlet.calendar.model.CalEvent",
1136 calEventLocalService);
1137 }
1138
1139 public void destroy() {
1140 persistedModelLocalServiceRegistry.unregister(
1141 "com.liferay.portlet.calendar.model.CalEvent");
1142 }
1143
1144
1149 public String getBeanIdentifier() {
1150 return _beanIdentifier;
1151 }
1152
1153
1158 public void setBeanIdentifier(String beanIdentifier) {
1159 _beanIdentifier = beanIdentifier;
1160 }
1161
1162 protected Class<?> getModelClass() {
1163 return CalEvent.class;
1164 }
1165
1166 protected String getModelClassName() {
1167 return CalEvent.class.getName();
1168 }
1169
1170
1175 protected void runSQL(String sql) throws SystemException {
1176 try {
1177 DataSource dataSource = calEventPersistence.getDataSource();
1178
1179 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1180 sql, new int[0]);
1181
1182 sqlUpdate.update();
1183 }
1184 catch (Exception e) {
1185 throw new SystemException(e);
1186 }
1187 }
1188
1189 @BeanReference(type = CalEventLocalService.class)
1190 protected CalEventLocalService calEventLocalService;
1191 @BeanReference(type = CalEventService.class)
1192 protected CalEventService calEventService;
1193 @BeanReference(type = CalEventPersistence.class)
1194 protected CalEventPersistence calEventPersistence;
1195 @BeanReference(type = CalEventFinder.class)
1196 protected CalEventFinder calEventFinder;
1197 @BeanReference(type = CounterLocalService.class)
1198 protected CounterLocalService counterLocalService;
1199 @BeanReference(type = MailService.class)
1200 protected MailService mailService;
1201 @BeanReference(type = CompanyLocalService.class)
1202 protected CompanyLocalService companyLocalService;
1203 @BeanReference(type = CompanyService.class)
1204 protected CompanyService companyService;
1205 @BeanReference(type = CompanyPersistence.class)
1206 protected CompanyPersistence companyPersistence;
1207 @BeanReference(type = GroupLocalService.class)
1208 protected GroupLocalService groupLocalService;
1209 @BeanReference(type = GroupService.class)
1210 protected GroupService groupService;
1211 @BeanReference(type = GroupPersistence.class)
1212 protected GroupPersistence groupPersistence;
1213 @BeanReference(type = GroupFinder.class)
1214 protected GroupFinder groupFinder;
1215 @BeanReference(type = PortletPreferencesLocalService.class)
1216 protected PortletPreferencesLocalService portletPreferencesLocalService;
1217 @BeanReference(type = PortletPreferencesService.class)
1218 protected PortletPreferencesService portletPreferencesService;
1219 @BeanReference(type = PortletPreferencesPersistence.class)
1220 protected PortletPreferencesPersistence portletPreferencesPersistence;
1221 @BeanReference(type = PortletPreferencesFinder.class)
1222 protected PortletPreferencesFinder portletPreferencesFinder;
1223 @BeanReference(type = ResourceLocalService.class)
1224 protected ResourceLocalService resourceLocalService;
1225 @BeanReference(type = SubscriptionLocalService.class)
1226 protected SubscriptionLocalService subscriptionLocalService;
1227 @BeanReference(type = SubscriptionPersistence.class)
1228 protected SubscriptionPersistence subscriptionPersistence;
1229 @BeanReference(type = UserLocalService.class)
1230 protected UserLocalService userLocalService;
1231 @BeanReference(type = UserService.class)
1232 protected UserService userService;
1233 @BeanReference(type = UserPersistence.class)
1234 protected UserPersistence userPersistence;
1235 @BeanReference(type = UserFinder.class)
1236 protected UserFinder userFinder;
1237 @BeanReference(type = AssetEntryLocalService.class)
1238 protected AssetEntryLocalService assetEntryLocalService;
1239 @BeanReference(type = AssetEntryService.class)
1240 protected AssetEntryService assetEntryService;
1241 @BeanReference(type = AssetEntryPersistence.class)
1242 protected AssetEntryPersistence assetEntryPersistence;
1243 @BeanReference(type = AssetEntryFinder.class)
1244 protected AssetEntryFinder assetEntryFinder;
1245 @BeanReference(type = AssetLinkLocalService.class)
1246 protected AssetLinkLocalService assetLinkLocalService;
1247 @BeanReference(type = AssetLinkPersistence.class)
1248 protected AssetLinkPersistence assetLinkPersistence;
1249 @BeanReference(type = AssetLinkFinder.class)
1250 protected AssetLinkFinder assetLinkFinder;
1251 @BeanReference(type = AssetTagLocalService.class)
1252 protected AssetTagLocalService assetTagLocalService;
1253 @BeanReference(type = AssetTagService.class)
1254 protected AssetTagService assetTagService;
1255 @BeanReference(type = AssetTagPersistence.class)
1256 protected AssetTagPersistence assetTagPersistence;
1257 @BeanReference(type = AssetTagFinder.class)
1258 protected AssetTagFinder assetTagFinder;
1259 @BeanReference(type = ExpandoValueLocalService.class)
1260 protected ExpandoValueLocalService expandoValueLocalService;
1261 @BeanReference(type = ExpandoValueService.class)
1262 protected ExpandoValueService expandoValueService;
1263 @BeanReference(type = ExpandoValuePersistence.class)
1264 protected ExpandoValuePersistence expandoValuePersistence;
1265 @BeanReference(type = MBMessageLocalService.class)
1266 protected MBMessageLocalService mbMessageLocalService;
1267 @BeanReference(type = MBMessageService.class)
1268 protected MBMessageService mbMessageService;
1269 @BeanReference(type = MBMessagePersistence.class)
1270 protected MBMessagePersistence mbMessagePersistence;
1271 @BeanReference(type = MBMessageFinder.class)
1272 protected MBMessageFinder mbMessageFinder;
1273 @BeanReference(type = SocialActivityLocalService.class)
1274 protected SocialActivityLocalService socialActivityLocalService;
1275 @BeanReference(type = SocialActivityPersistence.class)
1276 protected SocialActivityPersistence socialActivityPersistence;
1277 @BeanReference(type = SocialActivityFinder.class)
1278 protected SocialActivityFinder socialActivityFinder;
1279 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1280 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1281 private String _beanIdentifier;
1282 }