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.exception.PortalException;
025 import com.liferay.portal.kernel.exception.SystemException;
026 import com.liferay.portal.kernel.log.Log;
027 import com.liferay.portal.kernel.log.LogFactoryUtil;
028 import com.liferay.portal.kernel.search.Indexer;
029 import com.liferay.portal.kernel.search.IndexerRegistryUtil;
030 import com.liferay.portal.kernel.search.SearchException;
031 import com.liferay.portal.kernel.util.OrderByComparator;
032 import com.liferay.portal.model.PersistedModel;
033 import com.liferay.portal.service.GroupLocalService;
034 import com.liferay.portal.service.GroupService;
035 import com.liferay.portal.service.ImageLocalService;
036 import com.liferay.portal.service.ImageService;
037 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
038 import com.liferay.portal.service.ResourceLocalService;
039 import com.liferay.portal.service.ResourceService;
040 import com.liferay.portal.service.UserLocalService;
041 import com.liferay.portal.service.UserService;
042 import com.liferay.portal.service.WebDAVPropsLocalService;
043 import com.liferay.portal.service.persistence.GroupFinder;
044 import com.liferay.portal.service.persistence.GroupPersistence;
045 import com.liferay.portal.service.persistence.ImagePersistence;
046 import com.liferay.portal.service.persistence.ResourceFinder;
047 import com.liferay.portal.service.persistence.ResourcePersistence;
048 import com.liferay.portal.service.persistence.UserFinder;
049 import com.liferay.portal.service.persistence.UserPersistence;
050 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
051
052 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
053 import com.liferay.portlet.expando.service.ExpandoValueService;
054 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
055 import com.liferay.portlet.journal.model.JournalTemplate;
056 import com.liferay.portlet.journal.service.JournalArticleImageLocalService;
057 import com.liferay.portlet.journal.service.JournalArticleLocalService;
058 import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
059 import com.liferay.portlet.journal.service.JournalArticleService;
060 import com.liferay.portlet.journal.service.JournalContentSearchLocalService;
061 import com.liferay.portlet.journal.service.JournalFeedLocalService;
062 import com.liferay.portlet.journal.service.JournalFeedService;
063 import com.liferay.portlet.journal.service.JournalStructureLocalService;
064 import com.liferay.portlet.journal.service.JournalStructureService;
065 import com.liferay.portlet.journal.service.JournalTemplateLocalService;
066 import com.liferay.portlet.journal.service.JournalTemplateService;
067 import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
068 import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
069 import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
070 import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
071 import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
072 import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
073 import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
074 import com.liferay.portlet.journal.service.persistence.JournalStructureFinder;
075 import com.liferay.portlet.journal.service.persistence.JournalStructurePersistence;
076 import com.liferay.portlet.journal.service.persistence.JournalTemplateFinder;
077 import com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence;
078
079 import java.io.Serializable;
080
081 import java.util.List;
082
083 import javax.sql.DataSource;
084
085
097 public abstract class JournalTemplateLocalServiceBaseImpl
098 implements JournalTemplateLocalService, IdentifiableBean {
099
104
105
112 public JournalTemplate addJournalTemplate(JournalTemplate journalTemplate)
113 throws SystemException {
114 journalTemplate.setNew(true);
115
116 journalTemplate = journalTemplatePersistence.update(journalTemplate,
117 false);
118
119 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
120
121 if (indexer != null) {
122 try {
123 indexer.reindex(journalTemplate);
124 }
125 catch (SearchException se) {
126 if (_log.isWarnEnabled()) {
127 _log.warn(se, se);
128 }
129 }
130 }
131
132 return journalTemplate;
133 }
134
135
141 public JournalTemplate createJournalTemplate(long id) {
142 return journalTemplatePersistence.create(id);
143 }
144
145
152 public void deleteJournalTemplate(long id)
153 throws PortalException, SystemException {
154 JournalTemplate journalTemplate = journalTemplatePersistence.remove(id);
155
156 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
157
158 if (indexer != null) {
159 try {
160 indexer.delete(journalTemplate);
161 }
162 catch (SearchException se) {
163 if (_log.isWarnEnabled()) {
164 _log.warn(se, se);
165 }
166 }
167 }
168 }
169
170
176 public void deleteJournalTemplate(JournalTemplate journalTemplate)
177 throws SystemException {
178 journalTemplatePersistence.remove(journalTemplate);
179
180 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
181
182 if (indexer != null) {
183 try {
184 indexer.delete(journalTemplate);
185 }
186 catch (SearchException se) {
187 if (_log.isWarnEnabled()) {
188 _log.warn(se, se);
189 }
190 }
191 }
192 }
193
194
201 @SuppressWarnings("rawtypes")
202 public List dynamicQuery(DynamicQuery dynamicQuery)
203 throws SystemException {
204 return journalTemplatePersistence.findWithDynamicQuery(dynamicQuery);
205 }
206
207
220 @SuppressWarnings("rawtypes")
221 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
222 throws SystemException {
223 return journalTemplatePersistence.findWithDynamicQuery(dynamicQuery,
224 start, end);
225 }
226
227
241 @SuppressWarnings("rawtypes")
242 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
243 OrderByComparator orderByComparator) throws SystemException {
244 return journalTemplatePersistence.findWithDynamicQuery(dynamicQuery,
245 start, end, orderByComparator);
246 }
247
248
255 public long dynamicQueryCount(DynamicQuery dynamicQuery)
256 throws SystemException {
257 return journalTemplatePersistence.countWithDynamicQuery(dynamicQuery);
258 }
259
260 public JournalTemplate fetchJournalTemplate(long id)
261 throws SystemException {
262 return journalTemplatePersistence.fetchByPrimaryKey(id);
263 }
264
265
273 public JournalTemplate getJournalTemplate(long id)
274 throws PortalException, SystemException {
275 return journalTemplatePersistence.findByPrimaryKey(id);
276 }
277
278 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
279 throws PortalException, SystemException {
280 return journalTemplatePersistence.findByPrimaryKey(primaryKeyObj);
281 }
282
283
292 public JournalTemplate getJournalTemplateByUuidAndGroupId(String uuid,
293 long groupId) throws PortalException, SystemException {
294 return journalTemplatePersistence.findByUUID_G(uuid, groupId);
295 }
296
297
309 public List<JournalTemplate> getJournalTemplates(int start, int end)
310 throws SystemException {
311 return journalTemplatePersistence.findAll(start, end);
312 }
313
314
320 public int getJournalTemplatesCount() throws SystemException {
321 return journalTemplatePersistence.countAll();
322 }
323
324
331 public JournalTemplate updateJournalTemplate(
332 JournalTemplate journalTemplate) throws SystemException {
333 return updateJournalTemplate(journalTemplate, true);
334 }
335
336
344 public JournalTemplate updateJournalTemplate(
345 JournalTemplate journalTemplate, boolean merge)
346 throws SystemException {
347 journalTemplate.setNew(false);
348
349 journalTemplate = journalTemplatePersistence.update(journalTemplate,
350 merge);
351
352 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
353
354 if (indexer != null) {
355 try {
356 indexer.reindex(journalTemplate);
357 }
358 catch (SearchException se) {
359 if (_log.isWarnEnabled()) {
360 _log.warn(se, se);
361 }
362 }
363 }
364
365 return journalTemplate;
366 }
367
368
373 public JournalArticleLocalService getJournalArticleLocalService() {
374 return journalArticleLocalService;
375 }
376
377
382 public void setJournalArticleLocalService(
383 JournalArticleLocalService journalArticleLocalService) {
384 this.journalArticleLocalService = journalArticleLocalService;
385 }
386
387
392 public JournalArticleService getJournalArticleService() {
393 return journalArticleService;
394 }
395
396
401 public void setJournalArticleService(
402 JournalArticleService journalArticleService) {
403 this.journalArticleService = journalArticleService;
404 }
405
406
411 public JournalArticlePersistence getJournalArticlePersistence() {
412 return journalArticlePersistence;
413 }
414
415
420 public void setJournalArticlePersistence(
421 JournalArticlePersistence journalArticlePersistence) {
422 this.journalArticlePersistence = journalArticlePersistence;
423 }
424
425
430 public JournalArticleFinder getJournalArticleFinder() {
431 return journalArticleFinder;
432 }
433
434
439 public void setJournalArticleFinder(
440 JournalArticleFinder journalArticleFinder) {
441 this.journalArticleFinder = journalArticleFinder;
442 }
443
444
449 public JournalArticleImageLocalService getJournalArticleImageLocalService() {
450 return journalArticleImageLocalService;
451 }
452
453
458 public void setJournalArticleImageLocalService(
459 JournalArticleImageLocalService journalArticleImageLocalService) {
460 this.journalArticleImageLocalService = journalArticleImageLocalService;
461 }
462
463
468 public JournalArticleImagePersistence getJournalArticleImagePersistence() {
469 return journalArticleImagePersistence;
470 }
471
472
477 public void setJournalArticleImagePersistence(
478 JournalArticleImagePersistence journalArticleImagePersistence) {
479 this.journalArticleImagePersistence = journalArticleImagePersistence;
480 }
481
482
487 public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
488 return journalArticleResourceLocalService;
489 }
490
491
496 public void setJournalArticleResourceLocalService(
497 JournalArticleResourceLocalService journalArticleResourceLocalService) {
498 this.journalArticleResourceLocalService = journalArticleResourceLocalService;
499 }
500
501
506 public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
507 return journalArticleResourcePersistence;
508 }
509
510
515 public void setJournalArticleResourcePersistence(
516 JournalArticleResourcePersistence journalArticleResourcePersistence) {
517 this.journalArticleResourcePersistence = journalArticleResourcePersistence;
518 }
519
520
525 public JournalContentSearchLocalService getJournalContentSearchLocalService() {
526 return journalContentSearchLocalService;
527 }
528
529
534 public void setJournalContentSearchLocalService(
535 JournalContentSearchLocalService journalContentSearchLocalService) {
536 this.journalContentSearchLocalService = journalContentSearchLocalService;
537 }
538
539
544 public JournalContentSearchPersistence getJournalContentSearchPersistence() {
545 return journalContentSearchPersistence;
546 }
547
548
553 public void setJournalContentSearchPersistence(
554 JournalContentSearchPersistence journalContentSearchPersistence) {
555 this.journalContentSearchPersistence = journalContentSearchPersistence;
556 }
557
558
563 public JournalFeedLocalService getJournalFeedLocalService() {
564 return journalFeedLocalService;
565 }
566
567
572 public void setJournalFeedLocalService(
573 JournalFeedLocalService journalFeedLocalService) {
574 this.journalFeedLocalService = journalFeedLocalService;
575 }
576
577
582 public JournalFeedService getJournalFeedService() {
583 return journalFeedService;
584 }
585
586
591 public void setJournalFeedService(JournalFeedService journalFeedService) {
592 this.journalFeedService = journalFeedService;
593 }
594
595
600 public JournalFeedPersistence getJournalFeedPersistence() {
601 return journalFeedPersistence;
602 }
603
604
609 public void setJournalFeedPersistence(
610 JournalFeedPersistence journalFeedPersistence) {
611 this.journalFeedPersistence = journalFeedPersistence;
612 }
613
614
619 public JournalFeedFinder getJournalFeedFinder() {
620 return journalFeedFinder;
621 }
622
623
628 public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
629 this.journalFeedFinder = journalFeedFinder;
630 }
631
632
637 public JournalStructureLocalService getJournalStructureLocalService() {
638 return journalStructureLocalService;
639 }
640
641
646 public void setJournalStructureLocalService(
647 JournalStructureLocalService journalStructureLocalService) {
648 this.journalStructureLocalService = journalStructureLocalService;
649 }
650
651
656 public JournalStructureService getJournalStructureService() {
657 return journalStructureService;
658 }
659
660
665 public void setJournalStructureService(
666 JournalStructureService journalStructureService) {
667 this.journalStructureService = journalStructureService;
668 }
669
670
675 public JournalStructurePersistence getJournalStructurePersistence() {
676 return journalStructurePersistence;
677 }
678
679
684 public void setJournalStructurePersistence(
685 JournalStructurePersistence journalStructurePersistence) {
686 this.journalStructurePersistence = journalStructurePersistence;
687 }
688
689
694 public JournalStructureFinder getJournalStructureFinder() {
695 return journalStructureFinder;
696 }
697
698
703 public void setJournalStructureFinder(
704 JournalStructureFinder journalStructureFinder) {
705 this.journalStructureFinder = journalStructureFinder;
706 }
707
708
713 public JournalTemplateLocalService getJournalTemplateLocalService() {
714 return journalTemplateLocalService;
715 }
716
717
722 public void setJournalTemplateLocalService(
723 JournalTemplateLocalService journalTemplateLocalService) {
724 this.journalTemplateLocalService = journalTemplateLocalService;
725 }
726
727
732 public JournalTemplateService getJournalTemplateService() {
733 return journalTemplateService;
734 }
735
736
741 public void setJournalTemplateService(
742 JournalTemplateService journalTemplateService) {
743 this.journalTemplateService = journalTemplateService;
744 }
745
746
751 public JournalTemplatePersistence getJournalTemplatePersistence() {
752 return journalTemplatePersistence;
753 }
754
755
760 public void setJournalTemplatePersistence(
761 JournalTemplatePersistence journalTemplatePersistence) {
762 this.journalTemplatePersistence = journalTemplatePersistence;
763 }
764
765
770 public JournalTemplateFinder getJournalTemplateFinder() {
771 return journalTemplateFinder;
772 }
773
774
779 public void setJournalTemplateFinder(
780 JournalTemplateFinder journalTemplateFinder) {
781 this.journalTemplateFinder = journalTemplateFinder;
782 }
783
784
789 public CounterLocalService getCounterLocalService() {
790 return counterLocalService;
791 }
792
793
798 public void setCounterLocalService(CounterLocalService counterLocalService) {
799 this.counterLocalService = counterLocalService;
800 }
801
802
807 public GroupLocalService getGroupLocalService() {
808 return groupLocalService;
809 }
810
811
816 public void setGroupLocalService(GroupLocalService groupLocalService) {
817 this.groupLocalService = groupLocalService;
818 }
819
820
825 public GroupService getGroupService() {
826 return groupService;
827 }
828
829
834 public void setGroupService(GroupService groupService) {
835 this.groupService = groupService;
836 }
837
838
843 public GroupPersistence getGroupPersistence() {
844 return groupPersistence;
845 }
846
847
852 public void setGroupPersistence(GroupPersistence groupPersistence) {
853 this.groupPersistence = groupPersistence;
854 }
855
856
861 public GroupFinder getGroupFinder() {
862 return groupFinder;
863 }
864
865
870 public void setGroupFinder(GroupFinder groupFinder) {
871 this.groupFinder = groupFinder;
872 }
873
874
879 public ImageLocalService getImageLocalService() {
880 return imageLocalService;
881 }
882
883
888 public void setImageLocalService(ImageLocalService imageLocalService) {
889 this.imageLocalService = imageLocalService;
890 }
891
892
897 public ImageService getImageService() {
898 return imageService;
899 }
900
901
906 public void setImageService(ImageService imageService) {
907 this.imageService = imageService;
908 }
909
910
915 public ImagePersistence getImagePersistence() {
916 return imagePersistence;
917 }
918
919
924 public void setImagePersistence(ImagePersistence imagePersistence) {
925 this.imagePersistence = imagePersistence;
926 }
927
928
933 public ResourceLocalService getResourceLocalService() {
934 return resourceLocalService;
935 }
936
937
942 public void setResourceLocalService(
943 ResourceLocalService resourceLocalService) {
944 this.resourceLocalService = resourceLocalService;
945 }
946
947
952 public ResourceService getResourceService() {
953 return resourceService;
954 }
955
956
961 public void setResourceService(ResourceService resourceService) {
962 this.resourceService = resourceService;
963 }
964
965
970 public ResourcePersistence getResourcePersistence() {
971 return resourcePersistence;
972 }
973
974
979 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
980 this.resourcePersistence = resourcePersistence;
981 }
982
983
988 public ResourceFinder getResourceFinder() {
989 return resourceFinder;
990 }
991
992
997 public void setResourceFinder(ResourceFinder resourceFinder) {
998 this.resourceFinder = resourceFinder;
999 }
1000
1001
1006 public UserLocalService getUserLocalService() {
1007 return userLocalService;
1008 }
1009
1010
1015 public void setUserLocalService(UserLocalService userLocalService) {
1016 this.userLocalService = userLocalService;
1017 }
1018
1019
1024 public UserService getUserService() {
1025 return userService;
1026 }
1027
1028
1033 public void setUserService(UserService userService) {
1034 this.userService = userService;
1035 }
1036
1037
1042 public UserPersistence getUserPersistence() {
1043 return userPersistence;
1044 }
1045
1046
1051 public void setUserPersistence(UserPersistence userPersistence) {
1052 this.userPersistence = userPersistence;
1053 }
1054
1055
1060 public UserFinder getUserFinder() {
1061 return userFinder;
1062 }
1063
1064
1069 public void setUserFinder(UserFinder userFinder) {
1070 this.userFinder = userFinder;
1071 }
1072
1073
1078 public WebDAVPropsLocalService getWebDAVPropsLocalService() {
1079 return webDAVPropsLocalService;
1080 }
1081
1082
1087 public void setWebDAVPropsLocalService(
1088 WebDAVPropsLocalService webDAVPropsLocalService) {
1089 this.webDAVPropsLocalService = webDAVPropsLocalService;
1090 }
1091
1092
1097 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1098 return webDAVPropsPersistence;
1099 }
1100
1101
1106 public void setWebDAVPropsPersistence(
1107 WebDAVPropsPersistence webDAVPropsPersistence) {
1108 this.webDAVPropsPersistence = webDAVPropsPersistence;
1109 }
1110
1111
1116 public ExpandoValueLocalService getExpandoValueLocalService() {
1117 return expandoValueLocalService;
1118 }
1119
1120
1125 public void setExpandoValueLocalService(
1126 ExpandoValueLocalService expandoValueLocalService) {
1127 this.expandoValueLocalService = expandoValueLocalService;
1128 }
1129
1130
1135 public ExpandoValueService getExpandoValueService() {
1136 return expandoValueService;
1137 }
1138
1139
1144 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1145 this.expandoValueService = expandoValueService;
1146 }
1147
1148
1153 public ExpandoValuePersistence getExpandoValuePersistence() {
1154 return expandoValuePersistence;
1155 }
1156
1157
1162 public void setExpandoValuePersistence(
1163 ExpandoValuePersistence expandoValuePersistence) {
1164 this.expandoValuePersistence = expandoValuePersistence;
1165 }
1166
1167 public void afterPropertiesSet() {
1168 persistedModelLocalServiceRegistry.register("com.liferay.portlet.journal.model.JournalTemplate",
1169 journalTemplateLocalService);
1170 }
1171
1172 public void destroy() {
1173 persistedModelLocalServiceRegistry.unregister(
1174 "com.liferay.portlet.journal.model.JournalTemplate");
1175 }
1176
1177
1182 public String getBeanIdentifier() {
1183 return _beanIdentifier;
1184 }
1185
1186
1191 public void setBeanIdentifier(String beanIdentifier) {
1192 _beanIdentifier = beanIdentifier;
1193 }
1194
1195 protected ClassLoader getClassLoader() {
1196 Class<?> clazz = getClass();
1197
1198 return clazz.getClassLoader();
1199 }
1200
1201 protected Class<?> getModelClass() {
1202 return JournalTemplate.class;
1203 }
1204
1205 protected String getModelClassName() {
1206 return JournalTemplate.class.getName();
1207 }
1208
1209
1214 protected void runSQL(String sql) throws SystemException {
1215 try {
1216 DataSource dataSource = journalTemplatePersistence.getDataSource();
1217
1218 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1219 sql, new int[0]);
1220
1221 sqlUpdate.update();
1222 }
1223 catch (Exception e) {
1224 throw new SystemException(e);
1225 }
1226 }
1227
1228 @BeanReference(type = JournalArticleLocalService.class)
1229 protected JournalArticleLocalService journalArticleLocalService;
1230 @BeanReference(type = JournalArticleService.class)
1231 protected JournalArticleService journalArticleService;
1232 @BeanReference(type = JournalArticlePersistence.class)
1233 protected JournalArticlePersistence journalArticlePersistence;
1234 @BeanReference(type = JournalArticleFinder.class)
1235 protected JournalArticleFinder journalArticleFinder;
1236 @BeanReference(type = JournalArticleImageLocalService.class)
1237 protected JournalArticleImageLocalService journalArticleImageLocalService;
1238 @BeanReference(type = JournalArticleImagePersistence.class)
1239 protected JournalArticleImagePersistence journalArticleImagePersistence;
1240 @BeanReference(type = JournalArticleResourceLocalService.class)
1241 protected JournalArticleResourceLocalService journalArticleResourceLocalService;
1242 @BeanReference(type = JournalArticleResourcePersistence.class)
1243 protected JournalArticleResourcePersistence journalArticleResourcePersistence;
1244 @BeanReference(type = JournalContentSearchLocalService.class)
1245 protected JournalContentSearchLocalService journalContentSearchLocalService;
1246 @BeanReference(type = JournalContentSearchPersistence.class)
1247 protected JournalContentSearchPersistence journalContentSearchPersistence;
1248 @BeanReference(type = JournalFeedLocalService.class)
1249 protected JournalFeedLocalService journalFeedLocalService;
1250 @BeanReference(type = JournalFeedService.class)
1251 protected JournalFeedService journalFeedService;
1252 @BeanReference(type = JournalFeedPersistence.class)
1253 protected JournalFeedPersistence journalFeedPersistence;
1254 @BeanReference(type = JournalFeedFinder.class)
1255 protected JournalFeedFinder journalFeedFinder;
1256 @BeanReference(type = JournalStructureLocalService.class)
1257 protected JournalStructureLocalService journalStructureLocalService;
1258 @BeanReference(type = JournalStructureService.class)
1259 protected JournalStructureService journalStructureService;
1260 @BeanReference(type = JournalStructurePersistence.class)
1261 protected JournalStructurePersistence journalStructurePersistence;
1262 @BeanReference(type = JournalStructureFinder.class)
1263 protected JournalStructureFinder journalStructureFinder;
1264 @BeanReference(type = JournalTemplateLocalService.class)
1265 protected JournalTemplateLocalService journalTemplateLocalService;
1266 @BeanReference(type = JournalTemplateService.class)
1267 protected JournalTemplateService journalTemplateService;
1268 @BeanReference(type = JournalTemplatePersistence.class)
1269 protected JournalTemplatePersistence journalTemplatePersistence;
1270 @BeanReference(type = JournalTemplateFinder.class)
1271 protected JournalTemplateFinder journalTemplateFinder;
1272 @BeanReference(type = CounterLocalService.class)
1273 protected CounterLocalService counterLocalService;
1274 @BeanReference(type = GroupLocalService.class)
1275 protected GroupLocalService groupLocalService;
1276 @BeanReference(type = GroupService.class)
1277 protected GroupService groupService;
1278 @BeanReference(type = GroupPersistence.class)
1279 protected GroupPersistence groupPersistence;
1280 @BeanReference(type = GroupFinder.class)
1281 protected GroupFinder groupFinder;
1282 @BeanReference(type = ImageLocalService.class)
1283 protected ImageLocalService imageLocalService;
1284 @BeanReference(type = ImageService.class)
1285 protected ImageService imageService;
1286 @BeanReference(type = ImagePersistence.class)
1287 protected ImagePersistence imagePersistence;
1288 @BeanReference(type = ResourceLocalService.class)
1289 protected ResourceLocalService resourceLocalService;
1290 @BeanReference(type = ResourceService.class)
1291 protected ResourceService resourceService;
1292 @BeanReference(type = ResourcePersistence.class)
1293 protected ResourcePersistence resourcePersistence;
1294 @BeanReference(type = ResourceFinder.class)
1295 protected ResourceFinder resourceFinder;
1296 @BeanReference(type = UserLocalService.class)
1297 protected UserLocalService userLocalService;
1298 @BeanReference(type = UserService.class)
1299 protected UserService userService;
1300 @BeanReference(type = UserPersistence.class)
1301 protected UserPersistence userPersistence;
1302 @BeanReference(type = UserFinder.class)
1303 protected UserFinder userFinder;
1304 @BeanReference(type = WebDAVPropsLocalService.class)
1305 protected WebDAVPropsLocalService webDAVPropsLocalService;
1306 @BeanReference(type = WebDAVPropsPersistence.class)
1307 protected WebDAVPropsPersistence webDAVPropsPersistence;
1308 @BeanReference(type = ExpandoValueLocalService.class)
1309 protected ExpandoValueLocalService expandoValueLocalService;
1310 @BeanReference(type = ExpandoValueService.class)
1311 protected ExpandoValueService expandoValueService;
1312 @BeanReference(type = ExpandoValuePersistence.class)
1313 protected ExpandoValuePersistence expandoValuePersistence;
1314 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1315 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1316 private static Log _log = LogFactoryUtil.getLog(JournalTemplateLocalServiceBaseImpl.class);
1317 private String _beanIdentifier;
1318 }