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 com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1126 return socialActivityService;
1127 }
1128
1129
1134 public void setSocialActivityService(
1135 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1136 this.socialActivityService = socialActivityService;
1137 }
1138
1139
1144 public SocialActivityPersistence getSocialActivityPersistence() {
1145 return socialActivityPersistence;
1146 }
1147
1148
1153 public void setSocialActivityPersistence(
1154 SocialActivityPersistence socialActivityPersistence) {
1155 this.socialActivityPersistence = socialActivityPersistence;
1156 }
1157
1158
1163 public SocialActivityFinder getSocialActivityFinder() {
1164 return socialActivityFinder;
1165 }
1166
1167
1172 public void setSocialActivityFinder(
1173 SocialActivityFinder socialActivityFinder) {
1174 this.socialActivityFinder = socialActivityFinder;
1175 }
1176
1177 public void afterPropertiesSet() {
1178 persistedModelLocalServiceRegistry.register("com.liferay.portlet.calendar.model.CalEvent",
1179 calEventLocalService);
1180 }
1181
1182 public void destroy() {
1183 persistedModelLocalServiceRegistry.unregister(
1184 "com.liferay.portlet.calendar.model.CalEvent");
1185 }
1186
1187
1192 @Override
1193 public String getBeanIdentifier() {
1194 return _beanIdentifier;
1195 }
1196
1197
1202 @Override
1203 public void setBeanIdentifier(String beanIdentifier) {
1204 _beanIdentifier = beanIdentifier;
1205 }
1206
1207 protected Class<?> getModelClass() {
1208 return CalEvent.class;
1209 }
1210
1211 protected String getModelClassName() {
1212 return CalEvent.class.getName();
1213 }
1214
1215
1220 protected void runSQL(String sql) throws SystemException {
1221 try {
1222 DataSource dataSource = calEventPersistence.getDataSource();
1223
1224 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1225 sql, new int[0]);
1226
1227 sqlUpdate.update();
1228 }
1229 catch (Exception e) {
1230 throw new SystemException(e);
1231 }
1232 }
1233
1234 @BeanReference(type = com.liferay.portlet.calendar.service.CalEventLocalService.class)
1235 protected com.liferay.portlet.calendar.service.CalEventLocalService calEventLocalService;
1236 @BeanReference(type = CalEventPersistence.class)
1237 protected CalEventPersistence calEventPersistence;
1238 @BeanReference(type = CalEventFinder.class)
1239 protected CalEventFinder calEventFinder;
1240 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1241 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1242 @BeanReference(type = com.liferay.mail.service.MailService.class)
1243 protected com.liferay.mail.service.MailService mailService;
1244 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1245 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1246 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1247 protected com.liferay.portal.service.CompanyService companyService;
1248 @BeanReference(type = CompanyPersistence.class)
1249 protected CompanyPersistence companyPersistence;
1250 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1251 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1252 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1253 protected com.liferay.portal.service.GroupService groupService;
1254 @BeanReference(type = GroupPersistence.class)
1255 protected GroupPersistence groupPersistence;
1256 @BeanReference(type = GroupFinder.class)
1257 protected GroupFinder groupFinder;
1258 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1259 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1260 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1261 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1262 @BeanReference(type = PortletPreferencesPersistence.class)
1263 protected PortletPreferencesPersistence portletPreferencesPersistence;
1264 @BeanReference(type = PortletPreferencesFinder.class)
1265 protected PortletPreferencesFinder portletPreferencesFinder;
1266 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1267 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1268 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1269 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1270 @BeanReference(type = SubscriptionPersistence.class)
1271 protected SubscriptionPersistence subscriptionPersistence;
1272 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1273 protected com.liferay.portal.service.UserLocalService userLocalService;
1274 @BeanReference(type = com.liferay.portal.service.UserService.class)
1275 protected com.liferay.portal.service.UserService userService;
1276 @BeanReference(type = UserPersistence.class)
1277 protected UserPersistence userPersistence;
1278 @BeanReference(type = UserFinder.class)
1279 protected UserFinder userFinder;
1280 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1281 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1282 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1283 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1284 @BeanReference(type = AssetEntryPersistence.class)
1285 protected AssetEntryPersistence assetEntryPersistence;
1286 @BeanReference(type = AssetEntryFinder.class)
1287 protected AssetEntryFinder assetEntryFinder;
1288 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1289 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1290 @BeanReference(type = AssetLinkPersistence.class)
1291 protected AssetLinkPersistence assetLinkPersistence;
1292 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1293 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1294 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1295 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1296 @BeanReference(type = AssetTagPersistence.class)
1297 protected AssetTagPersistence assetTagPersistence;
1298 @BeanReference(type = AssetTagFinder.class)
1299 protected AssetTagFinder assetTagFinder;
1300 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoValueLocalService.class)
1301 protected com.liferay.portlet.expando.service.ExpandoValueLocalService expandoValueLocalService;
1302 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoValueService.class)
1303 protected com.liferay.portlet.expando.service.ExpandoValueService expandoValueService;
1304 @BeanReference(type = ExpandoValuePersistence.class)
1305 protected ExpandoValuePersistence expandoValuePersistence;
1306 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1307 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1308 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1309 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1310 @BeanReference(type = MBMessagePersistence.class)
1311 protected MBMessagePersistence mbMessagePersistence;
1312 @BeanReference(type = MBMessageFinder.class)
1313 protected MBMessageFinder mbMessageFinder;
1314 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1315 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1316 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1317 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1318 @BeanReference(type = SocialActivityPersistence.class)
1319 protected SocialActivityPersistence socialActivityPersistence;
1320 @BeanReference(type = SocialActivityFinder.class)
1321 protected SocialActivityFinder socialActivityFinder;
1322 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1323 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1324 private String _beanIdentifier;
1325 }