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.ResourceService;
043 import com.liferay.portal.service.SubscriptionLocalService;
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.SubscriptionPersistence;
054 import com.liferay.portal.service.persistence.UserFinder;
055 import com.liferay.portal.service.persistence.UserPersistence;
056
057 import com.liferay.portlet.asset.service.AssetEntryLocalService;
058 import com.liferay.portlet.asset.service.AssetEntryService;
059 import com.liferay.portlet.asset.service.AssetLinkLocalService;
060 import com.liferay.portlet.asset.service.AssetTagLocalService;
061 import com.liferay.portlet.asset.service.AssetTagService;
062 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
063 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
064 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
065 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
066 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
067 import com.liferay.portlet.calendar.model.CalEvent;
068 import com.liferay.portlet.calendar.service.CalEventLocalService;
069 import com.liferay.portlet.calendar.service.CalEventService;
070 import com.liferay.portlet.calendar.service.persistence.CalEventFinder;
071 import com.liferay.portlet.calendar.service.persistence.CalEventPersistence;
072 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
073 import com.liferay.portlet.expando.service.ExpandoValueService;
074 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
075 import com.liferay.portlet.messageboards.service.MBMessageLocalService;
076 import com.liferay.portlet.messageboards.service.MBMessageService;
077 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
078 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
079 import com.liferay.portlet.social.service.SocialActivityLocalService;
080 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
081 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
082
083 import java.io.Serializable;
084
085 import java.util.List;
086
087 import javax.sql.DataSource;
088
089
101 public abstract class CalEventLocalServiceBaseImpl extends BaseLocalServiceImpl
102 implements CalEventLocalService, IdentifiableBean {
103
108
109
116 @Indexable(type = IndexableType.REINDEX)
117 public CalEvent addCalEvent(CalEvent calEvent) throws SystemException {
118 calEvent.setNew(true);
119
120 return calEventPersistence.update(calEvent, false);
121 }
122
123
129 public CalEvent createCalEvent(long eventId) {
130 return calEventPersistence.create(eventId);
131 }
132
133
141 @Indexable(type = IndexableType.DELETE)
142 public CalEvent deleteCalEvent(long eventId)
143 throws PortalException, SystemException {
144 return calEventPersistence.remove(eventId);
145 }
146
147
154 @Indexable(type = IndexableType.DELETE)
155 public CalEvent deleteCalEvent(CalEvent calEvent) throws SystemException {
156 return calEventPersistence.remove(calEvent);
157 }
158
159 public DynamicQuery dynamicQuery() {
160 Class<?> clazz = getClass();
161
162 return DynamicQueryFactoryUtil.forClass(CalEvent.class,
163 clazz.getClassLoader());
164 }
165
166
173 @SuppressWarnings("rawtypes")
174 public List dynamicQuery(DynamicQuery dynamicQuery)
175 throws SystemException {
176 return calEventPersistence.findWithDynamicQuery(dynamicQuery);
177 }
178
179
192 @SuppressWarnings("rawtypes")
193 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
194 throws SystemException {
195 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start, end);
196 }
197
198
212 @SuppressWarnings("rawtypes")
213 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
214 OrderByComparator orderByComparator) throws SystemException {
215 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start,
216 end, orderByComparator);
217 }
218
219
226 public long dynamicQueryCount(DynamicQuery dynamicQuery)
227 throws SystemException {
228 return calEventPersistence.countWithDynamicQuery(dynamicQuery);
229 }
230
231 public CalEvent fetchCalEvent(long eventId) throws SystemException {
232 return calEventPersistence.fetchByPrimaryKey(eventId);
233 }
234
235
243 public CalEvent getCalEvent(long eventId)
244 throws PortalException, SystemException {
245 return calEventPersistence.findByPrimaryKey(eventId);
246 }
247
248 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
249 throws PortalException, SystemException {
250 return calEventPersistence.findByPrimaryKey(primaryKeyObj);
251 }
252
253
262 public CalEvent getCalEventByUuidAndGroupId(String uuid, long groupId)
263 throws PortalException, SystemException {
264 return calEventPersistence.findByUUID_G(uuid, groupId);
265 }
266
267
279 public List<CalEvent> getCalEvents(int start, int end)
280 throws SystemException {
281 return calEventPersistence.findAll(start, end);
282 }
283
284
290 public int getCalEventsCount() throws SystemException {
291 return calEventPersistence.countAll();
292 }
293
294
301 @Indexable(type = IndexableType.REINDEX)
302 public CalEvent updateCalEvent(CalEvent calEvent) throws SystemException {
303 return updateCalEvent(calEvent, true);
304 }
305
306
314 @Indexable(type = IndexableType.REINDEX)
315 public CalEvent updateCalEvent(CalEvent calEvent, boolean merge)
316 throws SystemException {
317 calEvent.setNew(false);
318
319 return calEventPersistence.update(calEvent, merge);
320 }
321
322
327 public CalEventLocalService getCalEventLocalService() {
328 return calEventLocalService;
329 }
330
331
336 public void setCalEventLocalService(
337 CalEventLocalService calEventLocalService) {
338 this.calEventLocalService = calEventLocalService;
339 }
340
341
346 public CalEventService getCalEventService() {
347 return calEventService;
348 }
349
350
355 public void setCalEventService(CalEventService calEventService) {
356 this.calEventService = calEventService;
357 }
358
359
364 public CalEventPersistence getCalEventPersistence() {
365 return calEventPersistence;
366 }
367
368
373 public void setCalEventPersistence(CalEventPersistence calEventPersistence) {
374 this.calEventPersistence = calEventPersistence;
375 }
376
377
382 public CalEventFinder getCalEventFinder() {
383 return calEventFinder;
384 }
385
386
391 public void setCalEventFinder(CalEventFinder calEventFinder) {
392 this.calEventFinder = calEventFinder;
393 }
394
395
400 public CounterLocalService getCounterLocalService() {
401 return counterLocalService;
402 }
403
404
409 public void setCounterLocalService(CounterLocalService counterLocalService) {
410 this.counterLocalService = counterLocalService;
411 }
412
413
418 public MailService getMailService() {
419 return mailService;
420 }
421
422
427 public void setMailService(MailService mailService) {
428 this.mailService = mailService;
429 }
430
431
436 public CompanyLocalService getCompanyLocalService() {
437 return companyLocalService;
438 }
439
440
445 public void setCompanyLocalService(CompanyLocalService companyLocalService) {
446 this.companyLocalService = companyLocalService;
447 }
448
449
454 public CompanyService getCompanyService() {
455 return companyService;
456 }
457
458
463 public void setCompanyService(CompanyService companyService) {
464 this.companyService = companyService;
465 }
466
467
472 public CompanyPersistence getCompanyPersistence() {
473 return companyPersistence;
474 }
475
476
481 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
482 this.companyPersistence = companyPersistence;
483 }
484
485
490 public GroupLocalService getGroupLocalService() {
491 return groupLocalService;
492 }
493
494
499 public void setGroupLocalService(GroupLocalService groupLocalService) {
500 this.groupLocalService = groupLocalService;
501 }
502
503
508 public GroupService getGroupService() {
509 return groupService;
510 }
511
512
517 public void setGroupService(GroupService groupService) {
518 this.groupService = groupService;
519 }
520
521
526 public GroupPersistence getGroupPersistence() {
527 return groupPersistence;
528 }
529
530
535 public void setGroupPersistence(GroupPersistence groupPersistence) {
536 this.groupPersistence = groupPersistence;
537 }
538
539
544 public GroupFinder getGroupFinder() {
545 return groupFinder;
546 }
547
548
553 public void setGroupFinder(GroupFinder groupFinder) {
554 this.groupFinder = groupFinder;
555 }
556
557
562 public PortletPreferencesLocalService getPortletPreferencesLocalService() {
563 return portletPreferencesLocalService;
564 }
565
566
571 public void setPortletPreferencesLocalService(
572 PortletPreferencesLocalService portletPreferencesLocalService) {
573 this.portletPreferencesLocalService = portletPreferencesLocalService;
574 }
575
576
581 public PortletPreferencesService getPortletPreferencesService() {
582 return portletPreferencesService;
583 }
584
585
590 public void setPortletPreferencesService(
591 PortletPreferencesService portletPreferencesService) {
592 this.portletPreferencesService = portletPreferencesService;
593 }
594
595
600 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
601 return portletPreferencesPersistence;
602 }
603
604
609 public void setPortletPreferencesPersistence(
610 PortletPreferencesPersistence portletPreferencesPersistence) {
611 this.portletPreferencesPersistence = portletPreferencesPersistence;
612 }
613
614
619 public PortletPreferencesFinder getPortletPreferencesFinder() {
620 return portletPreferencesFinder;
621 }
622
623
628 public void setPortletPreferencesFinder(
629 PortletPreferencesFinder portletPreferencesFinder) {
630 this.portletPreferencesFinder = portletPreferencesFinder;
631 }
632
633
638 public ResourceLocalService getResourceLocalService() {
639 return resourceLocalService;
640 }
641
642
647 public void setResourceLocalService(
648 ResourceLocalService resourceLocalService) {
649 this.resourceLocalService = resourceLocalService;
650 }
651
652
657 public ResourceService getResourceService() {
658 return resourceService;
659 }
660
661
666 public void setResourceService(ResourceService resourceService) {
667 this.resourceService = resourceService;
668 }
669
670
675 public ResourcePersistence getResourcePersistence() {
676 return resourcePersistence;
677 }
678
679
684 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
685 this.resourcePersistence = resourcePersistence;
686 }
687
688
693 public ResourceFinder getResourceFinder() {
694 return resourceFinder;
695 }
696
697
702 public void setResourceFinder(ResourceFinder resourceFinder) {
703 this.resourceFinder = resourceFinder;
704 }
705
706
711 public SubscriptionLocalService getSubscriptionLocalService() {
712 return subscriptionLocalService;
713 }
714
715
720 public void setSubscriptionLocalService(
721 SubscriptionLocalService subscriptionLocalService) {
722 this.subscriptionLocalService = subscriptionLocalService;
723 }
724
725
730 public SubscriptionPersistence getSubscriptionPersistence() {
731 return subscriptionPersistence;
732 }
733
734
739 public void setSubscriptionPersistence(
740 SubscriptionPersistence subscriptionPersistence) {
741 this.subscriptionPersistence = subscriptionPersistence;
742 }
743
744
749 public UserLocalService getUserLocalService() {
750 return userLocalService;
751 }
752
753
758 public void setUserLocalService(UserLocalService userLocalService) {
759 this.userLocalService = userLocalService;
760 }
761
762
767 public UserService getUserService() {
768 return userService;
769 }
770
771
776 public void setUserService(UserService userService) {
777 this.userService = userService;
778 }
779
780
785 public UserPersistence getUserPersistence() {
786 return userPersistence;
787 }
788
789
794 public void setUserPersistence(UserPersistence userPersistence) {
795 this.userPersistence = userPersistence;
796 }
797
798
803 public UserFinder getUserFinder() {
804 return userFinder;
805 }
806
807
812 public void setUserFinder(UserFinder userFinder) {
813 this.userFinder = userFinder;
814 }
815
816
821 public AssetEntryLocalService getAssetEntryLocalService() {
822 return assetEntryLocalService;
823 }
824
825
830 public void setAssetEntryLocalService(
831 AssetEntryLocalService assetEntryLocalService) {
832 this.assetEntryLocalService = assetEntryLocalService;
833 }
834
835
840 public AssetEntryService getAssetEntryService() {
841 return assetEntryService;
842 }
843
844
849 public void setAssetEntryService(AssetEntryService assetEntryService) {
850 this.assetEntryService = assetEntryService;
851 }
852
853
858 public AssetEntryPersistence getAssetEntryPersistence() {
859 return assetEntryPersistence;
860 }
861
862
867 public void setAssetEntryPersistence(
868 AssetEntryPersistence assetEntryPersistence) {
869 this.assetEntryPersistence = assetEntryPersistence;
870 }
871
872
877 public AssetEntryFinder getAssetEntryFinder() {
878 return assetEntryFinder;
879 }
880
881
886 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
887 this.assetEntryFinder = assetEntryFinder;
888 }
889
890
895 public AssetLinkLocalService getAssetLinkLocalService() {
896 return assetLinkLocalService;
897 }
898
899
904 public void setAssetLinkLocalService(
905 AssetLinkLocalService assetLinkLocalService) {
906 this.assetLinkLocalService = assetLinkLocalService;
907 }
908
909
914 public AssetLinkPersistence getAssetLinkPersistence() {
915 return assetLinkPersistence;
916 }
917
918
923 public void setAssetLinkPersistence(
924 AssetLinkPersistence assetLinkPersistence) {
925 this.assetLinkPersistence = assetLinkPersistence;
926 }
927
928
933 public AssetTagLocalService getAssetTagLocalService() {
934 return assetTagLocalService;
935 }
936
937
942 public void setAssetTagLocalService(
943 AssetTagLocalService assetTagLocalService) {
944 this.assetTagLocalService = assetTagLocalService;
945 }
946
947
952 public AssetTagService getAssetTagService() {
953 return assetTagService;
954 }
955
956
961 public void setAssetTagService(AssetTagService assetTagService) {
962 this.assetTagService = assetTagService;
963 }
964
965
970 public AssetTagPersistence getAssetTagPersistence() {
971 return assetTagPersistence;
972 }
973
974
979 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
980 this.assetTagPersistence = assetTagPersistence;
981 }
982
983
988 public AssetTagFinder getAssetTagFinder() {
989 return assetTagFinder;
990 }
991
992
997 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
998 this.assetTagFinder = assetTagFinder;
999 }
1000
1001
1006 public ExpandoValueLocalService getExpandoValueLocalService() {
1007 return expandoValueLocalService;
1008 }
1009
1010
1015 public void setExpandoValueLocalService(
1016 ExpandoValueLocalService expandoValueLocalService) {
1017 this.expandoValueLocalService = expandoValueLocalService;
1018 }
1019
1020
1025 public ExpandoValueService getExpandoValueService() {
1026 return expandoValueService;
1027 }
1028
1029
1034 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1035 this.expandoValueService = expandoValueService;
1036 }
1037
1038
1043 public ExpandoValuePersistence getExpandoValuePersistence() {
1044 return expandoValuePersistence;
1045 }
1046
1047
1052 public void setExpandoValuePersistence(
1053 ExpandoValuePersistence expandoValuePersistence) {
1054 this.expandoValuePersistence = expandoValuePersistence;
1055 }
1056
1057
1062 public MBMessageLocalService getMBMessageLocalService() {
1063 return mbMessageLocalService;
1064 }
1065
1066
1071 public void setMBMessageLocalService(
1072 MBMessageLocalService mbMessageLocalService) {
1073 this.mbMessageLocalService = mbMessageLocalService;
1074 }
1075
1076
1081 public MBMessageService getMBMessageService() {
1082 return mbMessageService;
1083 }
1084
1085
1090 public void setMBMessageService(MBMessageService mbMessageService) {
1091 this.mbMessageService = mbMessageService;
1092 }
1093
1094
1099 public MBMessagePersistence getMBMessagePersistence() {
1100 return mbMessagePersistence;
1101 }
1102
1103
1108 public void setMBMessagePersistence(
1109 MBMessagePersistence mbMessagePersistence) {
1110 this.mbMessagePersistence = mbMessagePersistence;
1111 }
1112
1113
1118 public MBMessageFinder getMBMessageFinder() {
1119 return mbMessageFinder;
1120 }
1121
1122
1127 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1128 this.mbMessageFinder = mbMessageFinder;
1129 }
1130
1131
1136 public SocialActivityLocalService getSocialActivityLocalService() {
1137 return socialActivityLocalService;
1138 }
1139
1140
1145 public void setSocialActivityLocalService(
1146 SocialActivityLocalService socialActivityLocalService) {
1147 this.socialActivityLocalService = socialActivityLocalService;
1148 }
1149
1150
1155 public SocialActivityPersistence getSocialActivityPersistence() {
1156 return socialActivityPersistence;
1157 }
1158
1159
1164 public void setSocialActivityPersistence(
1165 SocialActivityPersistence socialActivityPersistence) {
1166 this.socialActivityPersistence = socialActivityPersistence;
1167 }
1168
1169
1174 public SocialActivityFinder getSocialActivityFinder() {
1175 return socialActivityFinder;
1176 }
1177
1178
1183 public void setSocialActivityFinder(
1184 SocialActivityFinder socialActivityFinder) {
1185 this.socialActivityFinder = socialActivityFinder;
1186 }
1187
1188 public void afterPropertiesSet() {
1189 persistedModelLocalServiceRegistry.register("com.liferay.portlet.calendar.model.CalEvent",
1190 calEventLocalService);
1191 }
1192
1193 public void destroy() {
1194 persistedModelLocalServiceRegistry.unregister(
1195 "com.liferay.portlet.calendar.model.CalEvent");
1196 }
1197
1198
1203 public String getBeanIdentifier() {
1204 return _beanIdentifier;
1205 }
1206
1207
1212 public void setBeanIdentifier(String beanIdentifier) {
1213 _beanIdentifier = beanIdentifier;
1214 }
1215
1216 protected Class<?> getModelClass() {
1217 return CalEvent.class;
1218 }
1219
1220 protected String getModelClassName() {
1221 return CalEvent.class.getName();
1222 }
1223
1224
1229 protected void runSQL(String sql) throws SystemException {
1230 try {
1231 DataSource dataSource = calEventPersistence.getDataSource();
1232
1233 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1234 sql, new int[0]);
1235
1236 sqlUpdate.update();
1237 }
1238 catch (Exception e) {
1239 throw new SystemException(e);
1240 }
1241 }
1242
1243 @BeanReference(type = CalEventLocalService.class)
1244 protected CalEventLocalService calEventLocalService;
1245 @BeanReference(type = CalEventService.class)
1246 protected CalEventService calEventService;
1247 @BeanReference(type = CalEventPersistence.class)
1248 protected CalEventPersistence calEventPersistence;
1249 @BeanReference(type = CalEventFinder.class)
1250 protected CalEventFinder calEventFinder;
1251 @BeanReference(type = CounterLocalService.class)
1252 protected CounterLocalService counterLocalService;
1253 @BeanReference(type = MailService.class)
1254 protected MailService mailService;
1255 @BeanReference(type = CompanyLocalService.class)
1256 protected CompanyLocalService companyLocalService;
1257 @BeanReference(type = CompanyService.class)
1258 protected CompanyService companyService;
1259 @BeanReference(type = CompanyPersistence.class)
1260 protected CompanyPersistence companyPersistence;
1261 @BeanReference(type = GroupLocalService.class)
1262 protected GroupLocalService groupLocalService;
1263 @BeanReference(type = GroupService.class)
1264 protected GroupService groupService;
1265 @BeanReference(type = GroupPersistence.class)
1266 protected GroupPersistence groupPersistence;
1267 @BeanReference(type = GroupFinder.class)
1268 protected GroupFinder groupFinder;
1269 @BeanReference(type = PortletPreferencesLocalService.class)
1270 protected PortletPreferencesLocalService portletPreferencesLocalService;
1271 @BeanReference(type = PortletPreferencesService.class)
1272 protected PortletPreferencesService portletPreferencesService;
1273 @BeanReference(type = PortletPreferencesPersistence.class)
1274 protected PortletPreferencesPersistence portletPreferencesPersistence;
1275 @BeanReference(type = PortletPreferencesFinder.class)
1276 protected PortletPreferencesFinder portletPreferencesFinder;
1277 @BeanReference(type = ResourceLocalService.class)
1278 protected ResourceLocalService resourceLocalService;
1279 @BeanReference(type = ResourceService.class)
1280 protected ResourceService resourceService;
1281 @BeanReference(type = ResourcePersistence.class)
1282 protected ResourcePersistence resourcePersistence;
1283 @BeanReference(type = ResourceFinder.class)
1284 protected ResourceFinder resourceFinder;
1285 @BeanReference(type = SubscriptionLocalService.class)
1286 protected SubscriptionLocalService subscriptionLocalService;
1287 @BeanReference(type = SubscriptionPersistence.class)
1288 protected SubscriptionPersistence subscriptionPersistence;
1289 @BeanReference(type = UserLocalService.class)
1290 protected UserLocalService userLocalService;
1291 @BeanReference(type = UserService.class)
1292 protected UserService userService;
1293 @BeanReference(type = UserPersistence.class)
1294 protected UserPersistence userPersistence;
1295 @BeanReference(type = UserFinder.class)
1296 protected UserFinder userFinder;
1297 @BeanReference(type = AssetEntryLocalService.class)
1298 protected AssetEntryLocalService assetEntryLocalService;
1299 @BeanReference(type = AssetEntryService.class)
1300 protected AssetEntryService assetEntryService;
1301 @BeanReference(type = AssetEntryPersistence.class)
1302 protected AssetEntryPersistence assetEntryPersistence;
1303 @BeanReference(type = AssetEntryFinder.class)
1304 protected AssetEntryFinder assetEntryFinder;
1305 @BeanReference(type = AssetLinkLocalService.class)
1306 protected AssetLinkLocalService assetLinkLocalService;
1307 @BeanReference(type = AssetLinkPersistence.class)
1308 protected AssetLinkPersistence assetLinkPersistence;
1309 @BeanReference(type = AssetTagLocalService.class)
1310 protected AssetTagLocalService assetTagLocalService;
1311 @BeanReference(type = AssetTagService.class)
1312 protected AssetTagService assetTagService;
1313 @BeanReference(type = AssetTagPersistence.class)
1314 protected AssetTagPersistence assetTagPersistence;
1315 @BeanReference(type = AssetTagFinder.class)
1316 protected AssetTagFinder assetTagFinder;
1317 @BeanReference(type = ExpandoValueLocalService.class)
1318 protected ExpandoValueLocalService expandoValueLocalService;
1319 @BeanReference(type = ExpandoValueService.class)
1320 protected ExpandoValueService expandoValueService;
1321 @BeanReference(type = ExpandoValuePersistence.class)
1322 protected ExpandoValuePersistence expandoValuePersistence;
1323 @BeanReference(type = MBMessageLocalService.class)
1324 protected MBMessageLocalService mbMessageLocalService;
1325 @BeanReference(type = MBMessageService.class)
1326 protected MBMessageService mbMessageService;
1327 @BeanReference(type = MBMessagePersistence.class)
1328 protected MBMessagePersistence mbMessagePersistence;
1329 @BeanReference(type = MBMessageFinder.class)
1330 protected MBMessageFinder mbMessageFinder;
1331 @BeanReference(type = SocialActivityLocalService.class)
1332 protected SocialActivityLocalService socialActivityLocalService;
1333 @BeanReference(type = SocialActivityPersistence.class)
1334 protected SocialActivityPersistence socialActivityPersistence;
1335 @BeanReference(type = SocialActivityFinder.class)
1336 protected SocialActivityFinder socialActivityFinder;
1337 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1338 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1339 private String _beanIdentifier;
1340 }