001
014
015 package com.liferay.portlet.calendar.service.base;
016
017 import com.liferay.portal.kernel.bean.BeanReference;
018 import com.liferay.portal.kernel.bean.IdentifiableBean;
019 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
020 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
022 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.Projection;
024 import com.liferay.portal.kernel.exception.PortalException;
025 import com.liferay.portal.kernel.exception.SystemException;
026 import com.liferay.portal.kernel.search.Indexable;
027 import com.liferay.portal.kernel.search.IndexableType;
028 import com.liferay.portal.kernel.util.OrderByComparator;
029 import com.liferay.portal.model.PersistedModel;
030 import com.liferay.portal.service.BaseLocalServiceImpl;
031 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
032 import com.liferay.portal.service.persistence.CompanyPersistence;
033 import com.liferay.portal.service.persistence.GroupFinder;
034 import com.liferay.portal.service.persistence.GroupPersistence;
035 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
036 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
037 import com.liferay.portal.service.persistence.SubscriptionPersistence;
038 import com.liferay.portal.service.persistence.UserFinder;
039 import com.liferay.portal.service.persistence.UserPersistence;
040
041 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
042 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
043 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
044 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
045 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
046 import com.liferay.portlet.calendar.model.CalEvent;
047 import com.liferay.portlet.calendar.service.CalEventLocalService;
048 import com.liferay.portlet.calendar.service.persistence.CalEventFinder;
049 import com.liferay.portlet.calendar.service.persistence.CalEventPersistence;
050 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
051 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
052 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
053 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
054 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
055
056 import java.io.Serializable;
057
058 import java.util.List;
059
060 import javax.sql.DataSource;
061
062
074 public abstract class CalEventLocalServiceBaseImpl extends BaseLocalServiceImpl
075 implements CalEventLocalService, IdentifiableBean {
076
081
082
089 @Indexable(type = IndexableType.REINDEX)
090 @Override
091 public CalEvent addCalEvent(CalEvent calEvent) throws SystemException {
092 calEvent.setNew(true);
093
094 return calEventPersistence.update(calEvent);
095 }
096
097
103 @Override
104 public CalEvent createCalEvent(long eventId) {
105 return calEventPersistence.create(eventId);
106 }
107
108
116 @Indexable(type = IndexableType.DELETE)
117 @Override
118 public CalEvent deleteCalEvent(long eventId)
119 throws PortalException, SystemException {
120 return calEventPersistence.remove(eventId);
121 }
122
123
130 @Indexable(type = IndexableType.DELETE)
131 @Override
132 public CalEvent deleteCalEvent(CalEvent calEvent) throws SystemException {
133 return calEventPersistence.remove(calEvent);
134 }
135
136 @Override
137 public DynamicQuery dynamicQuery() {
138 Class<?> clazz = getClass();
139
140 return DynamicQueryFactoryUtil.forClass(CalEvent.class,
141 clazz.getClassLoader());
142 }
143
144
151 @Override
152 @SuppressWarnings("rawtypes")
153 public List dynamicQuery(DynamicQuery dynamicQuery)
154 throws SystemException {
155 return calEventPersistence.findWithDynamicQuery(dynamicQuery);
156 }
157
158
171 @Override
172 @SuppressWarnings("rawtypes")
173 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
174 throws SystemException {
175 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start, end);
176 }
177
178
192 @Override
193 @SuppressWarnings("rawtypes")
194 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
195 OrderByComparator orderByComparator) throws SystemException {
196 return calEventPersistence.findWithDynamicQuery(dynamicQuery, start,
197 end, orderByComparator);
198 }
199
200
207 @Override
208 public long dynamicQueryCount(DynamicQuery dynamicQuery)
209 throws SystemException {
210 return calEventPersistence.countWithDynamicQuery(dynamicQuery);
211 }
212
213
221 @Override
222 public long dynamicQueryCount(DynamicQuery dynamicQuery,
223 Projection projection) throws SystemException {
224 return calEventPersistence.countWithDynamicQuery(dynamicQuery,
225 projection);
226 }
227
228 @Override
229 public CalEvent fetchCalEvent(long eventId) throws SystemException {
230 return calEventPersistence.fetchByPrimaryKey(eventId);
231 }
232
233
241 @Override
242 public CalEvent fetchCalEventByUuidAndCompanyId(String uuid, long companyId)
243 throws SystemException {
244 return calEventPersistence.fetchByUuid_C_First(uuid, companyId, null);
245 }
246
247
255 @Override
256 public CalEvent fetchCalEventByUuidAndGroupId(String uuid, long groupId)
257 throws SystemException {
258 return calEventPersistence.fetchByUUID_G(uuid, groupId);
259 }
260
261
269 @Override
270 public CalEvent getCalEvent(long eventId)
271 throws PortalException, SystemException {
272 return calEventPersistence.findByPrimaryKey(eventId);
273 }
274
275 @Override
276 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
277 throws PortalException, SystemException {
278 return calEventPersistence.findByPrimaryKey(primaryKeyObj);
279 }
280
281
290 @Override
291 public CalEvent getCalEventByUuidAndCompanyId(String uuid, long companyId)
292 throws PortalException, SystemException {
293 return calEventPersistence.findByUuid_C_First(uuid, companyId, null);
294 }
295
296
305 @Override
306 public CalEvent getCalEventByUuidAndGroupId(String uuid, long groupId)
307 throws PortalException, SystemException {
308 return calEventPersistence.findByUUID_G(uuid, groupId);
309 }
310
311
323 @Override
324 public List<CalEvent> getCalEvents(int start, int end)
325 throws SystemException {
326 return calEventPersistence.findAll(start, end);
327 }
328
329
335 @Override
336 public int getCalEventsCount() throws SystemException {
337 return calEventPersistence.countAll();
338 }
339
340
347 @Indexable(type = IndexableType.REINDEX)
348 @Override
349 public CalEvent updateCalEvent(CalEvent calEvent) throws SystemException {
350 return calEventPersistence.update(calEvent);
351 }
352
353
358 public com.liferay.portlet.calendar.service.CalEventLocalService getCalEventLocalService() {
359 return calEventLocalService;
360 }
361
362
367 public void setCalEventLocalService(
368 com.liferay.portlet.calendar.service.CalEventLocalService calEventLocalService) {
369 this.calEventLocalService = calEventLocalService;
370 }
371
372
377 public CalEventPersistence getCalEventPersistence() {
378 return calEventPersistence;
379 }
380
381
386 public void setCalEventPersistence(CalEventPersistence calEventPersistence) {
387 this.calEventPersistence = calEventPersistence;
388 }
389
390
395 public CalEventFinder getCalEventFinder() {
396 return calEventFinder;
397 }
398
399
404 public void setCalEventFinder(CalEventFinder calEventFinder) {
405 this.calEventFinder = calEventFinder;
406 }
407
408
413 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
414 return counterLocalService;
415 }
416
417
422 public void setCounterLocalService(
423 com.liferay.counter.service.CounterLocalService counterLocalService) {
424 this.counterLocalService = counterLocalService;
425 }
426
427
432 public com.liferay.mail.service.MailService getMailService() {
433 return mailService;
434 }
435
436
441 public void setMailService(com.liferay.mail.service.MailService mailService) {
442 this.mailService = mailService;
443 }
444
445
450 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
451 return companyLocalService;
452 }
453
454
459 public void setCompanyLocalService(
460 com.liferay.portal.service.CompanyLocalService companyLocalService) {
461 this.companyLocalService = companyLocalService;
462 }
463
464
469 public com.liferay.portal.service.CompanyService getCompanyService() {
470 return companyService;
471 }
472
473
478 public void setCompanyService(
479 com.liferay.portal.service.CompanyService companyService) {
480 this.companyService = companyService;
481 }
482
483
488 public CompanyPersistence getCompanyPersistence() {
489 return companyPersistence;
490 }
491
492
497 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
498 this.companyPersistence = companyPersistence;
499 }
500
501
506 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
507 return groupLocalService;
508 }
509
510
515 public void setGroupLocalService(
516 com.liferay.portal.service.GroupLocalService groupLocalService) {
517 this.groupLocalService = groupLocalService;
518 }
519
520
525 public com.liferay.portal.service.GroupService getGroupService() {
526 return groupService;
527 }
528
529
534 public void setGroupService(
535 com.liferay.portal.service.GroupService groupService) {
536 this.groupService = groupService;
537 }
538
539
544 public GroupPersistence getGroupPersistence() {
545 return groupPersistence;
546 }
547
548
553 public void setGroupPersistence(GroupPersistence groupPersistence) {
554 this.groupPersistence = groupPersistence;
555 }
556
557
562 public GroupFinder getGroupFinder() {
563 return groupFinder;
564 }
565
566
571 public void setGroupFinder(GroupFinder groupFinder) {
572 this.groupFinder = groupFinder;
573 }
574
575
580 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
581 return portletPreferencesLocalService;
582 }
583
584
589 public void setPortletPreferencesLocalService(
590 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
591 this.portletPreferencesLocalService = portletPreferencesLocalService;
592 }
593
594
599 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
600 return portletPreferencesService;
601 }
602
603
608 public void setPortletPreferencesService(
609 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
610 this.portletPreferencesService = portletPreferencesService;
611 }
612
613
618 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
619 return portletPreferencesPersistence;
620 }
621
622
627 public void setPortletPreferencesPersistence(
628 PortletPreferencesPersistence portletPreferencesPersistence) {
629 this.portletPreferencesPersistence = portletPreferencesPersistence;
630 }
631
632
637 public PortletPreferencesFinder getPortletPreferencesFinder() {
638 return portletPreferencesFinder;
639 }
640
641
646 public void setPortletPreferencesFinder(
647 PortletPreferencesFinder portletPreferencesFinder) {
648 this.portletPreferencesFinder = portletPreferencesFinder;
649 }
650
651
656 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
657 return resourceLocalService;
658 }
659
660
665 public void setResourceLocalService(
666 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
667 this.resourceLocalService = resourceLocalService;
668 }
669
670
675 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
676 return subscriptionLocalService;
677 }
678
679
684 public void setSubscriptionLocalService(
685 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
686 this.subscriptionLocalService = subscriptionLocalService;
687 }
688
689
694 public SubscriptionPersistence getSubscriptionPersistence() {
695 return subscriptionPersistence;
696 }
697
698
703 public void setSubscriptionPersistence(
704 SubscriptionPersistence subscriptionPersistence) {
705 this.subscriptionPersistence = subscriptionPersistence;
706 }
707
708
713 public com.liferay.portal.service.UserLocalService getUserLocalService() {
714 return userLocalService;
715 }
716
717
722 public void setUserLocalService(
723 com.liferay.portal.service.UserLocalService userLocalService) {
724 this.userLocalService = userLocalService;
725 }
726
727
732 public com.liferay.portal.service.UserService getUserService() {
733 return userService;
734 }
735
736
741 public void setUserService(
742 com.liferay.portal.service.UserService userService) {
743 this.userService = userService;
744 }
745
746
751 public UserPersistence getUserPersistence() {
752 return userPersistence;
753 }
754
755
760 public void setUserPersistence(UserPersistence userPersistence) {
761 this.userPersistence = userPersistence;
762 }
763
764
769 public UserFinder getUserFinder() {
770 return userFinder;
771 }
772
773
778 public void setUserFinder(UserFinder userFinder) {
779 this.userFinder = userFinder;
780 }
781
782
787 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
788 return assetEntryLocalService;
789 }
790
791
796 public void setAssetEntryLocalService(
797 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
798 this.assetEntryLocalService = assetEntryLocalService;
799 }
800
801
806 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
807 return assetEntryService;
808 }
809
810
815 public void setAssetEntryService(
816 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
817 this.assetEntryService = assetEntryService;
818 }
819
820
825 public AssetEntryPersistence getAssetEntryPersistence() {
826 return assetEntryPersistence;
827 }
828
829
834 public void setAssetEntryPersistence(
835 AssetEntryPersistence assetEntryPersistence) {
836 this.assetEntryPersistence = assetEntryPersistence;
837 }
838
839
844 public AssetEntryFinder getAssetEntryFinder() {
845 return assetEntryFinder;
846 }
847
848
853 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
854 this.assetEntryFinder = assetEntryFinder;
855 }
856
857
862 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
863 return assetLinkLocalService;
864 }
865
866
871 public void setAssetLinkLocalService(
872 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
873 this.assetLinkLocalService = assetLinkLocalService;
874 }
875
876
881 public AssetLinkPersistence getAssetLinkPersistence() {
882 return assetLinkPersistence;
883 }
884
885
890 public void setAssetLinkPersistence(
891 AssetLinkPersistence assetLinkPersistence) {
892 this.assetLinkPersistence = assetLinkPersistence;
893 }
894
895
900 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
901 return assetTagLocalService;
902 }
903
904
909 public void setAssetTagLocalService(
910 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
911 this.assetTagLocalService = assetTagLocalService;
912 }
913
914
919 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
920 return assetTagService;
921 }
922
923
928 public void setAssetTagService(
929 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
930 this.assetTagService = assetTagService;
931 }
932
933
938 public AssetTagPersistence getAssetTagPersistence() {
939 return assetTagPersistence;
940 }
941
942
947 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
948 this.assetTagPersistence = assetTagPersistence;
949 }
950
951
956 public AssetTagFinder getAssetTagFinder() {
957 return assetTagFinder;
958 }
959
960
965 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
966 this.assetTagFinder = assetTagFinder;
967 }
968
969
974 public com.liferay.portlet.expando.service.ExpandoValueLocalService getExpandoValueLocalService() {
975 return expandoValueLocalService;
976 }
977
978
983 public void setExpandoValueLocalService(
984 com.liferay.portlet.expando.service.ExpandoValueLocalService expandoValueLocalService) {
985 this.expandoValueLocalService = expandoValueLocalService;
986 }
987
988
993 public com.liferay.portlet.expando.service.ExpandoValueService getExpandoValueService() {
994 return expandoValueService;
995 }
996
997
1002 public void setExpandoValueService(
1003 com.liferay.portlet.expando.service.ExpandoValueService expandoValueService) {
1004 this.expandoValueService = expandoValueService;
1005 }
1006
1007
1012 public ExpandoValuePersistence getExpandoValuePersistence() {
1013 return expandoValuePersistence;
1014 }
1015
1016
1021 public void setExpandoValuePersistence(
1022 ExpandoValuePersistence expandoValuePersistence) {
1023 this.expandoValuePersistence = expandoValuePersistence;
1024 }
1025
1026
1031 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
1032 return mbMessageLocalService;
1033 }
1034
1035
1040 public void setMBMessageLocalService(
1041 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
1042 this.mbMessageLocalService = mbMessageLocalService;
1043 }
1044
1045
1050 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
1051 return mbMessageService;
1052 }
1053
1054
1059 public void setMBMessageService(
1060 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
1061 this.mbMessageService = mbMessageService;
1062 }
1063
1064
1069 public MBMessagePersistence getMBMessagePersistence() {
1070 return mbMessagePersistence;
1071 }
1072
1073
1078 public void setMBMessagePersistence(
1079 MBMessagePersistence mbMessagePersistence) {
1080 this.mbMessagePersistence = mbMessagePersistence;
1081 }
1082
1083
1088 public MBMessageFinder getMBMessageFinder() {
1089 return mbMessageFinder;
1090 }
1091
1092
1097 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1098 this.mbMessageFinder = mbMessageFinder;
1099 }
1100
1101
1106 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1107 return socialActivityLocalService;
1108 }
1109
1110
1115 public void setSocialActivityLocalService(
1116 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1117 this.socialActivityLocalService = socialActivityLocalService;
1118 }
1119
1120
1125 public SocialActivityPersistence getSocialActivityPersistence() {
1126 return socialActivityPersistence;
1127 }
1128
1129
1134 public void setSocialActivityPersistence(
1135 SocialActivityPersistence socialActivityPersistence) {
1136 this.socialActivityPersistence = socialActivityPersistence;
1137 }
1138
1139
1144 public SocialActivityFinder getSocialActivityFinder() {
1145 return socialActivityFinder;
1146 }
1147
1148
1153 public void setSocialActivityFinder(
1154 SocialActivityFinder socialActivityFinder) {
1155 this.socialActivityFinder = socialActivityFinder;
1156 }
1157
1158 public void afterPropertiesSet() {
1159 persistedModelLocalServiceRegistry.register("com.liferay.portlet.calendar.model.CalEvent",
1160 calEventLocalService);
1161 }
1162
1163 public void destroy() {
1164 persistedModelLocalServiceRegistry.unregister(
1165 "com.liferay.portlet.calendar.model.CalEvent");
1166 }
1167
1168
1173 @Override
1174 public String getBeanIdentifier() {
1175 return _beanIdentifier;
1176 }
1177
1178
1183 @Override
1184 public void setBeanIdentifier(String beanIdentifier) {
1185 _beanIdentifier = beanIdentifier;
1186 }
1187
1188 protected Class<?> getModelClass() {
1189 return CalEvent.class;
1190 }
1191
1192 protected String getModelClassName() {
1193 return CalEvent.class.getName();
1194 }
1195
1196
1201 protected void runSQL(String sql) throws SystemException {
1202 try {
1203 DataSource dataSource = calEventPersistence.getDataSource();
1204
1205 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1206 sql, new int[0]);
1207
1208 sqlUpdate.update();
1209 }
1210 catch (Exception e) {
1211 throw new SystemException(e);
1212 }
1213 }
1214
1215 @BeanReference(type = com.liferay.portlet.calendar.service.CalEventLocalService.class)
1216 protected com.liferay.portlet.calendar.service.CalEventLocalService calEventLocalService;
1217 @BeanReference(type = CalEventPersistence.class)
1218 protected CalEventPersistence calEventPersistence;
1219 @BeanReference(type = CalEventFinder.class)
1220 protected CalEventFinder calEventFinder;
1221 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1222 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1223 @BeanReference(type = com.liferay.mail.service.MailService.class)
1224 protected com.liferay.mail.service.MailService mailService;
1225 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1226 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1227 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1228 protected com.liferay.portal.service.CompanyService companyService;
1229 @BeanReference(type = CompanyPersistence.class)
1230 protected CompanyPersistence companyPersistence;
1231 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1232 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1233 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1234 protected com.liferay.portal.service.GroupService groupService;
1235 @BeanReference(type = GroupPersistence.class)
1236 protected GroupPersistence groupPersistence;
1237 @BeanReference(type = GroupFinder.class)
1238 protected GroupFinder groupFinder;
1239 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1240 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1241 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1242 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1243 @BeanReference(type = PortletPreferencesPersistence.class)
1244 protected PortletPreferencesPersistence portletPreferencesPersistence;
1245 @BeanReference(type = PortletPreferencesFinder.class)
1246 protected PortletPreferencesFinder portletPreferencesFinder;
1247 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1248 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1249 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1250 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1251 @BeanReference(type = SubscriptionPersistence.class)
1252 protected SubscriptionPersistence subscriptionPersistence;
1253 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1254 protected com.liferay.portal.service.UserLocalService userLocalService;
1255 @BeanReference(type = com.liferay.portal.service.UserService.class)
1256 protected com.liferay.portal.service.UserService userService;
1257 @BeanReference(type = UserPersistence.class)
1258 protected UserPersistence userPersistence;
1259 @BeanReference(type = UserFinder.class)
1260 protected UserFinder userFinder;
1261 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1262 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1263 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1264 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1265 @BeanReference(type = AssetEntryPersistence.class)
1266 protected AssetEntryPersistence assetEntryPersistence;
1267 @BeanReference(type = AssetEntryFinder.class)
1268 protected AssetEntryFinder assetEntryFinder;
1269 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1270 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1271 @BeanReference(type = AssetLinkPersistence.class)
1272 protected AssetLinkPersistence assetLinkPersistence;
1273 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1274 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1275 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1276 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1277 @BeanReference(type = AssetTagPersistence.class)
1278 protected AssetTagPersistence assetTagPersistence;
1279 @BeanReference(type = AssetTagFinder.class)
1280 protected AssetTagFinder assetTagFinder;
1281 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoValueLocalService.class)
1282 protected com.liferay.portlet.expando.service.ExpandoValueLocalService expandoValueLocalService;
1283 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoValueService.class)
1284 protected com.liferay.portlet.expando.service.ExpandoValueService expandoValueService;
1285 @BeanReference(type = ExpandoValuePersistence.class)
1286 protected ExpandoValuePersistence expandoValuePersistence;
1287 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1288 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1289 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1290 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1291 @BeanReference(type = MBMessagePersistence.class)
1292 protected MBMessagePersistence mbMessagePersistence;
1293 @BeanReference(type = MBMessageFinder.class)
1294 protected MBMessageFinder mbMessageFinder;
1295 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1296 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1297 @BeanReference(type = SocialActivityPersistence.class)
1298 protected SocialActivityPersistence socialActivityPersistence;
1299 @BeanReference(type = SocialActivityFinder.class)
1300 protected SocialActivityFinder socialActivityFinder;
1301 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1302 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1303 private String _beanIdentifier;
1304 }