001
014
015 package com.liferay.portlet.softwarecatalog.service.base;
016
017 import com.liferay.counter.service.CounterLocalService;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.bean.IdentifiableBean;
021 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
024 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
025 import com.liferay.portal.kernel.exception.PortalException;
026 import com.liferay.portal.kernel.exception.SystemException;
027 import com.liferay.portal.kernel.search.Indexable;
028 import com.liferay.portal.kernel.search.IndexableType;
029 import com.liferay.portal.kernel.util.OrderByComparator;
030 import com.liferay.portal.model.PersistedModel;
031 import com.liferay.portal.service.BaseLocalServiceImpl;
032 import com.liferay.portal.service.GroupLocalService;
033 import com.liferay.portal.service.GroupService;
034 import com.liferay.portal.service.ImageLocalService;
035 import com.liferay.portal.service.ImageService;
036 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
037 import com.liferay.portal.service.ResourceLocalService;
038 import com.liferay.portal.service.ResourceService;
039 import com.liferay.portal.service.SubscriptionLocalService;
040 import com.liferay.portal.service.UserLocalService;
041 import com.liferay.portal.service.UserService;
042 import com.liferay.portal.service.persistence.GroupFinder;
043 import com.liferay.portal.service.persistence.GroupPersistence;
044 import com.liferay.portal.service.persistence.ImagePersistence;
045 import com.liferay.portal.service.persistence.ResourceFinder;
046 import com.liferay.portal.service.persistence.ResourcePersistence;
047 import com.liferay.portal.service.persistence.SubscriptionPersistence;
048 import com.liferay.portal.service.persistence.UserFinder;
049 import com.liferay.portal.service.persistence.UserPersistence;
050
051 import com.liferay.portlet.messageboards.service.MBMessageLocalService;
052 import com.liferay.portlet.messageboards.service.MBMessageService;
053 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
054 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
055 import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
056 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
057 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
058 import com.liferay.portlet.softwarecatalog.model.SCProductEntry;
059 import com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService;
060 import com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService;
061 import com.liferay.portlet.softwarecatalog.service.SCLicenseLocalService;
062 import com.liferay.portlet.softwarecatalog.service.SCLicenseService;
063 import com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService;
064 import com.liferay.portlet.softwarecatalog.service.SCProductEntryService;
065 import com.liferay.portlet.softwarecatalog.service.SCProductScreenshotLocalService;
066 import com.liferay.portlet.softwarecatalog.service.SCProductVersionLocalService;
067 import com.liferay.portlet.softwarecatalog.service.SCProductVersionService;
068 import com.liferay.portlet.softwarecatalog.service.persistence.SCFrameworkVersionPersistence;
069 import com.liferay.portlet.softwarecatalog.service.persistence.SCLicensePersistence;
070 import com.liferay.portlet.softwarecatalog.service.persistence.SCProductEntryPersistence;
071 import com.liferay.portlet.softwarecatalog.service.persistence.SCProductScreenshotPersistence;
072 import com.liferay.portlet.softwarecatalog.service.persistence.SCProductVersionPersistence;
073
074 import java.io.Serializable;
075
076 import java.util.List;
077
078 import javax.sql.DataSource;
079
080
092 public abstract class SCProductEntryLocalServiceBaseImpl
093 extends BaseLocalServiceImpl implements SCProductEntryLocalService,
094 IdentifiableBean {
095
100
101
108 @Indexable(type = IndexableType.REINDEX)
109 public SCProductEntry addSCProductEntry(SCProductEntry scProductEntry)
110 throws SystemException {
111 scProductEntry.setNew(true);
112
113 return scProductEntryPersistence.update(scProductEntry, false);
114 }
115
116
122 public SCProductEntry createSCProductEntry(long productEntryId) {
123 return scProductEntryPersistence.create(productEntryId);
124 }
125
126
134 @Indexable(type = IndexableType.DELETE)
135 public SCProductEntry deleteSCProductEntry(long productEntryId)
136 throws PortalException, SystemException {
137 return scProductEntryPersistence.remove(productEntryId);
138 }
139
140
147 @Indexable(type = IndexableType.DELETE)
148 public SCProductEntry deleteSCProductEntry(SCProductEntry scProductEntry)
149 throws SystemException {
150 return scProductEntryPersistence.remove(scProductEntry);
151 }
152
153 public DynamicQuery dynamicQuery() {
154 Class<?> clazz = getClass();
155
156 return DynamicQueryFactoryUtil.forClass(SCProductEntry.class,
157 clazz.getClassLoader());
158 }
159
160
167 @SuppressWarnings("rawtypes")
168 public List dynamicQuery(DynamicQuery dynamicQuery)
169 throws SystemException {
170 return scProductEntryPersistence.findWithDynamicQuery(dynamicQuery);
171 }
172
173
186 @SuppressWarnings("rawtypes")
187 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
188 throws SystemException {
189 return scProductEntryPersistence.findWithDynamicQuery(dynamicQuery,
190 start, end);
191 }
192
193
207 @SuppressWarnings("rawtypes")
208 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
209 OrderByComparator orderByComparator) throws SystemException {
210 return scProductEntryPersistence.findWithDynamicQuery(dynamicQuery,
211 start, end, orderByComparator);
212 }
213
214
221 public long dynamicQueryCount(DynamicQuery dynamicQuery)
222 throws SystemException {
223 return scProductEntryPersistence.countWithDynamicQuery(dynamicQuery);
224 }
225
226 public SCProductEntry fetchSCProductEntry(long productEntryId)
227 throws SystemException {
228 return scProductEntryPersistence.fetchByPrimaryKey(productEntryId);
229 }
230
231
239 public SCProductEntry getSCProductEntry(long productEntryId)
240 throws PortalException, SystemException {
241 return scProductEntryPersistence.findByPrimaryKey(productEntryId);
242 }
243
244 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
245 throws PortalException, SystemException {
246 return scProductEntryPersistence.findByPrimaryKey(primaryKeyObj);
247 }
248
249
261 public List<SCProductEntry> getSCProductEntries(int start, int end)
262 throws SystemException {
263 return scProductEntryPersistence.findAll(start, end);
264 }
265
266
272 public int getSCProductEntriesCount() throws SystemException {
273 return scProductEntryPersistence.countAll();
274 }
275
276
283 @Indexable(type = IndexableType.REINDEX)
284 public SCProductEntry updateSCProductEntry(SCProductEntry scProductEntry)
285 throws SystemException {
286 return updateSCProductEntry(scProductEntry, true);
287 }
288
289
297 @Indexable(type = IndexableType.REINDEX)
298 public SCProductEntry updateSCProductEntry(SCProductEntry scProductEntry,
299 boolean merge) throws SystemException {
300 scProductEntry.setNew(false);
301
302 return scProductEntryPersistence.update(scProductEntry, merge);
303 }
304
305
308 public void addSCLicenseSCProductEntry(long licenseId, long productEntryId)
309 throws SystemException {
310 scLicensePersistence.addSCProductEntry(licenseId, productEntryId);
311 }
312
313
316 public void addSCLicenseSCProductEntry(long licenseId,
317 SCProductEntry scProductEntry) throws SystemException {
318 scLicensePersistence.addSCProductEntry(licenseId, scProductEntry);
319 }
320
321
324 public void addSCLicenseSCProductEntries(long licenseId,
325 long[] productEntryIds) throws SystemException {
326 scLicensePersistence.addSCProductEntries(licenseId, productEntryIds);
327 }
328
329
332 public void addSCLicenseSCProductEntries(long licenseId,
333 List<SCProductEntry> SCProductEntries) throws SystemException {
334 scLicensePersistence.addSCProductEntries(licenseId, SCProductEntries);
335 }
336
337
340 public void clearSCLicenseSCProductEntries(long licenseId)
341 throws SystemException {
342 scLicensePersistence.clearSCProductEntries(licenseId);
343 }
344
345
348 public void deleteSCLicenseSCProductEntry(long licenseId,
349 long productEntryId) throws SystemException {
350 scLicensePersistence.removeSCProductEntry(licenseId, productEntryId);
351 }
352
353
356 public void deleteSCLicenseSCProductEntry(long licenseId,
357 SCProductEntry scProductEntry) throws SystemException {
358 scLicensePersistence.removeSCProductEntry(licenseId, scProductEntry);
359 }
360
361
364 public void deleteSCLicenseSCProductEntries(long licenseId,
365 long[] productEntryIds) throws SystemException {
366 scLicensePersistence.removeSCProductEntries(licenseId, productEntryIds);
367 }
368
369
372 public void deleteSCLicenseSCProductEntries(long licenseId,
373 List<SCProductEntry> SCProductEntries) throws SystemException {
374 scLicensePersistence.removeSCProductEntries(licenseId, SCProductEntries);
375 }
376
377
380 public List<SCProductEntry> getSCLicenseSCProductEntries(long licenseId)
381 throws SystemException {
382 return scLicensePersistence.getSCProductEntries(licenseId);
383 }
384
385
388 public List<SCProductEntry> getSCLicenseSCProductEntries(long licenseId,
389 int start, int end) throws SystemException {
390 return scLicensePersistence.getSCProductEntries(licenseId, start, end);
391 }
392
393
396 public List<SCProductEntry> getSCLicenseSCProductEntries(long licenseId,
397 int start, int end, OrderByComparator orderByComparator)
398 throws SystemException {
399 return scLicensePersistence.getSCProductEntries(licenseId, start, end,
400 orderByComparator);
401 }
402
403
406 public int getSCLicenseSCProductEntriesCount(long licenseId)
407 throws SystemException {
408 return scLicensePersistence.getSCProductEntriesSize(licenseId);
409 }
410
411
414 public boolean hasSCLicenseSCProductEntry(long licenseId,
415 long productEntryId) throws SystemException {
416 return scLicensePersistence.containsSCProductEntry(licenseId,
417 productEntryId);
418 }
419
420
423 public boolean hasSCLicenseSCProductEntries(long licenseId)
424 throws SystemException {
425 return scLicensePersistence.containsSCProductEntries(licenseId);
426 }
427
428
431 public void setSCLicenseSCProductEntries(long licenseId,
432 long[] productEntryIds) throws SystemException {
433 scLicensePersistence.setSCProductEntries(licenseId, productEntryIds);
434 }
435
436
441 public SCFrameworkVersionLocalService getSCFrameworkVersionLocalService() {
442 return scFrameworkVersionLocalService;
443 }
444
445
450 public void setSCFrameworkVersionLocalService(
451 SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
452 this.scFrameworkVersionLocalService = scFrameworkVersionLocalService;
453 }
454
455
460 public SCFrameworkVersionService getSCFrameworkVersionService() {
461 return scFrameworkVersionService;
462 }
463
464
469 public void setSCFrameworkVersionService(
470 SCFrameworkVersionService scFrameworkVersionService) {
471 this.scFrameworkVersionService = scFrameworkVersionService;
472 }
473
474
479 public SCFrameworkVersionPersistence getSCFrameworkVersionPersistence() {
480 return scFrameworkVersionPersistence;
481 }
482
483
488 public void setSCFrameworkVersionPersistence(
489 SCFrameworkVersionPersistence scFrameworkVersionPersistence) {
490 this.scFrameworkVersionPersistence = scFrameworkVersionPersistence;
491 }
492
493
498 public SCLicenseLocalService getSCLicenseLocalService() {
499 return scLicenseLocalService;
500 }
501
502
507 public void setSCLicenseLocalService(
508 SCLicenseLocalService scLicenseLocalService) {
509 this.scLicenseLocalService = scLicenseLocalService;
510 }
511
512
517 public SCLicenseService getSCLicenseService() {
518 return scLicenseService;
519 }
520
521
526 public void setSCLicenseService(SCLicenseService scLicenseService) {
527 this.scLicenseService = scLicenseService;
528 }
529
530
535 public SCLicensePersistence getSCLicensePersistence() {
536 return scLicensePersistence;
537 }
538
539
544 public void setSCLicensePersistence(
545 SCLicensePersistence scLicensePersistence) {
546 this.scLicensePersistence = scLicensePersistence;
547 }
548
549
554 public SCProductEntryLocalService getSCProductEntryLocalService() {
555 return scProductEntryLocalService;
556 }
557
558
563 public void setSCProductEntryLocalService(
564 SCProductEntryLocalService scProductEntryLocalService) {
565 this.scProductEntryLocalService = scProductEntryLocalService;
566 }
567
568
573 public SCProductEntryService getSCProductEntryService() {
574 return scProductEntryService;
575 }
576
577
582 public void setSCProductEntryService(
583 SCProductEntryService scProductEntryService) {
584 this.scProductEntryService = scProductEntryService;
585 }
586
587
592 public SCProductEntryPersistence getSCProductEntryPersistence() {
593 return scProductEntryPersistence;
594 }
595
596
601 public void setSCProductEntryPersistence(
602 SCProductEntryPersistence scProductEntryPersistence) {
603 this.scProductEntryPersistence = scProductEntryPersistence;
604 }
605
606
611 public SCProductScreenshotLocalService getSCProductScreenshotLocalService() {
612 return scProductScreenshotLocalService;
613 }
614
615
620 public void setSCProductScreenshotLocalService(
621 SCProductScreenshotLocalService scProductScreenshotLocalService) {
622 this.scProductScreenshotLocalService = scProductScreenshotLocalService;
623 }
624
625
630 public SCProductScreenshotPersistence getSCProductScreenshotPersistence() {
631 return scProductScreenshotPersistence;
632 }
633
634
639 public void setSCProductScreenshotPersistence(
640 SCProductScreenshotPersistence scProductScreenshotPersistence) {
641 this.scProductScreenshotPersistence = scProductScreenshotPersistence;
642 }
643
644
649 public SCProductVersionLocalService getSCProductVersionLocalService() {
650 return scProductVersionLocalService;
651 }
652
653
658 public void setSCProductVersionLocalService(
659 SCProductVersionLocalService scProductVersionLocalService) {
660 this.scProductVersionLocalService = scProductVersionLocalService;
661 }
662
663
668 public SCProductVersionService getSCProductVersionService() {
669 return scProductVersionService;
670 }
671
672
677 public void setSCProductVersionService(
678 SCProductVersionService scProductVersionService) {
679 this.scProductVersionService = scProductVersionService;
680 }
681
682
687 public SCProductVersionPersistence getSCProductVersionPersistence() {
688 return scProductVersionPersistence;
689 }
690
691
696 public void setSCProductVersionPersistence(
697 SCProductVersionPersistence scProductVersionPersistence) {
698 this.scProductVersionPersistence = scProductVersionPersistence;
699 }
700
701
706 public CounterLocalService getCounterLocalService() {
707 return counterLocalService;
708 }
709
710
715 public void setCounterLocalService(CounterLocalService counterLocalService) {
716 this.counterLocalService = counterLocalService;
717 }
718
719
724 public GroupLocalService getGroupLocalService() {
725 return groupLocalService;
726 }
727
728
733 public void setGroupLocalService(GroupLocalService groupLocalService) {
734 this.groupLocalService = groupLocalService;
735 }
736
737
742 public GroupService getGroupService() {
743 return groupService;
744 }
745
746
751 public void setGroupService(GroupService groupService) {
752 this.groupService = groupService;
753 }
754
755
760 public GroupPersistence getGroupPersistence() {
761 return groupPersistence;
762 }
763
764
769 public void setGroupPersistence(GroupPersistence groupPersistence) {
770 this.groupPersistence = groupPersistence;
771 }
772
773
778 public GroupFinder getGroupFinder() {
779 return groupFinder;
780 }
781
782
787 public void setGroupFinder(GroupFinder groupFinder) {
788 this.groupFinder = groupFinder;
789 }
790
791
796 public ImageLocalService getImageLocalService() {
797 return imageLocalService;
798 }
799
800
805 public void setImageLocalService(ImageLocalService imageLocalService) {
806 this.imageLocalService = imageLocalService;
807 }
808
809
814 public ImageService getImageService() {
815 return imageService;
816 }
817
818
823 public void setImageService(ImageService imageService) {
824 this.imageService = imageService;
825 }
826
827
832 public ImagePersistence getImagePersistence() {
833 return imagePersistence;
834 }
835
836
841 public void setImagePersistence(ImagePersistence imagePersistence) {
842 this.imagePersistence = imagePersistence;
843 }
844
845
850 public ResourceLocalService getResourceLocalService() {
851 return resourceLocalService;
852 }
853
854
859 public void setResourceLocalService(
860 ResourceLocalService resourceLocalService) {
861 this.resourceLocalService = resourceLocalService;
862 }
863
864
869 public ResourceService getResourceService() {
870 return resourceService;
871 }
872
873
878 public void setResourceService(ResourceService resourceService) {
879 this.resourceService = resourceService;
880 }
881
882
887 public ResourcePersistence getResourcePersistence() {
888 return resourcePersistence;
889 }
890
891
896 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
897 this.resourcePersistence = resourcePersistence;
898 }
899
900
905 public ResourceFinder getResourceFinder() {
906 return resourceFinder;
907 }
908
909
914 public void setResourceFinder(ResourceFinder resourceFinder) {
915 this.resourceFinder = resourceFinder;
916 }
917
918
923 public SubscriptionLocalService getSubscriptionLocalService() {
924 return subscriptionLocalService;
925 }
926
927
932 public void setSubscriptionLocalService(
933 SubscriptionLocalService subscriptionLocalService) {
934 this.subscriptionLocalService = subscriptionLocalService;
935 }
936
937
942 public SubscriptionPersistence getSubscriptionPersistence() {
943 return subscriptionPersistence;
944 }
945
946
951 public void setSubscriptionPersistence(
952 SubscriptionPersistence subscriptionPersistence) {
953 this.subscriptionPersistence = subscriptionPersistence;
954 }
955
956
961 public UserLocalService getUserLocalService() {
962 return userLocalService;
963 }
964
965
970 public void setUserLocalService(UserLocalService userLocalService) {
971 this.userLocalService = userLocalService;
972 }
973
974
979 public UserService getUserService() {
980 return userService;
981 }
982
983
988 public void setUserService(UserService userService) {
989 this.userService = userService;
990 }
991
992
997 public UserPersistence getUserPersistence() {
998 return userPersistence;
999 }
1000
1001
1006 public void setUserPersistence(UserPersistence userPersistence) {
1007 this.userPersistence = userPersistence;
1008 }
1009
1010
1015 public UserFinder getUserFinder() {
1016 return userFinder;
1017 }
1018
1019
1024 public void setUserFinder(UserFinder userFinder) {
1025 this.userFinder = userFinder;
1026 }
1027
1028
1033 public MBMessageLocalService getMBMessageLocalService() {
1034 return mbMessageLocalService;
1035 }
1036
1037
1042 public void setMBMessageLocalService(
1043 MBMessageLocalService mbMessageLocalService) {
1044 this.mbMessageLocalService = mbMessageLocalService;
1045 }
1046
1047
1052 public MBMessageService getMBMessageService() {
1053 return mbMessageService;
1054 }
1055
1056
1061 public void setMBMessageService(MBMessageService mbMessageService) {
1062 this.mbMessageService = mbMessageService;
1063 }
1064
1065
1070 public MBMessagePersistence getMBMessagePersistence() {
1071 return mbMessagePersistence;
1072 }
1073
1074
1079 public void setMBMessagePersistence(
1080 MBMessagePersistence mbMessagePersistence) {
1081 this.mbMessagePersistence = mbMessagePersistence;
1082 }
1083
1084
1089 public MBMessageFinder getMBMessageFinder() {
1090 return mbMessageFinder;
1091 }
1092
1093
1098 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1099 this.mbMessageFinder = mbMessageFinder;
1100 }
1101
1102
1107 public RatingsStatsLocalService getRatingsStatsLocalService() {
1108 return ratingsStatsLocalService;
1109 }
1110
1111
1116 public void setRatingsStatsLocalService(
1117 RatingsStatsLocalService ratingsStatsLocalService) {
1118 this.ratingsStatsLocalService = ratingsStatsLocalService;
1119 }
1120
1121
1126 public RatingsStatsPersistence getRatingsStatsPersistence() {
1127 return ratingsStatsPersistence;
1128 }
1129
1130
1135 public void setRatingsStatsPersistence(
1136 RatingsStatsPersistence ratingsStatsPersistence) {
1137 this.ratingsStatsPersistence = ratingsStatsPersistence;
1138 }
1139
1140
1145 public RatingsStatsFinder getRatingsStatsFinder() {
1146 return ratingsStatsFinder;
1147 }
1148
1149
1154 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1155 this.ratingsStatsFinder = ratingsStatsFinder;
1156 }
1157
1158 public void afterPropertiesSet() {
1159 persistedModelLocalServiceRegistry.register("com.liferay.portlet.softwarecatalog.model.SCProductEntry",
1160 scProductEntryLocalService);
1161 }
1162
1163 public void destroy() {
1164 persistedModelLocalServiceRegistry.unregister(
1165 "com.liferay.portlet.softwarecatalog.model.SCProductEntry");
1166 }
1167
1168
1173 public String getBeanIdentifier() {
1174 return _beanIdentifier;
1175 }
1176
1177
1182 public void setBeanIdentifier(String beanIdentifier) {
1183 _beanIdentifier = beanIdentifier;
1184 }
1185
1186 protected Class<?> getModelClass() {
1187 return SCProductEntry.class;
1188 }
1189
1190 protected String getModelClassName() {
1191 return SCProductEntry.class.getName();
1192 }
1193
1194
1199 protected void runSQL(String sql) throws SystemException {
1200 try {
1201 DataSource dataSource = scProductEntryPersistence.getDataSource();
1202
1203 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1204 sql, new int[0]);
1205
1206 sqlUpdate.update();
1207 }
1208 catch (Exception e) {
1209 throw new SystemException(e);
1210 }
1211 }
1212
1213 @BeanReference(type = SCFrameworkVersionLocalService.class)
1214 protected SCFrameworkVersionLocalService scFrameworkVersionLocalService;
1215 @BeanReference(type = SCFrameworkVersionService.class)
1216 protected SCFrameworkVersionService scFrameworkVersionService;
1217 @BeanReference(type = SCFrameworkVersionPersistence.class)
1218 protected SCFrameworkVersionPersistence scFrameworkVersionPersistence;
1219 @BeanReference(type = SCLicenseLocalService.class)
1220 protected SCLicenseLocalService scLicenseLocalService;
1221 @BeanReference(type = SCLicenseService.class)
1222 protected SCLicenseService scLicenseService;
1223 @BeanReference(type = SCLicensePersistence.class)
1224 protected SCLicensePersistence scLicensePersistence;
1225 @BeanReference(type = SCProductEntryLocalService.class)
1226 protected SCProductEntryLocalService scProductEntryLocalService;
1227 @BeanReference(type = SCProductEntryService.class)
1228 protected SCProductEntryService scProductEntryService;
1229 @BeanReference(type = SCProductEntryPersistence.class)
1230 protected SCProductEntryPersistence scProductEntryPersistence;
1231 @BeanReference(type = SCProductScreenshotLocalService.class)
1232 protected SCProductScreenshotLocalService scProductScreenshotLocalService;
1233 @BeanReference(type = SCProductScreenshotPersistence.class)
1234 protected SCProductScreenshotPersistence scProductScreenshotPersistence;
1235 @BeanReference(type = SCProductVersionLocalService.class)
1236 protected SCProductVersionLocalService scProductVersionLocalService;
1237 @BeanReference(type = SCProductVersionService.class)
1238 protected SCProductVersionService scProductVersionService;
1239 @BeanReference(type = SCProductVersionPersistence.class)
1240 protected SCProductVersionPersistence scProductVersionPersistence;
1241 @BeanReference(type = CounterLocalService.class)
1242 protected CounterLocalService counterLocalService;
1243 @BeanReference(type = GroupLocalService.class)
1244 protected GroupLocalService groupLocalService;
1245 @BeanReference(type = GroupService.class)
1246 protected GroupService groupService;
1247 @BeanReference(type = GroupPersistence.class)
1248 protected GroupPersistence groupPersistence;
1249 @BeanReference(type = GroupFinder.class)
1250 protected GroupFinder groupFinder;
1251 @BeanReference(type = ImageLocalService.class)
1252 protected ImageLocalService imageLocalService;
1253 @BeanReference(type = ImageService.class)
1254 protected ImageService imageService;
1255 @BeanReference(type = ImagePersistence.class)
1256 protected ImagePersistence imagePersistence;
1257 @BeanReference(type = ResourceLocalService.class)
1258 protected ResourceLocalService resourceLocalService;
1259 @BeanReference(type = ResourceService.class)
1260 protected ResourceService resourceService;
1261 @BeanReference(type = ResourcePersistence.class)
1262 protected ResourcePersistence resourcePersistence;
1263 @BeanReference(type = ResourceFinder.class)
1264 protected ResourceFinder resourceFinder;
1265 @BeanReference(type = SubscriptionLocalService.class)
1266 protected SubscriptionLocalService subscriptionLocalService;
1267 @BeanReference(type = SubscriptionPersistence.class)
1268 protected SubscriptionPersistence subscriptionPersistence;
1269 @BeanReference(type = UserLocalService.class)
1270 protected UserLocalService userLocalService;
1271 @BeanReference(type = UserService.class)
1272 protected UserService userService;
1273 @BeanReference(type = UserPersistence.class)
1274 protected UserPersistence userPersistence;
1275 @BeanReference(type = UserFinder.class)
1276 protected UserFinder userFinder;
1277 @BeanReference(type = MBMessageLocalService.class)
1278 protected MBMessageLocalService mbMessageLocalService;
1279 @BeanReference(type = MBMessageService.class)
1280 protected MBMessageService mbMessageService;
1281 @BeanReference(type = MBMessagePersistence.class)
1282 protected MBMessagePersistence mbMessagePersistence;
1283 @BeanReference(type = MBMessageFinder.class)
1284 protected MBMessageFinder mbMessageFinder;
1285 @BeanReference(type = RatingsStatsLocalService.class)
1286 protected RatingsStatsLocalService ratingsStatsLocalService;
1287 @BeanReference(type = RatingsStatsPersistence.class)
1288 protected RatingsStatsPersistence ratingsStatsPersistence;
1289 @BeanReference(type = RatingsStatsFinder.class)
1290 protected RatingsStatsFinder ratingsStatsFinder;
1291 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1292 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1293 private String _beanIdentifier;
1294 }