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.PersistedModelLocalServiceRegistry;
036 import com.liferay.portal.service.ResourceLocalService;
037 import com.liferay.portal.service.ResourceService;
038 import com.liferay.portal.service.UserLocalService;
039 import com.liferay.portal.service.UserService;
040 import com.liferay.portal.service.WebDAVPropsLocalService;
041 import com.liferay.portal.service.persistence.GroupFinder;
042 import com.liferay.portal.service.persistence.GroupPersistence;
043 import com.liferay.portal.service.persistence.ResourceFinder;
044 import com.liferay.portal.service.persistence.ResourcePersistence;
045 import com.liferay.portal.service.persistence.UserFinder;
046 import com.liferay.portal.service.persistence.UserPersistence;
047 import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
048
049 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
050 import com.liferay.portlet.expando.service.ExpandoValueService;
051 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
052 import com.liferay.portlet.journal.model.JournalStructure;
053 import com.liferay.portlet.journal.service.JournalArticleImageLocalService;
054 import com.liferay.portlet.journal.service.JournalArticleLocalService;
055 import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
056 import com.liferay.portlet.journal.service.JournalArticleService;
057 import com.liferay.portlet.journal.service.JournalContentSearchLocalService;
058 import com.liferay.portlet.journal.service.JournalFeedLocalService;
059 import com.liferay.portlet.journal.service.JournalFeedService;
060 import com.liferay.portlet.journal.service.JournalStructureLocalService;
061 import com.liferay.portlet.journal.service.JournalStructureService;
062 import com.liferay.portlet.journal.service.JournalTemplateLocalService;
063 import com.liferay.portlet.journal.service.JournalTemplateService;
064 import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
065 import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
066 import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
067 import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
068 import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
069 import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
070 import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
071 import com.liferay.portlet.journal.service.persistence.JournalStructureFinder;
072 import com.liferay.portlet.journal.service.persistence.JournalStructurePersistence;
073 import com.liferay.portlet.journal.service.persistence.JournalTemplateFinder;
074 import com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence;
075
076 import java.io.Serializable;
077
078 import java.util.List;
079
080 import javax.sql.DataSource;
081
082
094 public abstract class JournalStructureLocalServiceBaseImpl
095 implements JournalStructureLocalService, IdentifiableBean {
096
101
102
109 public JournalStructure addJournalStructure(
110 JournalStructure journalStructure) throws SystemException {
111 journalStructure.setNew(true);
112
113 journalStructure = journalStructurePersistence.update(journalStructure,
114 false);
115
116 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
117
118 if (indexer != null) {
119 try {
120 indexer.reindex(journalStructure);
121 }
122 catch (SearchException se) {
123 if (_log.isWarnEnabled()) {
124 _log.warn(se, se);
125 }
126 }
127 }
128
129 return journalStructure;
130 }
131
132
138 public JournalStructure createJournalStructure(long id) {
139 return journalStructurePersistence.create(id);
140 }
141
142
149 public void deleteJournalStructure(long id)
150 throws PortalException, SystemException {
151 JournalStructure journalStructure = journalStructurePersistence.remove(id);
152
153 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
154
155 if (indexer != null) {
156 try {
157 indexer.delete(journalStructure);
158 }
159 catch (SearchException se) {
160 if (_log.isWarnEnabled()) {
161 _log.warn(se, se);
162 }
163 }
164 }
165 }
166
167
173 public void deleteJournalStructure(JournalStructure journalStructure)
174 throws SystemException {
175 journalStructurePersistence.remove(journalStructure);
176
177 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
178
179 if (indexer != null) {
180 try {
181 indexer.delete(journalStructure);
182 }
183 catch (SearchException se) {
184 if (_log.isWarnEnabled()) {
185 _log.warn(se, se);
186 }
187 }
188 }
189 }
190
191
198 @SuppressWarnings("rawtypes")
199 public List dynamicQuery(DynamicQuery dynamicQuery)
200 throws SystemException {
201 return journalStructurePersistence.findWithDynamicQuery(dynamicQuery);
202 }
203
204
217 @SuppressWarnings("rawtypes")
218 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
219 throws SystemException {
220 return journalStructurePersistence.findWithDynamicQuery(dynamicQuery,
221 start, end);
222 }
223
224
238 @SuppressWarnings("rawtypes")
239 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
240 OrderByComparator orderByComparator) throws SystemException {
241 return journalStructurePersistence.findWithDynamicQuery(dynamicQuery,
242 start, end, orderByComparator);
243 }
244
245
252 public long dynamicQueryCount(DynamicQuery dynamicQuery)
253 throws SystemException {
254 return journalStructurePersistence.countWithDynamicQuery(dynamicQuery);
255 }
256
257 public JournalStructure fetchJournalStructure(long id)
258 throws SystemException {
259 return journalStructurePersistence.fetchByPrimaryKey(id);
260 }
261
262
270 public JournalStructure getJournalStructure(long id)
271 throws PortalException, SystemException {
272 return journalStructurePersistence.findByPrimaryKey(id);
273 }
274
275 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
276 throws PortalException, SystemException {
277 return journalStructurePersistence.findByPrimaryKey(primaryKeyObj);
278 }
279
280
289 public JournalStructure getJournalStructureByUuidAndGroupId(String uuid,
290 long groupId) throws PortalException, SystemException {
291 return journalStructurePersistence.findByUUID_G(uuid, groupId);
292 }
293
294
306 public List<JournalStructure> getJournalStructures(int start, int end)
307 throws SystemException {
308 return journalStructurePersistence.findAll(start, end);
309 }
310
311
317 public int getJournalStructuresCount() throws SystemException {
318 return journalStructurePersistence.countAll();
319 }
320
321
328 public JournalStructure updateJournalStructure(
329 JournalStructure journalStructure) throws SystemException {
330 return updateJournalStructure(journalStructure, true);
331 }
332
333
341 public JournalStructure updateJournalStructure(
342 JournalStructure journalStructure, boolean merge)
343 throws SystemException {
344 journalStructure.setNew(false);
345
346 journalStructure = journalStructurePersistence.update(journalStructure,
347 merge);
348
349 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
350
351 if (indexer != null) {
352 try {
353 indexer.reindex(journalStructure);
354 }
355 catch (SearchException se) {
356 if (_log.isWarnEnabled()) {
357 _log.warn(se, se);
358 }
359 }
360 }
361
362 return journalStructure;
363 }
364
365
370 public JournalArticleLocalService getJournalArticleLocalService() {
371 return journalArticleLocalService;
372 }
373
374
379 public void setJournalArticleLocalService(
380 JournalArticleLocalService journalArticleLocalService) {
381 this.journalArticleLocalService = journalArticleLocalService;
382 }
383
384
389 public JournalArticleService getJournalArticleService() {
390 return journalArticleService;
391 }
392
393
398 public void setJournalArticleService(
399 JournalArticleService journalArticleService) {
400 this.journalArticleService = journalArticleService;
401 }
402
403
408 public JournalArticlePersistence getJournalArticlePersistence() {
409 return journalArticlePersistence;
410 }
411
412
417 public void setJournalArticlePersistence(
418 JournalArticlePersistence journalArticlePersistence) {
419 this.journalArticlePersistence = journalArticlePersistence;
420 }
421
422
427 public JournalArticleFinder getJournalArticleFinder() {
428 return journalArticleFinder;
429 }
430
431
436 public void setJournalArticleFinder(
437 JournalArticleFinder journalArticleFinder) {
438 this.journalArticleFinder = journalArticleFinder;
439 }
440
441
446 public JournalArticleImageLocalService getJournalArticleImageLocalService() {
447 return journalArticleImageLocalService;
448 }
449
450
455 public void setJournalArticleImageLocalService(
456 JournalArticleImageLocalService journalArticleImageLocalService) {
457 this.journalArticleImageLocalService = journalArticleImageLocalService;
458 }
459
460
465 public JournalArticleImagePersistence getJournalArticleImagePersistence() {
466 return journalArticleImagePersistence;
467 }
468
469
474 public void setJournalArticleImagePersistence(
475 JournalArticleImagePersistence journalArticleImagePersistence) {
476 this.journalArticleImagePersistence = journalArticleImagePersistence;
477 }
478
479
484 public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
485 return journalArticleResourceLocalService;
486 }
487
488
493 public void setJournalArticleResourceLocalService(
494 JournalArticleResourceLocalService journalArticleResourceLocalService) {
495 this.journalArticleResourceLocalService = journalArticleResourceLocalService;
496 }
497
498
503 public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
504 return journalArticleResourcePersistence;
505 }
506
507
512 public void setJournalArticleResourcePersistence(
513 JournalArticleResourcePersistence journalArticleResourcePersistence) {
514 this.journalArticleResourcePersistence = journalArticleResourcePersistence;
515 }
516
517
522 public JournalContentSearchLocalService getJournalContentSearchLocalService() {
523 return journalContentSearchLocalService;
524 }
525
526
531 public void setJournalContentSearchLocalService(
532 JournalContentSearchLocalService journalContentSearchLocalService) {
533 this.journalContentSearchLocalService = journalContentSearchLocalService;
534 }
535
536
541 public JournalContentSearchPersistence getJournalContentSearchPersistence() {
542 return journalContentSearchPersistence;
543 }
544
545
550 public void setJournalContentSearchPersistence(
551 JournalContentSearchPersistence journalContentSearchPersistence) {
552 this.journalContentSearchPersistence = journalContentSearchPersistence;
553 }
554
555
560 public JournalFeedLocalService getJournalFeedLocalService() {
561 return journalFeedLocalService;
562 }
563
564
569 public void setJournalFeedLocalService(
570 JournalFeedLocalService journalFeedLocalService) {
571 this.journalFeedLocalService = journalFeedLocalService;
572 }
573
574
579 public JournalFeedService getJournalFeedService() {
580 return journalFeedService;
581 }
582
583
588 public void setJournalFeedService(JournalFeedService journalFeedService) {
589 this.journalFeedService = journalFeedService;
590 }
591
592
597 public JournalFeedPersistence getJournalFeedPersistence() {
598 return journalFeedPersistence;
599 }
600
601
606 public void setJournalFeedPersistence(
607 JournalFeedPersistence journalFeedPersistence) {
608 this.journalFeedPersistence = journalFeedPersistence;
609 }
610
611
616 public JournalFeedFinder getJournalFeedFinder() {
617 return journalFeedFinder;
618 }
619
620
625 public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
626 this.journalFeedFinder = journalFeedFinder;
627 }
628
629
634 public JournalStructureLocalService getJournalStructureLocalService() {
635 return journalStructureLocalService;
636 }
637
638
643 public void setJournalStructureLocalService(
644 JournalStructureLocalService journalStructureLocalService) {
645 this.journalStructureLocalService = journalStructureLocalService;
646 }
647
648
653 public JournalStructureService getJournalStructureService() {
654 return journalStructureService;
655 }
656
657
662 public void setJournalStructureService(
663 JournalStructureService journalStructureService) {
664 this.journalStructureService = journalStructureService;
665 }
666
667
672 public JournalStructurePersistence getJournalStructurePersistence() {
673 return journalStructurePersistence;
674 }
675
676
681 public void setJournalStructurePersistence(
682 JournalStructurePersistence journalStructurePersistence) {
683 this.journalStructurePersistence = journalStructurePersistence;
684 }
685
686
691 public JournalStructureFinder getJournalStructureFinder() {
692 return journalStructureFinder;
693 }
694
695
700 public void setJournalStructureFinder(
701 JournalStructureFinder journalStructureFinder) {
702 this.journalStructureFinder = journalStructureFinder;
703 }
704
705
710 public JournalTemplateLocalService getJournalTemplateLocalService() {
711 return journalTemplateLocalService;
712 }
713
714
719 public void setJournalTemplateLocalService(
720 JournalTemplateLocalService journalTemplateLocalService) {
721 this.journalTemplateLocalService = journalTemplateLocalService;
722 }
723
724
729 public JournalTemplateService getJournalTemplateService() {
730 return journalTemplateService;
731 }
732
733
738 public void setJournalTemplateService(
739 JournalTemplateService journalTemplateService) {
740 this.journalTemplateService = journalTemplateService;
741 }
742
743
748 public JournalTemplatePersistence getJournalTemplatePersistence() {
749 return journalTemplatePersistence;
750 }
751
752
757 public void setJournalTemplatePersistence(
758 JournalTemplatePersistence journalTemplatePersistence) {
759 this.journalTemplatePersistence = journalTemplatePersistence;
760 }
761
762
767 public JournalTemplateFinder getJournalTemplateFinder() {
768 return journalTemplateFinder;
769 }
770
771
776 public void setJournalTemplateFinder(
777 JournalTemplateFinder journalTemplateFinder) {
778 this.journalTemplateFinder = journalTemplateFinder;
779 }
780
781
786 public CounterLocalService getCounterLocalService() {
787 return counterLocalService;
788 }
789
790
795 public void setCounterLocalService(CounterLocalService counterLocalService) {
796 this.counterLocalService = counterLocalService;
797 }
798
799
804 public GroupLocalService getGroupLocalService() {
805 return groupLocalService;
806 }
807
808
813 public void setGroupLocalService(GroupLocalService groupLocalService) {
814 this.groupLocalService = groupLocalService;
815 }
816
817
822 public GroupService getGroupService() {
823 return groupService;
824 }
825
826
831 public void setGroupService(GroupService groupService) {
832 this.groupService = groupService;
833 }
834
835
840 public GroupPersistence getGroupPersistence() {
841 return groupPersistence;
842 }
843
844
849 public void setGroupPersistence(GroupPersistence groupPersistence) {
850 this.groupPersistence = groupPersistence;
851 }
852
853
858 public GroupFinder getGroupFinder() {
859 return groupFinder;
860 }
861
862
867 public void setGroupFinder(GroupFinder groupFinder) {
868 this.groupFinder = groupFinder;
869 }
870
871
876 public ResourceLocalService getResourceLocalService() {
877 return resourceLocalService;
878 }
879
880
885 public void setResourceLocalService(
886 ResourceLocalService resourceLocalService) {
887 this.resourceLocalService = resourceLocalService;
888 }
889
890
895 public ResourceService getResourceService() {
896 return resourceService;
897 }
898
899
904 public void setResourceService(ResourceService resourceService) {
905 this.resourceService = resourceService;
906 }
907
908
913 public ResourcePersistence getResourcePersistence() {
914 return resourcePersistence;
915 }
916
917
922 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
923 this.resourcePersistence = resourcePersistence;
924 }
925
926
931 public ResourceFinder getResourceFinder() {
932 return resourceFinder;
933 }
934
935
940 public void setResourceFinder(ResourceFinder resourceFinder) {
941 this.resourceFinder = resourceFinder;
942 }
943
944
949 public UserLocalService getUserLocalService() {
950 return userLocalService;
951 }
952
953
958 public void setUserLocalService(UserLocalService userLocalService) {
959 this.userLocalService = userLocalService;
960 }
961
962
967 public UserService getUserService() {
968 return userService;
969 }
970
971
976 public void setUserService(UserService userService) {
977 this.userService = userService;
978 }
979
980
985 public UserPersistence getUserPersistence() {
986 return userPersistence;
987 }
988
989
994 public void setUserPersistence(UserPersistence userPersistence) {
995 this.userPersistence = userPersistence;
996 }
997
998
1003 public UserFinder getUserFinder() {
1004 return userFinder;
1005 }
1006
1007
1012 public void setUserFinder(UserFinder userFinder) {
1013 this.userFinder = userFinder;
1014 }
1015
1016
1021 public WebDAVPropsLocalService getWebDAVPropsLocalService() {
1022 return webDAVPropsLocalService;
1023 }
1024
1025
1030 public void setWebDAVPropsLocalService(
1031 WebDAVPropsLocalService webDAVPropsLocalService) {
1032 this.webDAVPropsLocalService = webDAVPropsLocalService;
1033 }
1034
1035
1040 public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1041 return webDAVPropsPersistence;
1042 }
1043
1044
1049 public void setWebDAVPropsPersistence(
1050 WebDAVPropsPersistence webDAVPropsPersistence) {
1051 this.webDAVPropsPersistence = webDAVPropsPersistence;
1052 }
1053
1054
1059 public ExpandoValueLocalService getExpandoValueLocalService() {
1060 return expandoValueLocalService;
1061 }
1062
1063
1068 public void setExpandoValueLocalService(
1069 ExpandoValueLocalService expandoValueLocalService) {
1070 this.expandoValueLocalService = expandoValueLocalService;
1071 }
1072
1073
1078 public ExpandoValueService getExpandoValueService() {
1079 return expandoValueService;
1080 }
1081
1082
1087 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1088 this.expandoValueService = expandoValueService;
1089 }
1090
1091
1096 public ExpandoValuePersistence getExpandoValuePersistence() {
1097 return expandoValuePersistence;
1098 }
1099
1100
1105 public void setExpandoValuePersistence(
1106 ExpandoValuePersistence expandoValuePersistence) {
1107 this.expandoValuePersistence = expandoValuePersistence;
1108 }
1109
1110 public void afterPropertiesSet() {
1111 persistedModelLocalServiceRegistry.register("com.liferay.portlet.journal.model.JournalStructure",
1112 journalStructureLocalService);
1113 }
1114
1115 public void destroy() {
1116 persistedModelLocalServiceRegistry.unregister(
1117 "com.liferay.portlet.journal.model.JournalStructure");
1118 }
1119
1120
1125 public String getBeanIdentifier() {
1126 return _beanIdentifier;
1127 }
1128
1129
1134 public void setBeanIdentifier(String beanIdentifier) {
1135 _beanIdentifier = beanIdentifier;
1136 }
1137
1138 protected ClassLoader getClassLoader() {
1139 Class<?> clazz = getClass();
1140
1141 return clazz.getClassLoader();
1142 }
1143
1144 protected Class<?> getModelClass() {
1145 return JournalStructure.class;
1146 }
1147
1148 protected String getModelClassName() {
1149 return JournalStructure.class.getName();
1150 }
1151
1152
1157 protected void runSQL(String sql) throws SystemException {
1158 try {
1159 DataSource dataSource = journalStructurePersistence.getDataSource();
1160
1161 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1162 sql, new int[0]);
1163
1164 sqlUpdate.update();
1165 }
1166 catch (Exception e) {
1167 throw new SystemException(e);
1168 }
1169 }
1170
1171 @BeanReference(type = JournalArticleLocalService.class)
1172 protected JournalArticleLocalService journalArticleLocalService;
1173 @BeanReference(type = JournalArticleService.class)
1174 protected JournalArticleService journalArticleService;
1175 @BeanReference(type = JournalArticlePersistence.class)
1176 protected JournalArticlePersistence journalArticlePersistence;
1177 @BeanReference(type = JournalArticleFinder.class)
1178 protected JournalArticleFinder journalArticleFinder;
1179 @BeanReference(type = JournalArticleImageLocalService.class)
1180 protected JournalArticleImageLocalService journalArticleImageLocalService;
1181 @BeanReference(type = JournalArticleImagePersistence.class)
1182 protected JournalArticleImagePersistence journalArticleImagePersistence;
1183 @BeanReference(type = JournalArticleResourceLocalService.class)
1184 protected JournalArticleResourceLocalService journalArticleResourceLocalService;
1185 @BeanReference(type = JournalArticleResourcePersistence.class)
1186 protected JournalArticleResourcePersistence journalArticleResourcePersistence;
1187 @BeanReference(type = JournalContentSearchLocalService.class)
1188 protected JournalContentSearchLocalService journalContentSearchLocalService;
1189 @BeanReference(type = JournalContentSearchPersistence.class)
1190 protected JournalContentSearchPersistence journalContentSearchPersistence;
1191 @BeanReference(type = JournalFeedLocalService.class)
1192 protected JournalFeedLocalService journalFeedLocalService;
1193 @BeanReference(type = JournalFeedService.class)
1194 protected JournalFeedService journalFeedService;
1195 @BeanReference(type = JournalFeedPersistence.class)
1196 protected JournalFeedPersistence journalFeedPersistence;
1197 @BeanReference(type = JournalFeedFinder.class)
1198 protected JournalFeedFinder journalFeedFinder;
1199 @BeanReference(type = JournalStructureLocalService.class)
1200 protected JournalStructureLocalService journalStructureLocalService;
1201 @BeanReference(type = JournalStructureService.class)
1202 protected JournalStructureService journalStructureService;
1203 @BeanReference(type = JournalStructurePersistence.class)
1204 protected JournalStructurePersistence journalStructurePersistence;
1205 @BeanReference(type = JournalStructureFinder.class)
1206 protected JournalStructureFinder journalStructureFinder;
1207 @BeanReference(type = JournalTemplateLocalService.class)
1208 protected JournalTemplateLocalService journalTemplateLocalService;
1209 @BeanReference(type = JournalTemplateService.class)
1210 protected JournalTemplateService journalTemplateService;
1211 @BeanReference(type = JournalTemplatePersistence.class)
1212 protected JournalTemplatePersistence journalTemplatePersistence;
1213 @BeanReference(type = JournalTemplateFinder.class)
1214 protected JournalTemplateFinder journalTemplateFinder;
1215 @BeanReference(type = CounterLocalService.class)
1216 protected CounterLocalService counterLocalService;
1217 @BeanReference(type = GroupLocalService.class)
1218 protected GroupLocalService groupLocalService;
1219 @BeanReference(type = GroupService.class)
1220 protected GroupService groupService;
1221 @BeanReference(type = GroupPersistence.class)
1222 protected GroupPersistence groupPersistence;
1223 @BeanReference(type = GroupFinder.class)
1224 protected GroupFinder groupFinder;
1225 @BeanReference(type = ResourceLocalService.class)
1226 protected ResourceLocalService resourceLocalService;
1227 @BeanReference(type = ResourceService.class)
1228 protected ResourceService resourceService;
1229 @BeanReference(type = ResourcePersistence.class)
1230 protected ResourcePersistence resourcePersistence;
1231 @BeanReference(type = ResourceFinder.class)
1232 protected ResourceFinder resourceFinder;
1233 @BeanReference(type = UserLocalService.class)
1234 protected UserLocalService userLocalService;
1235 @BeanReference(type = UserService.class)
1236 protected UserService userService;
1237 @BeanReference(type = UserPersistence.class)
1238 protected UserPersistence userPersistence;
1239 @BeanReference(type = UserFinder.class)
1240 protected UserFinder userFinder;
1241 @BeanReference(type = WebDAVPropsLocalService.class)
1242 protected WebDAVPropsLocalService webDAVPropsLocalService;
1243 @BeanReference(type = WebDAVPropsPersistence.class)
1244 protected WebDAVPropsPersistence webDAVPropsPersistence;
1245 @BeanReference(type = ExpandoValueLocalService.class)
1246 protected ExpandoValueLocalService expandoValueLocalService;
1247 @BeanReference(type = ExpandoValueService.class)
1248 protected ExpandoValueService expandoValueService;
1249 @BeanReference(type = ExpandoValuePersistence.class)
1250 protected ExpandoValuePersistence expandoValuePersistence;
1251 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1252 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1253 private static Log _log = LogFactoryUtil.getLog(JournalStructureLocalServiceBaseImpl.class);
1254 private String _beanIdentifier;
1255 }