001
014
015 package com.liferay.portlet.journal.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.UserLocalService;
040 import com.liferay.portal.service.UserService;
041 import com.liferay.portal.service.WebDAVPropsLocalService;
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.UserFinder;
048 import com.liferay.portal.service.persistence.UserPersistence;
049 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
050
051 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
052 import com.liferay.portlet.expando.service.ExpandoValueService;
053 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
054 import com.liferay.portlet.journal.model.JournalTemplate;
055 import com.liferay.portlet.journal.service.JournalArticleImageLocalService;
056 import com.liferay.portlet.journal.service.JournalArticleLocalService;
057 import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
058 import com.liferay.portlet.journal.service.JournalArticleService;
059 import com.liferay.portlet.journal.service.JournalContentSearchLocalService;
060 import com.liferay.portlet.journal.service.JournalFeedLocalService;
061 import com.liferay.portlet.journal.service.JournalFeedService;
062 import com.liferay.portlet.journal.service.JournalStructureLocalService;
063 import com.liferay.portlet.journal.service.JournalStructureService;
064 import com.liferay.portlet.journal.service.JournalTemplateLocalService;
065 import com.liferay.portlet.journal.service.JournalTemplateService;
066 import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
067 import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
068 import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
069 import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
070 import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
071 import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
072 import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
073 import com.liferay.portlet.journal.service.persistence.JournalStructureFinder;
074 import com.liferay.portlet.journal.service.persistence.JournalStructurePersistence;
075 import com.liferay.portlet.journal.service.persistence.JournalTemplateFinder;
076 import com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence;
077
078 import java.io.Serializable;
079
080 import java.util.List;
081
082 import javax.sql.DataSource;
083
084
096 public abstract class JournalTemplateLocalServiceBaseImpl
097 extends BaseLocalServiceImpl implements JournalTemplateLocalService,
098 IdentifiableBean {
099
104
105
112 @Indexable(type = IndexableType.REINDEX)
113 public JournalTemplate addJournalTemplate(JournalTemplate journalTemplate)
114 throws SystemException {
115 journalTemplate.setNew(true);
116
117 return journalTemplatePersistence.update(journalTemplate, false);
118 }
119
120
126 public JournalTemplate createJournalTemplate(long id) {
127 return journalTemplatePersistence.create(id);
128 }
129
130
138 @Indexable(type = IndexableType.DELETE)
139 public JournalTemplate deleteJournalTemplate(long id)
140 throws PortalException, SystemException {
141 return journalTemplatePersistence.remove(id);
142 }
143
144
151 @Indexable(type = IndexableType.DELETE)
152 public JournalTemplate deleteJournalTemplate(
153 JournalTemplate journalTemplate) throws SystemException {
154 return journalTemplatePersistence.remove(journalTemplate);
155 }
156
157 public DynamicQuery dynamicQuery() {
158 Class<?> clazz = getClass();
159
160 return DynamicQueryFactoryUtil.forClass(JournalTemplate.class,
161 clazz.getClassLoader());
162 }
163
164
171 @SuppressWarnings("rawtypes")
172 public List dynamicQuery(DynamicQuery dynamicQuery)
173 throws SystemException {
174 return journalTemplatePersistence.findWithDynamicQuery(dynamicQuery);
175 }
176
177
190 @SuppressWarnings("rawtypes")
191 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
192 throws SystemException {
193 return journalTemplatePersistence.findWithDynamicQuery(dynamicQuery,
194 start, end);
195 }
196
197
211 @SuppressWarnings("rawtypes")
212 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
213 OrderByComparator orderByComparator) throws SystemException {
214 return journalTemplatePersistence.findWithDynamicQuery(dynamicQuery,
215 start, end, orderByComparator);
216 }
217
218
225 public long dynamicQueryCount(DynamicQuery dynamicQuery)
226 throws SystemException {
227 return journalTemplatePersistence.countWithDynamicQuery(dynamicQuery);
228 }
229
230 public JournalTemplate fetchJournalTemplate(long id)
231 throws SystemException {
232 return journalTemplatePersistence.fetchByPrimaryKey(id);
233 }
234
235
243 public JournalTemplate getJournalTemplate(long id)
244 throws PortalException, SystemException {
245 return journalTemplatePersistence.findByPrimaryKey(id);
246 }
247
248 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
249 throws PortalException, SystemException {
250 return journalTemplatePersistence.findByPrimaryKey(primaryKeyObj);
251 }
252
253
262 public JournalTemplate getJournalTemplateByUuidAndGroupId(String uuid,
263 long groupId) throws PortalException, SystemException {
264 return journalTemplatePersistence.findByUUID_G(uuid, groupId);
265 }
266
267
279 public List<JournalTemplate> getJournalTemplates(int start, int end)
280 throws SystemException {
281 return journalTemplatePersistence.findAll(start, end);
282 }
283
284
290 public int getJournalTemplatesCount() throws SystemException {
291 return journalTemplatePersistence.countAll();
292 }
293
294
301 @Indexable(type = IndexableType.REINDEX)
302 public JournalTemplate updateJournalTemplate(
303 JournalTemplate journalTemplate) throws SystemException {
304 return updateJournalTemplate(journalTemplate, true);
305 }
306
307
315 @Indexable(type = IndexableType.REINDEX)
316 public JournalTemplate updateJournalTemplate(
317 JournalTemplate journalTemplate, boolean merge)
318 throws SystemException {
319 journalTemplate.setNew(false);
320
321 return journalTemplatePersistence.update(journalTemplate, merge);
322 }
323
324
329 public JournalArticleLocalService getJournalArticleLocalService() {
330 return journalArticleLocalService;
331 }
332
333
338 public void setJournalArticleLocalService(
339 JournalArticleLocalService journalArticleLocalService) {
340 this.journalArticleLocalService = journalArticleLocalService;
341 }
342
343
348 public JournalArticleService getJournalArticleService() {
349 return journalArticleService;
350 }
351
352
357 public void setJournalArticleService(
358 JournalArticleService journalArticleService) {
359 this.journalArticleService = journalArticleService;
360 }
361
362
367 public JournalArticlePersistence getJournalArticlePersistence() {
368 return journalArticlePersistence;
369 }
370
371
376 public void setJournalArticlePersistence(
377 JournalArticlePersistence journalArticlePersistence) {
378 this.journalArticlePersistence = journalArticlePersistence;
379 }
380
381
386 public JournalArticleFinder getJournalArticleFinder() {
387 return journalArticleFinder;
388 }
389
390
395 public void setJournalArticleFinder(
396 JournalArticleFinder journalArticleFinder) {
397 this.journalArticleFinder = journalArticleFinder;
398 }
399
400
405 public JournalArticleImageLocalService getJournalArticleImageLocalService() {
406 return journalArticleImageLocalService;
407 }
408
409
414 public void setJournalArticleImageLocalService(
415 JournalArticleImageLocalService journalArticleImageLocalService) {
416 this.journalArticleImageLocalService = journalArticleImageLocalService;
417 }
418
419
424 public JournalArticleImagePersistence getJournalArticleImagePersistence() {
425 return journalArticleImagePersistence;
426 }
427
428
433 public void setJournalArticleImagePersistence(
434 JournalArticleImagePersistence journalArticleImagePersistence) {
435 this.journalArticleImagePersistence = journalArticleImagePersistence;
436 }
437
438
443 public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
444 return journalArticleResourceLocalService;
445 }
446
447
452 public void setJournalArticleResourceLocalService(
453 JournalArticleResourceLocalService journalArticleResourceLocalService) {
454 this.journalArticleResourceLocalService = journalArticleResourceLocalService;
455 }
456
457
462 public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
463 return journalArticleResourcePersistence;
464 }
465
466
471 public void setJournalArticleResourcePersistence(
472 JournalArticleResourcePersistence journalArticleResourcePersistence) {
473 this.journalArticleResourcePersistence = journalArticleResourcePersistence;
474 }
475
476
481 public JournalContentSearchLocalService getJournalContentSearchLocalService() {
482 return journalContentSearchLocalService;
483 }
484
485
490 public void setJournalContentSearchLocalService(
491 JournalContentSearchLocalService journalContentSearchLocalService) {
492 this.journalContentSearchLocalService = journalContentSearchLocalService;
493 }
494
495
500 public JournalContentSearchPersistence getJournalContentSearchPersistence() {
501 return journalContentSearchPersistence;
502 }
503
504
509 public void setJournalContentSearchPersistence(
510 JournalContentSearchPersistence journalContentSearchPersistence) {
511 this.journalContentSearchPersistence = journalContentSearchPersistence;
512 }
513
514
519 public JournalFeedLocalService getJournalFeedLocalService() {
520 return journalFeedLocalService;
521 }
522
523
528 public void setJournalFeedLocalService(
529 JournalFeedLocalService journalFeedLocalService) {
530 this.journalFeedLocalService = journalFeedLocalService;
531 }
532
533
538 public JournalFeedService getJournalFeedService() {
539 return journalFeedService;
540 }
541
542
547 public void setJournalFeedService(JournalFeedService journalFeedService) {
548 this.journalFeedService = journalFeedService;
549 }
550
551
556 public JournalFeedPersistence getJournalFeedPersistence() {
557 return journalFeedPersistence;
558 }
559
560
565 public void setJournalFeedPersistence(
566 JournalFeedPersistence journalFeedPersistence) {
567 this.journalFeedPersistence = journalFeedPersistence;
568 }
569
570
575 public JournalFeedFinder getJournalFeedFinder() {
576 return journalFeedFinder;
577 }
578
579
584 public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
585 this.journalFeedFinder = journalFeedFinder;
586 }
587
588
593 public JournalStructureLocalService getJournalStructureLocalService() {
594 return journalStructureLocalService;
595 }
596
597
602 public void setJournalStructureLocalService(
603 JournalStructureLocalService journalStructureLocalService) {
604 this.journalStructureLocalService = journalStructureLocalService;
605 }
606
607
612 public JournalStructureService getJournalStructureService() {
613 return journalStructureService;
614 }
615
616
621 public void setJournalStructureService(
622 JournalStructureService journalStructureService) {
623 this.journalStructureService = journalStructureService;
624 }
625
626
631 public JournalStructurePersistence getJournalStructurePersistence() {
632 return journalStructurePersistence;
633 }
634
635
640 public void setJournalStructurePersistence(
641 JournalStructurePersistence journalStructurePersistence) {
642 this.journalStructurePersistence = journalStructurePersistence;
643 }
644
645
650 public JournalStructureFinder getJournalStructureFinder() {
651 return journalStructureFinder;
652 }
653
654
659 public void setJournalStructureFinder(
660 JournalStructureFinder journalStructureFinder) {
661 this.journalStructureFinder = journalStructureFinder;
662 }
663
664
669 public JournalTemplateLocalService getJournalTemplateLocalService() {
670 return journalTemplateLocalService;
671 }
672
673
678 public void setJournalTemplateLocalService(
679 JournalTemplateLocalService journalTemplateLocalService) {
680 this.journalTemplateLocalService = journalTemplateLocalService;
681 }
682
683
688 public JournalTemplateService getJournalTemplateService() {
689 return journalTemplateService;
690 }
691
692
697 public void setJournalTemplateService(
698 JournalTemplateService journalTemplateService) {
699 this.journalTemplateService = journalTemplateService;
700 }
701
702
707 public JournalTemplatePersistence getJournalTemplatePersistence() {
708 return journalTemplatePersistence;
709 }
710
711
716 public void setJournalTemplatePersistence(
717 JournalTemplatePersistence journalTemplatePersistence) {
718 this.journalTemplatePersistence = journalTemplatePersistence;
719 }
720
721
726 public JournalTemplateFinder getJournalTemplateFinder() {
727 return journalTemplateFinder;
728 }
729
730
735 public void setJournalTemplateFinder(
736 JournalTemplateFinder journalTemplateFinder) {
737 this.journalTemplateFinder = journalTemplateFinder;
738 }
739
740
745 public CounterLocalService getCounterLocalService() {
746 return counterLocalService;
747 }
748
749
754 public void setCounterLocalService(CounterLocalService counterLocalService) {
755 this.counterLocalService = counterLocalService;
756 }
757
758
763 public GroupLocalService getGroupLocalService() {
764 return groupLocalService;
765 }
766
767
772 public void setGroupLocalService(GroupLocalService groupLocalService) {
773 this.groupLocalService = groupLocalService;
774 }
775
776
781 public GroupService getGroupService() {
782 return groupService;
783 }
784
785
790 public void setGroupService(GroupService groupService) {
791 this.groupService = groupService;
792 }
793
794
799 public GroupPersistence getGroupPersistence() {
800 return groupPersistence;
801 }
802
803
808 public void setGroupPersistence(GroupPersistence groupPersistence) {
809 this.groupPersistence = groupPersistence;
810 }
811
812
817 public GroupFinder getGroupFinder() {
818 return groupFinder;
819 }
820
821
826 public void setGroupFinder(GroupFinder groupFinder) {
827 this.groupFinder = groupFinder;
828 }
829
830
835 public ImageLocalService getImageLocalService() {
836 return imageLocalService;
837 }
838
839
844 public void setImageLocalService(ImageLocalService imageLocalService) {
845 this.imageLocalService = imageLocalService;
846 }
847
848
853 public ImageService getImageService() {
854 return imageService;
855 }
856
857
862 public void setImageService(ImageService imageService) {
863 this.imageService = imageService;
864 }
865
866
871 public ImagePersistence getImagePersistence() {
872 return imagePersistence;
873 }
874
875
880 public void setImagePersistence(ImagePersistence imagePersistence) {
881 this.imagePersistence = imagePersistence;
882 }
883
884
889 public ResourceLocalService getResourceLocalService() {
890 return resourceLocalService;
891 }
892
893
898 public void setResourceLocalService(
899 ResourceLocalService resourceLocalService) {
900 this.resourceLocalService = resourceLocalService;
901 }
902
903
908 public ResourceService getResourceService() {
909 return resourceService;
910 }
911
912
917 public void setResourceService(ResourceService resourceService) {
918 this.resourceService = resourceService;
919 }
920
921
926 public ResourcePersistence getResourcePersistence() {
927 return resourcePersistence;
928 }
929
930
935 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
936 this.resourcePersistence = resourcePersistence;
937 }
938
939
944 public ResourceFinder getResourceFinder() {
945 return resourceFinder;
946 }
947
948
953 public void setResourceFinder(ResourceFinder resourceFinder) {
954 this.resourceFinder = resourceFinder;
955 }
956
957
962 public UserLocalService getUserLocalService() {
963 return userLocalService;
964 }
965
966
971 public void setUserLocalService(UserLocalService userLocalService) {
972 this.userLocalService = userLocalService;
973 }
974
975
980 public UserService getUserService() {
981 return userService;
982 }
983
984
989 public void setUserService(UserService userService) {
990 this.userService = userService;
991 }
992
993
998 public UserPersistence getUserPersistence() {
999 return userPersistence;
1000 }
1001
1002
1007 public void setUserPersistence(UserPersistence userPersistence) {
1008 this.userPersistence = userPersistence;
1009 }
1010
1011
1016 public UserFinder getUserFinder() {
1017 return userFinder;
1018 }
1019
1020
1025 public void setUserFinder(UserFinder userFinder) {
1026 this.userFinder = userFinder;
1027 }
1028
1029
1034 public WebDAVPropsLocalService getWebDAVPropsLocalService() {
1035 return webDAVPropsLocalService;
1036 }
1037
1038
1043 public void setWebDAVPropsLocalService(
1044 WebDAVPropsLocalService webDAVPropsLocalService) {
1045 this.webDAVPropsLocalService = webDAVPropsLocalService;
1046 }
1047
1048
1053 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1054 return webDAVPropsPersistence;
1055 }
1056
1057
1062 public void setWebDAVPropsPersistence(
1063 WebDAVPropsPersistence webDAVPropsPersistence) {
1064 this.webDAVPropsPersistence = webDAVPropsPersistence;
1065 }
1066
1067
1072 public ExpandoValueLocalService getExpandoValueLocalService() {
1073 return expandoValueLocalService;
1074 }
1075
1076
1081 public void setExpandoValueLocalService(
1082 ExpandoValueLocalService expandoValueLocalService) {
1083 this.expandoValueLocalService = expandoValueLocalService;
1084 }
1085
1086
1091 public ExpandoValueService getExpandoValueService() {
1092 return expandoValueService;
1093 }
1094
1095
1100 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1101 this.expandoValueService = expandoValueService;
1102 }
1103
1104
1109 public ExpandoValuePersistence getExpandoValuePersistence() {
1110 return expandoValuePersistence;
1111 }
1112
1113
1118 public void setExpandoValuePersistence(
1119 ExpandoValuePersistence expandoValuePersistence) {
1120 this.expandoValuePersistence = expandoValuePersistence;
1121 }
1122
1123 public void afterPropertiesSet() {
1124 persistedModelLocalServiceRegistry.register("com.liferay.portlet.journal.model.JournalTemplate",
1125 journalTemplateLocalService);
1126 }
1127
1128 public void destroy() {
1129 persistedModelLocalServiceRegistry.unregister(
1130 "com.liferay.portlet.journal.model.JournalTemplate");
1131 }
1132
1133
1138 public String getBeanIdentifier() {
1139 return _beanIdentifier;
1140 }
1141
1142
1147 public void setBeanIdentifier(String beanIdentifier) {
1148 _beanIdentifier = beanIdentifier;
1149 }
1150
1151 protected Class<?> getModelClass() {
1152 return JournalTemplate.class;
1153 }
1154
1155 protected String getModelClassName() {
1156 return JournalTemplate.class.getName();
1157 }
1158
1159
1164 protected void runSQL(String sql) throws SystemException {
1165 try {
1166 DataSource dataSource = journalTemplatePersistence.getDataSource();
1167
1168 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1169 sql, new int[0]);
1170
1171 sqlUpdate.update();
1172 }
1173 catch (Exception e) {
1174 throw new SystemException(e);
1175 }
1176 }
1177
1178 @BeanReference(type = JournalArticleLocalService.class)
1179 protected JournalArticleLocalService journalArticleLocalService;
1180 @BeanReference(type = JournalArticleService.class)
1181 protected JournalArticleService journalArticleService;
1182 @BeanReference(type = JournalArticlePersistence.class)
1183 protected JournalArticlePersistence journalArticlePersistence;
1184 @BeanReference(type = JournalArticleFinder.class)
1185 protected JournalArticleFinder journalArticleFinder;
1186 @BeanReference(type = JournalArticleImageLocalService.class)
1187 protected JournalArticleImageLocalService journalArticleImageLocalService;
1188 @BeanReference(type = JournalArticleImagePersistence.class)
1189 protected JournalArticleImagePersistence journalArticleImagePersistence;
1190 @BeanReference(type = JournalArticleResourceLocalService.class)
1191 protected JournalArticleResourceLocalService journalArticleResourceLocalService;
1192 @BeanReference(type = JournalArticleResourcePersistence.class)
1193 protected JournalArticleResourcePersistence journalArticleResourcePersistence;
1194 @BeanReference(type = JournalContentSearchLocalService.class)
1195 protected JournalContentSearchLocalService journalContentSearchLocalService;
1196 @BeanReference(type = JournalContentSearchPersistence.class)
1197 protected JournalContentSearchPersistence journalContentSearchPersistence;
1198 @BeanReference(type = JournalFeedLocalService.class)
1199 protected JournalFeedLocalService journalFeedLocalService;
1200 @BeanReference(type = JournalFeedService.class)
1201 protected JournalFeedService journalFeedService;
1202 @BeanReference(type = JournalFeedPersistence.class)
1203 protected JournalFeedPersistence journalFeedPersistence;
1204 @BeanReference(type = JournalFeedFinder.class)
1205 protected JournalFeedFinder journalFeedFinder;
1206 @BeanReference(type = JournalStructureLocalService.class)
1207 protected JournalStructureLocalService journalStructureLocalService;
1208 @BeanReference(type = JournalStructureService.class)
1209 protected JournalStructureService journalStructureService;
1210 @BeanReference(type = JournalStructurePersistence.class)
1211 protected JournalStructurePersistence journalStructurePersistence;
1212 @BeanReference(type = JournalStructureFinder.class)
1213 protected JournalStructureFinder journalStructureFinder;
1214 @BeanReference(type = JournalTemplateLocalService.class)
1215 protected JournalTemplateLocalService journalTemplateLocalService;
1216 @BeanReference(type = JournalTemplateService.class)
1217 protected JournalTemplateService journalTemplateService;
1218 @BeanReference(type = JournalTemplatePersistence.class)
1219 protected JournalTemplatePersistence journalTemplatePersistence;
1220 @BeanReference(type = JournalTemplateFinder.class)
1221 protected JournalTemplateFinder journalTemplateFinder;
1222 @BeanReference(type = CounterLocalService.class)
1223 protected CounterLocalService counterLocalService;
1224 @BeanReference(type = GroupLocalService.class)
1225 protected GroupLocalService groupLocalService;
1226 @BeanReference(type = GroupService.class)
1227 protected GroupService groupService;
1228 @BeanReference(type = GroupPersistence.class)
1229 protected GroupPersistence groupPersistence;
1230 @BeanReference(type = GroupFinder.class)
1231 protected GroupFinder groupFinder;
1232 @BeanReference(type = ImageLocalService.class)
1233 protected ImageLocalService imageLocalService;
1234 @BeanReference(type = ImageService.class)
1235 protected ImageService imageService;
1236 @BeanReference(type = ImagePersistence.class)
1237 protected ImagePersistence imagePersistence;
1238 @BeanReference(type = ResourceLocalService.class)
1239 protected ResourceLocalService resourceLocalService;
1240 @BeanReference(type = ResourceService.class)
1241 protected ResourceService resourceService;
1242 @BeanReference(type = ResourcePersistence.class)
1243 protected ResourcePersistence resourcePersistence;
1244 @BeanReference(type = ResourceFinder.class)
1245 protected ResourceFinder resourceFinder;
1246 @BeanReference(type = UserLocalService.class)
1247 protected UserLocalService userLocalService;
1248 @BeanReference(type = UserService.class)
1249 protected UserService userService;
1250 @BeanReference(type = UserPersistence.class)
1251 protected UserPersistence userPersistence;
1252 @BeanReference(type = UserFinder.class)
1253 protected UserFinder userFinder;
1254 @BeanReference(type = WebDAVPropsLocalService.class)
1255 protected WebDAVPropsLocalService webDAVPropsLocalService;
1256 @BeanReference(type = WebDAVPropsPersistence.class)
1257 protected WebDAVPropsPersistence webDAVPropsPersistence;
1258 @BeanReference(type = ExpandoValueLocalService.class)
1259 protected ExpandoValueLocalService expandoValueLocalService;
1260 @BeanReference(type = ExpandoValueService.class)
1261 protected ExpandoValueService expandoValueService;
1262 @BeanReference(type = ExpandoValuePersistence.class)
1263 protected ExpandoValuePersistence expandoValuePersistence;
1264 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1265 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1266 private String _beanIdentifier;
1267 }