001
014
015 package com.liferay.portlet.messageboards.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.exception.SystemException;
022 import com.liferay.portal.service.BaseServiceImpl;
023 import com.liferay.portal.service.persistence.GroupFinder;
024 import com.liferay.portal.service.persistence.GroupPersistence;
025 import com.liferay.portal.service.persistence.LockFinder;
026 import com.liferay.portal.service.persistence.LockPersistence;
027 import com.liferay.portal.service.persistence.SubscriptionPersistence;
028 import com.liferay.portal.service.persistence.UserFinder;
029 import com.liferay.portal.service.persistence.UserPersistence;
030 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
031
032 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
033 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
034 import com.liferay.portlet.messageboards.model.MBThread;
035 import com.liferay.portlet.messageboards.service.MBThreadService;
036 import com.liferay.portlet.messageboards.service.persistence.MBBanPersistence;
037 import com.liferay.portlet.messageboards.service.persistence.MBCategoryFinder;
038 import com.liferay.portlet.messageboards.service.persistence.MBCategoryPersistence;
039 import com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence;
040 import com.liferay.portlet.messageboards.service.persistence.MBMailingListPersistence;
041 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
042 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
043 import com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence;
044 import com.liferay.portlet.messageboards.service.persistence.MBThreadFinder;
045 import com.liferay.portlet.messageboards.service.persistence.MBThreadFlagPersistence;
046 import com.liferay.portlet.messageboards.service.persistence.MBThreadPersistence;
047 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
048 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
049 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
050 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
051 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
052
053 import javax.sql.DataSource;
054
055
067 public abstract class MBThreadServiceBaseImpl extends BaseServiceImpl
068 implements MBThreadService, IdentifiableBean {
069
074
075
080 public com.liferay.portlet.messageboards.service.MBBanLocalService getMBBanLocalService() {
081 return mbBanLocalService;
082 }
083
084
089 public void setMBBanLocalService(
090 com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService) {
091 this.mbBanLocalService = mbBanLocalService;
092 }
093
094
099 public com.liferay.portlet.messageboards.service.MBBanService getMBBanService() {
100 return mbBanService;
101 }
102
103
108 public void setMBBanService(
109 com.liferay.portlet.messageboards.service.MBBanService mbBanService) {
110 this.mbBanService = mbBanService;
111 }
112
113
118 public MBBanPersistence getMBBanPersistence() {
119 return mbBanPersistence;
120 }
121
122
127 public void setMBBanPersistence(MBBanPersistence mbBanPersistence) {
128 this.mbBanPersistence = mbBanPersistence;
129 }
130
131
136 public com.liferay.portlet.messageboards.service.MBCategoryLocalService getMBCategoryLocalService() {
137 return mbCategoryLocalService;
138 }
139
140
145 public void setMBCategoryLocalService(
146 com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService) {
147 this.mbCategoryLocalService = mbCategoryLocalService;
148 }
149
150
155 public com.liferay.portlet.messageboards.service.MBCategoryService getMBCategoryService() {
156 return mbCategoryService;
157 }
158
159
164 public void setMBCategoryService(
165 com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService) {
166 this.mbCategoryService = mbCategoryService;
167 }
168
169
174 public MBCategoryPersistence getMBCategoryPersistence() {
175 return mbCategoryPersistence;
176 }
177
178
183 public void setMBCategoryPersistence(
184 MBCategoryPersistence mbCategoryPersistence) {
185 this.mbCategoryPersistence = mbCategoryPersistence;
186 }
187
188
193 public MBCategoryFinder getMBCategoryFinder() {
194 return mbCategoryFinder;
195 }
196
197
202 public void setMBCategoryFinder(MBCategoryFinder mbCategoryFinder) {
203 this.mbCategoryFinder = mbCategoryFinder;
204 }
205
206
211 public com.liferay.portlet.messageboards.service.MBDiscussionLocalService getMBDiscussionLocalService() {
212 return mbDiscussionLocalService;
213 }
214
215
220 public void setMBDiscussionLocalService(
221 com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService) {
222 this.mbDiscussionLocalService = mbDiscussionLocalService;
223 }
224
225
230 public MBDiscussionPersistence getMBDiscussionPersistence() {
231 return mbDiscussionPersistence;
232 }
233
234
239 public void setMBDiscussionPersistence(
240 MBDiscussionPersistence mbDiscussionPersistence) {
241 this.mbDiscussionPersistence = mbDiscussionPersistence;
242 }
243
244
249 public com.liferay.portlet.messageboards.service.MBMailingListLocalService getMBMailingListLocalService() {
250 return mbMailingListLocalService;
251 }
252
253
258 public void setMBMailingListLocalService(
259 com.liferay.portlet.messageboards.service.MBMailingListLocalService mbMailingListLocalService) {
260 this.mbMailingListLocalService = mbMailingListLocalService;
261 }
262
263
268 public MBMailingListPersistence getMBMailingListPersistence() {
269 return mbMailingListPersistence;
270 }
271
272
277 public void setMBMailingListPersistence(
278 MBMailingListPersistence mbMailingListPersistence) {
279 this.mbMailingListPersistence = mbMailingListPersistence;
280 }
281
282
287 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
288 return mbMessageLocalService;
289 }
290
291
296 public void setMBMessageLocalService(
297 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
298 this.mbMessageLocalService = mbMessageLocalService;
299 }
300
301
306 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
307 return mbMessageService;
308 }
309
310
315 public void setMBMessageService(
316 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
317 this.mbMessageService = mbMessageService;
318 }
319
320
325 public MBMessagePersistence getMBMessagePersistence() {
326 return mbMessagePersistence;
327 }
328
329
334 public void setMBMessagePersistence(
335 MBMessagePersistence mbMessagePersistence) {
336 this.mbMessagePersistence = mbMessagePersistence;
337 }
338
339
344 public MBMessageFinder getMBMessageFinder() {
345 return mbMessageFinder;
346 }
347
348
353 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
354 this.mbMessageFinder = mbMessageFinder;
355 }
356
357
362 public com.liferay.portlet.messageboards.service.MBStatsUserLocalService getMBStatsUserLocalService() {
363 return mbStatsUserLocalService;
364 }
365
366
371 public void setMBStatsUserLocalService(
372 com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService) {
373 this.mbStatsUserLocalService = mbStatsUserLocalService;
374 }
375
376
381 public MBStatsUserPersistence getMBStatsUserPersistence() {
382 return mbStatsUserPersistence;
383 }
384
385
390 public void setMBStatsUserPersistence(
391 MBStatsUserPersistence mbStatsUserPersistence) {
392 this.mbStatsUserPersistence = mbStatsUserPersistence;
393 }
394
395
400 public com.liferay.portlet.messageboards.service.MBThreadLocalService getMBThreadLocalService() {
401 return mbThreadLocalService;
402 }
403
404
409 public void setMBThreadLocalService(
410 com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService) {
411 this.mbThreadLocalService = mbThreadLocalService;
412 }
413
414
419 public com.liferay.portlet.messageboards.service.MBThreadService getMBThreadService() {
420 return mbThreadService;
421 }
422
423
428 public void setMBThreadService(
429 com.liferay.portlet.messageboards.service.MBThreadService mbThreadService) {
430 this.mbThreadService = mbThreadService;
431 }
432
433
438 public MBThreadPersistence getMBThreadPersistence() {
439 return mbThreadPersistence;
440 }
441
442
447 public void setMBThreadPersistence(MBThreadPersistence mbThreadPersistence) {
448 this.mbThreadPersistence = mbThreadPersistence;
449 }
450
451
456 public MBThreadFinder getMBThreadFinder() {
457 return mbThreadFinder;
458 }
459
460
465 public void setMBThreadFinder(MBThreadFinder mbThreadFinder) {
466 this.mbThreadFinder = mbThreadFinder;
467 }
468
469
474 public com.liferay.portlet.messageboards.service.MBThreadFlagLocalService getMBThreadFlagLocalService() {
475 return mbThreadFlagLocalService;
476 }
477
478
483 public void setMBThreadFlagLocalService(
484 com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService) {
485 this.mbThreadFlagLocalService = mbThreadFlagLocalService;
486 }
487
488
493 public MBThreadFlagPersistence getMBThreadFlagPersistence() {
494 return mbThreadFlagPersistence;
495 }
496
497
502 public void setMBThreadFlagPersistence(
503 MBThreadFlagPersistence mbThreadFlagPersistence) {
504 this.mbThreadFlagPersistence = mbThreadFlagPersistence;
505 }
506
507
512 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
513 return counterLocalService;
514 }
515
516
521 public void setCounterLocalService(
522 com.liferay.counter.service.CounterLocalService counterLocalService) {
523 this.counterLocalService = counterLocalService;
524 }
525
526
531 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
532 return groupLocalService;
533 }
534
535
540 public void setGroupLocalService(
541 com.liferay.portal.service.GroupLocalService groupLocalService) {
542 this.groupLocalService = groupLocalService;
543 }
544
545
550 public com.liferay.portal.service.GroupService getGroupService() {
551 return groupService;
552 }
553
554
559 public void setGroupService(
560 com.liferay.portal.service.GroupService groupService) {
561 this.groupService = groupService;
562 }
563
564
569 public GroupPersistence getGroupPersistence() {
570 return groupPersistence;
571 }
572
573
578 public void setGroupPersistence(GroupPersistence groupPersistence) {
579 this.groupPersistence = groupPersistence;
580 }
581
582
587 public GroupFinder getGroupFinder() {
588 return groupFinder;
589 }
590
591
596 public void setGroupFinder(GroupFinder groupFinder) {
597 this.groupFinder = groupFinder;
598 }
599
600
605 public com.liferay.portal.service.LockLocalService getLockLocalService() {
606 return lockLocalService;
607 }
608
609
614 public void setLockLocalService(
615 com.liferay.portal.service.LockLocalService lockLocalService) {
616 this.lockLocalService = lockLocalService;
617 }
618
619
624 public LockPersistence getLockPersistence() {
625 return lockPersistence;
626 }
627
628
633 public void setLockPersistence(LockPersistence lockPersistence) {
634 this.lockPersistence = lockPersistence;
635 }
636
637
642 public LockFinder getLockFinder() {
643 return lockFinder;
644 }
645
646
651 public void setLockFinder(LockFinder lockFinder) {
652 this.lockFinder = lockFinder;
653 }
654
655
660 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
661 return resourceLocalService;
662 }
663
664
669 public void setResourceLocalService(
670 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
671 this.resourceLocalService = resourceLocalService;
672 }
673
674
679 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
680 return subscriptionLocalService;
681 }
682
683
688 public void setSubscriptionLocalService(
689 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
690 this.subscriptionLocalService = subscriptionLocalService;
691 }
692
693
698 public SubscriptionPersistence getSubscriptionPersistence() {
699 return subscriptionPersistence;
700 }
701
702
707 public void setSubscriptionPersistence(
708 SubscriptionPersistence subscriptionPersistence) {
709 this.subscriptionPersistence = subscriptionPersistence;
710 }
711
712
717 public com.liferay.portal.service.UserLocalService getUserLocalService() {
718 return userLocalService;
719 }
720
721
726 public void setUserLocalService(
727 com.liferay.portal.service.UserLocalService userLocalService) {
728 this.userLocalService = userLocalService;
729 }
730
731
736 public com.liferay.portal.service.UserService getUserService() {
737 return userService;
738 }
739
740
745 public void setUserService(
746 com.liferay.portal.service.UserService userService) {
747 this.userService = userService;
748 }
749
750
755 public UserPersistence getUserPersistence() {
756 return userPersistence;
757 }
758
759
764 public void setUserPersistence(UserPersistence userPersistence) {
765 this.userPersistence = userPersistence;
766 }
767
768
773 public UserFinder getUserFinder() {
774 return userFinder;
775 }
776
777
782 public void setUserFinder(UserFinder userFinder) {
783 this.userFinder = userFinder;
784 }
785
786
791 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
792 return workflowInstanceLinkLocalService;
793 }
794
795
800 public void setWorkflowInstanceLinkLocalService(
801 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
802 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
803 }
804
805
810 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
811 return workflowInstanceLinkPersistence;
812 }
813
814
819 public void setWorkflowInstanceLinkPersistence(
820 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
821 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
822 }
823
824
829 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
830 return assetEntryLocalService;
831 }
832
833
838 public void setAssetEntryLocalService(
839 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
840 this.assetEntryLocalService = assetEntryLocalService;
841 }
842
843
848 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
849 return assetEntryService;
850 }
851
852
857 public void setAssetEntryService(
858 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
859 this.assetEntryService = assetEntryService;
860 }
861
862
867 public AssetEntryPersistence getAssetEntryPersistence() {
868 return assetEntryPersistence;
869 }
870
871
876 public void setAssetEntryPersistence(
877 AssetEntryPersistence assetEntryPersistence) {
878 this.assetEntryPersistence = assetEntryPersistence;
879 }
880
881
886 public AssetEntryFinder getAssetEntryFinder() {
887 return assetEntryFinder;
888 }
889
890
895 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
896 this.assetEntryFinder = assetEntryFinder;
897 }
898
899
904 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
905 return ratingsStatsLocalService;
906 }
907
908
913 public void setRatingsStatsLocalService(
914 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
915 this.ratingsStatsLocalService = ratingsStatsLocalService;
916 }
917
918
923 public RatingsStatsPersistence getRatingsStatsPersistence() {
924 return ratingsStatsPersistence;
925 }
926
927
932 public void setRatingsStatsPersistence(
933 RatingsStatsPersistence ratingsStatsPersistence) {
934 this.ratingsStatsPersistence = ratingsStatsPersistence;
935 }
936
937
942 public RatingsStatsFinder getRatingsStatsFinder() {
943 return ratingsStatsFinder;
944 }
945
946
951 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
952 this.ratingsStatsFinder = ratingsStatsFinder;
953 }
954
955
960 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
961 return socialActivityLocalService;
962 }
963
964
969 public void setSocialActivityLocalService(
970 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
971 this.socialActivityLocalService = socialActivityLocalService;
972 }
973
974
979 public SocialActivityPersistence getSocialActivityPersistence() {
980 return socialActivityPersistence;
981 }
982
983
988 public void setSocialActivityPersistence(
989 SocialActivityPersistence socialActivityPersistence) {
990 this.socialActivityPersistence = socialActivityPersistence;
991 }
992
993
998 public SocialActivityFinder getSocialActivityFinder() {
999 return socialActivityFinder;
1000 }
1001
1002
1007 public void setSocialActivityFinder(
1008 SocialActivityFinder socialActivityFinder) {
1009 this.socialActivityFinder = socialActivityFinder;
1010 }
1011
1012
1017 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1018 return trashEntryLocalService;
1019 }
1020
1021
1026 public void setTrashEntryLocalService(
1027 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1028 this.trashEntryLocalService = trashEntryLocalService;
1029 }
1030
1031
1036 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1037 return trashEntryService;
1038 }
1039
1040
1045 public void setTrashEntryService(
1046 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1047 this.trashEntryService = trashEntryService;
1048 }
1049
1050
1055 public TrashEntryPersistence getTrashEntryPersistence() {
1056 return trashEntryPersistence;
1057 }
1058
1059
1064 public void setTrashEntryPersistence(
1065 TrashEntryPersistence trashEntryPersistence) {
1066 this.trashEntryPersistence = trashEntryPersistence;
1067 }
1068
1069 public void afterPropertiesSet() {
1070 }
1071
1072 public void destroy() {
1073 }
1074
1075
1080 @Override
1081 public String getBeanIdentifier() {
1082 return _beanIdentifier;
1083 }
1084
1085
1090 @Override
1091 public void setBeanIdentifier(String beanIdentifier) {
1092 _beanIdentifier = beanIdentifier;
1093 }
1094
1095 protected Class<?> getModelClass() {
1096 return MBThread.class;
1097 }
1098
1099 protected String getModelClassName() {
1100 return MBThread.class.getName();
1101 }
1102
1103
1108 protected void runSQL(String sql) throws SystemException {
1109 try {
1110 DataSource dataSource = mbThreadPersistence.getDataSource();
1111
1112 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1113 sql, new int[0]);
1114
1115 sqlUpdate.update();
1116 }
1117 catch (Exception e) {
1118 throw new SystemException(e);
1119 }
1120 }
1121
1122 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanLocalService.class)
1123 protected com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService;
1124 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanService.class)
1125 protected com.liferay.portlet.messageboards.service.MBBanService mbBanService;
1126 @BeanReference(type = MBBanPersistence.class)
1127 protected MBBanPersistence mbBanPersistence;
1128 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryLocalService.class)
1129 protected com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService;
1130 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryService.class)
1131 protected com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService;
1132 @BeanReference(type = MBCategoryPersistence.class)
1133 protected MBCategoryPersistence mbCategoryPersistence;
1134 @BeanReference(type = MBCategoryFinder.class)
1135 protected MBCategoryFinder mbCategoryFinder;
1136 @BeanReference(type = com.liferay.portlet.messageboards.service.MBDiscussionLocalService.class)
1137 protected com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService;
1138 @BeanReference(type = MBDiscussionPersistence.class)
1139 protected MBDiscussionPersistence mbDiscussionPersistence;
1140 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMailingListLocalService.class)
1141 protected com.liferay.portlet.messageboards.service.MBMailingListLocalService mbMailingListLocalService;
1142 @BeanReference(type = MBMailingListPersistence.class)
1143 protected MBMailingListPersistence mbMailingListPersistence;
1144 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1145 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1146 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1147 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1148 @BeanReference(type = MBMessagePersistence.class)
1149 protected MBMessagePersistence mbMessagePersistence;
1150 @BeanReference(type = MBMessageFinder.class)
1151 protected MBMessageFinder mbMessageFinder;
1152 @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
1153 protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
1154 @BeanReference(type = MBStatsUserPersistence.class)
1155 protected MBStatsUserPersistence mbStatsUserPersistence;
1156 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadLocalService.class)
1157 protected com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService;
1158 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadService.class)
1159 protected com.liferay.portlet.messageboards.service.MBThreadService mbThreadService;
1160 @BeanReference(type = MBThreadPersistence.class)
1161 protected MBThreadPersistence mbThreadPersistence;
1162 @BeanReference(type = MBThreadFinder.class)
1163 protected MBThreadFinder mbThreadFinder;
1164 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
1165 protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
1166 @BeanReference(type = MBThreadFlagPersistence.class)
1167 protected MBThreadFlagPersistence mbThreadFlagPersistence;
1168 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1169 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1170 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1171 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1172 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1173 protected com.liferay.portal.service.GroupService groupService;
1174 @BeanReference(type = GroupPersistence.class)
1175 protected GroupPersistence groupPersistence;
1176 @BeanReference(type = GroupFinder.class)
1177 protected GroupFinder groupFinder;
1178 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1179 protected com.liferay.portal.service.LockLocalService lockLocalService;
1180 @BeanReference(type = LockPersistence.class)
1181 protected LockPersistence lockPersistence;
1182 @BeanReference(type = LockFinder.class)
1183 protected LockFinder lockFinder;
1184 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1185 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1186 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1187 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1188 @BeanReference(type = SubscriptionPersistence.class)
1189 protected SubscriptionPersistence subscriptionPersistence;
1190 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1191 protected com.liferay.portal.service.UserLocalService userLocalService;
1192 @BeanReference(type = com.liferay.portal.service.UserService.class)
1193 protected com.liferay.portal.service.UserService userService;
1194 @BeanReference(type = UserPersistence.class)
1195 protected UserPersistence userPersistence;
1196 @BeanReference(type = UserFinder.class)
1197 protected UserFinder userFinder;
1198 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1199 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1200 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1201 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1202 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1203 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1204 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1205 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1206 @BeanReference(type = AssetEntryPersistence.class)
1207 protected AssetEntryPersistence assetEntryPersistence;
1208 @BeanReference(type = AssetEntryFinder.class)
1209 protected AssetEntryFinder assetEntryFinder;
1210 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1211 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1212 @BeanReference(type = RatingsStatsPersistence.class)
1213 protected RatingsStatsPersistence ratingsStatsPersistence;
1214 @BeanReference(type = RatingsStatsFinder.class)
1215 protected RatingsStatsFinder ratingsStatsFinder;
1216 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1217 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1218 @BeanReference(type = SocialActivityPersistence.class)
1219 protected SocialActivityPersistence socialActivityPersistence;
1220 @BeanReference(type = SocialActivityFinder.class)
1221 protected SocialActivityFinder socialActivityFinder;
1222 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1223 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1224 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1225 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1226 @BeanReference(type = TrashEntryPersistence.class)
1227 protected TrashEntryPersistence trashEntryPersistence;
1228 private String _beanIdentifier;
1229 }