001
014
015 package com.liferay.portlet.asset.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.PersistedModelLocalServiceRegistry;
034 import com.liferay.portal.service.ResourceLocalService;
035 import com.liferay.portal.service.ResourceService;
036 import com.liferay.portal.service.UserLocalService;
037 import com.liferay.portal.service.UserService;
038 import com.liferay.portal.service.persistence.ResourceFinder;
039 import com.liferay.portal.service.persistence.ResourcePersistence;
040 import com.liferay.portal.service.persistence.UserFinder;
041 import com.liferay.portal.service.persistence.UserPersistence;
042
043 import com.liferay.portlet.asset.model.AssetTagStats;
044 import com.liferay.portlet.asset.service.AssetCategoryLocalService;
045 import com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService;
046 import com.liferay.portlet.asset.service.AssetCategoryPropertyService;
047 import com.liferay.portlet.asset.service.AssetCategoryService;
048 import com.liferay.portlet.asset.service.AssetEntryLocalService;
049 import com.liferay.portlet.asset.service.AssetEntryService;
050 import com.liferay.portlet.asset.service.AssetLinkLocalService;
051 import com.liferay.portlet.asset.service.AssetTagLocalService;
052 import com.liferay.portlet.asset.service.AssetTagPropertyLocalService;
053 import com.liferay.portlet.asset.service.AssetTagPropertyService;
054 import com.liferay.portlet.asset.service.AssetTagService;
055 import com.liferay.portlet.asset.service.AssetTagStatsLocalService;
056 import com.liferay.portlet.asset.service.AssetVocabularyLocalService;
057 import com.liferay.portlet.asset.service.AssetVocabularyService;
058 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
059 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
060 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
061 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
062 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
063 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
064 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
065 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
066 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
067 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
068 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
069 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
070 import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
071 import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
072 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
073
074 import java.io.Serializable;
075
076 import java.util.List;
077
078 import javax.sql.DataSource;
079
080
092 public abstract class AssetTagStatsLocalServiceBaseImpl
093 implements AssetTagStatsLocalService, IdentifiableBean {
094
099
100
107 public AssetTagStats addAssetTagStats(AssetTagStats assetTagStats)
108 throws SystemException {
109 assetTagStats.setNew(true);
110
111 assetTagStats = assetTagStatsPersistence.update(assetTagStats, false);
112
113 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
114
115 if (indexer != null) {
116 try {
117 indexer.reindex(assetTagStats);
118 }
119 catch (SearchException se) {
120 if (_log.isWarnEnabled()) {
121 _log.warn(se, se);
122 }
123 }
124 }
125
126 return assetTagStats;
127 }
128
129
135 public AssetTagStats createAssetTagStats(long tagStatsId) {
136 return assetTagStatsPersistence.create(tagStatsId);
137 }
138
139
146 public void deleteAssetTagStats(long tagStatsId)
147 throws PortalException, SystemException {
148 AssetTagStats assetTagStats = assetTagStatsPersistence.remove(tagStatsId);
149
150 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
151
152 if (indexer != null) {
153 try {
154 indexer.delete(assetTagStats);
155 }
156 catch (SearchException se) {
157 if (_log.isWarnEnabled()) {
158 _log.warn(se, se);
159 }
160 }
161 }
162 }
163
164
170 public void deleteAssetTagStats(AssetTagStats assetTagStats)
171 throws SystemException {
172 assetTagStatsPersistence.remove(assetTagStats);
173
174 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
175
176 if (indexer != null) {
177 try {
178 indexer.delete(assetTagStats);
179 }
180 catch (SearchException se) {
181 if (_log.isWarnEnabled()) {
182 _log.warn(se, se);
183 }
184 }
185 }
186 }
187
188
195 @SuppressWarnings("rawtypes")
196 public List dynamicQuery(DynamicQuery dynamicQuery)
197 throws SystemException {
198 return assetTagStatsPersistence.findWithDynamicQuery(dynamicQuery);
199 }
200
201
214 @SuppressWarnings("rawtypes")
215 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
216 throws SystemException {
217 return assetTagStatsPersistence.findWithDynamicQuery(dynamicQuery,
218 start, end);
219 }
220
221
235 @SuppressWarnings("rawtypes")
236 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
237 OrderByComparator orderByComparator) throws SystemException {
238 return assetTagStatsPersistence.findWithDynamicQuery(dynamicQuery,
239 start, end, orderByComparator);
240 }
241
242
249 public long dynamicQueryCount(DynamicQuery dynamicQuery)
250 throws SystemException {
251 return assetTagStatsPersistence.countWithDynamicQuery(dynamicQuery);
252 }
253
254 public AssetTagStats fetchAssetTagStats(long tagStatsId)
255 throws SystemException {
256 return assetTagStatsPersistence.fetchByPrimaryKey(tagStatsId);
257 }
258
259
267 public AssetTagStats getAssetTagStats(long tagStatsId)
268 throws PortalException, SystemException {
269 return assetTagStatsPersistence.findByPrimaryKey(tagStatsId);
270 }
271
272 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
273 throws PortalException, SystemException {
274 return assetTagStatsPersistence.findByPrimaryKey(primaryKeyObj);
275 }
276
277
289 public List<AssetTagStats> getAssetTagStatses(int start, int end)
290 throws SystemException {
291 return assetTagStatsPersistence.findAll(start, end);
292 }
293
294
300 public int getAssetTagStatsesCount() throws SystemException {
301 return assetTagStatsPersistence.countAll();
302 }
303
304
311 public AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats)
312 throws SystemException {
313 return updateAssetTagStats(assetTagStats, true);
314 }
315
316
324 public AssetTagStats updateAssetTagStats(AssetTagStats assetTagStats,
325 boolean merge) throws SystemException {
326 assetTagStats.setNew(false);
327
328 assetTagStats = assetTagStatsPersistence.update(assetTagStats, merge);
329
330 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
331
332 if (indexer != null) {
333 try {
334 indexer.reindex(assetTagStats);
335 }
336 catch (SearchException se) {
337 if (_log.isWarnEnabled()) {
338 _log.warn(se, se);
339 }
340 }
341 }
342
343 return assetTagStats;
344 }
345
346
351 public AssetCategoryLocalService getAssetCategoryLocalService() {
352 return assetCategoryLocalService;
353 }
354
355
360 public void setAssetCategoryLocalService(
361 AssetCategoryLocalService assetCategoryLocalService) {
362 this.assetCategoryLocalService = assetCategoryLocalService;
363 }
364
365
370 public AssetCategoryService getAssetCategoryService() {
371 return assetCategoryService;
372 }
373
374
379 public void setAssetCategoryService(
380 AssetCategoryService assetCategoryService) {
381 this.assetCategoryService = assetCategoryService;
382 }
383
384
389 public AssetCategoryPersistence getAssetCategoryPersistence() {
390 return assetCategoryPersistence;
391 }
392
393
398 public void setAssetCategoryPersistence(
399 AssetCategoryPersistence assetCategoryPersistence) {
400 this.assetCategoryPersistence = assetCategoryPersistence;
401 }
402
403
408 public AssetCategoryFinder getAssetCategoryFinder() {
409 return assetCategoryFinder;
410 }
411
412
417 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
418 this.assetCategoryFinder = assetCategoryFinder;
419 }
420
421
426 public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
427 return assetCategoryPropertyLocalService;
428 }
429
430
435 public void setAssetCategoryPropertyLocalService(
436 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
437 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
438 }
439
440
445 public AssetCategoryPropertyService getAssetCategoryPropertyService() {
446 return assetCategoryPropertyService;
447 }
448
449
454 public void setAssetCategoryPropertyService(
455 AssetCategoryPropertyService assetCategoryPropertyService) {
456 this.assetCategoryPropertyService = assetCategoryPropertyService;
457 }
458
459
464 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
465 return assetCategoryPropertyPersistence;
466 }
467
468
473 public void setAssetCategoryPropertyPersistence(
474 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
475 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
476 }
477
478
483 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
484 return assetCategoryPropertyFinder;
485 }
486
487
492 public void setAssetCategoryPropertyFinder(
493 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
494 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
495 }
496
497
502 public AssetEntryLocalService getAssetEntryLocalService() {
503 return assetEntryLocalService;
504 }
505
506
511 public void setAssetEntryLocalService(
512 AssetEntryLocalService assetEntryLocalService) {
513 this.assetEntryLocalService = assetEntryLocalService;
514 }
515
516
521 public AssetEntryService getAssetEntryService() {
522 return assetEntryService;
523 }
524
525
530 public void setAssetEntryService(AssetEntryService assetEntryService) {
531 this.assetEntryService = assetEntryService;
532 }
533
534
539 public AssetEntryPersistence getAssetEntryPersistence() {
540 return assetEntryPersistence;
541 }
542
543
548 public void setAssetEntryPersistence(
549 AssetEntryPersistence assetEntryPersistence) {
550 this.assetEntryPersistence = assetEntryPersistence;
551 }
552
553
558 public AssetEntryFinder getAssetEntryFinder() {
559 return assetEntryFinder;
560 }
561
562
567 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
568 this.assetEntryFinder = assetEntryFinder;
569 }
570
571
576 public AssetLinkLocalService getAssetLinkLocalService() {
577 return assetLinkLocalService;
578 }
579
580
585 public void setAssetLinkLocalService(
586 AssetLinkLocalService assetLinkLocalService) {
587 this.assetLinkLocalService = assetLinkLocalService;
588 }
589
590
595 public AssetLinkPersistence getAssetLinkPersistence() {
596 return assetLinkPersistence;
597 }
598
599
604 public void setAssetLinkPersistence(
605 AssetLinkPersistence assetLinkPersistence) {
606 this.assetLinkPersistence = assetLinkPersistence;
607 }
608
609
614 public AssetTagLocalService getAssetTagLocalService() {
615 return assetTagLocalService;
616 }
617
618
623 public void setAssetTagLocalService(
624 AssetTagLocalService assetTagLocalService) {
625 this.assetTagLocalService = assetTagLocalService;
626 }
627
628
633 public AssetTagService getAssetTagService() {
634 return assetTagService;
635 }
636
637
642 public void setAssetTagService(AssetTagService assetTagService) {
643 this.assetTagService = assetTagService;
644 }
645
646
651 public AssetTagPersistence getAssetTagPersistence() {
652 return assetTagPersistence;
653 }
654
655
660 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
661 this.assetTagPersistence = assetTagPersistence;
662 }
663
664
669 public AssetTagFinder getAssetTagFinder() {
670 return assetTagFinder;
671 }
672
673
678 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
679 this.assetTagFinder = assetTagFinder;
680 }
681
682
687 public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
688 return assetTagPropertyLocalService;
689 }
690
691
696 public void setAssetTagPropertyLocalService(
697 AssetTagPropertyLocalService assetTagPropertyLocalService) {
698 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
699 }
700
701
706 public AssetTagPropertyService getAssetTagPropertyService() {
707 return assetTagPropertyService;
708 }
709
710
715 public void setAssetTagPropertyService(
716 AssetTagPropertyService assetTagPropertyService) {
717 this.assetTagPropertyService = assetTagPropertyService;
718 }
719
720
725 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
726 return assetTagPropertyPersistence;
727 }
728
729
734 public void setAssetTagPropertyPersistence(
735 AssetTagPropertyPersistence assetTagPropertyPersistence) {
736 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
737 }
738
739
744 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
745 return assetTagPropertyFinder;
746 }
747
748
753 public void setAssetTagPropertyFinder(
754 AssetTagPropertyFinder assetTagPropertyFinder) {
755 this.assetTagPropertyFinder = assetTagPropertyFinder;
756 }
757
758
763 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
764 return assetTagPropertyKeyFinder;
765 }
766
767
772 public void setAssetTagPropertyKeyFinder(
773 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
774 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
775 }
776
777
782 public AssetTagStatsLocalService getAssetTagStatsLocalService() {
783 return assetTagStatsLocalService;
784 }
785
786
791 public void setAssetTagStatsLocalService(
792 AssetTagStatsLocalService assetTagStatsLocalService) {
793 this.assetTagStatsLocalService = assetTagStatsLocalService;
794 }
795
796
801 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
802 return assetTagStatsPersistence;
803 }
804
805
810 public void setAssetTagStatsPersistence(
811 AssetTagStatsPersistence assetTagStatsPersistence) {
812 this.assetTagStatsPersistence = assetTagStatsPersistence;
813 }
814
815
820 public AssetVocabularyLocalService getAssetVocabularyLocalService() {
821 return assetVocabularyLocalService;
822 }
823
824
829 public void setAssetVocabularyLocalService(
830 AssetVocabularyLocalService assetVocabularyLocalService) {
831 this.assetVocabularyLocalService = assetVocabularyLocalService;
832 }
833
834
839 public AssetVocabularyService getAssetVocabularyService() {
840 return assetVocabularyService;
841 }
842
843
848 public void setAssetVocabularyService(
849 AssetVocabularyService assetVocabularyService) {
850 this.assetVocabularyService = assetVocabularyService;
851 }
852
853
858 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
859 return assetVocabularyPersistence;
860 }
861
862
867 public void setAssetVocabularyPersistence(
868 AssetVocabularyPersistence assetVocabularyPersistence) {
869 this.assetVocabularyPersistence = assetVocabularyPersistence;
870 }
871
872
877 public AssetVocabularyFinder getAssetVocabularyFinder() {
878 return assetVocabularyFinder;
879 }
880
881
886 public void setAssetVocabularyFinder(
887 AssetVocabularyFinder assetVocabularyFinder) {
888 this.assetVocabularyFinder = assetVocabularyFinder;
889 }
890
891
896 public CounterLocalService getCounterLocalService() {
897 return counterLocalService;
898 }
899
900
905 public void setCounterLocalService(CounterLocalService counterLocalService) {
906 this.counterLocalService = counterLocalService;
907 }
908
909
914 public ResourceLocalService getResourceLocalService() {
915 return resourceLocalService;
916 }
917
918
923 public void setResourceLocalService(
924 ResourceLocalService resourceLocalService) {
925 this.resourceLocalService = resourceLocalService;
926 }
927
928
933 public ResourceService getResourceService() {
934 return resourceService;
935 }
936
937
942 public void setResourceService(ResourceService resourceService) {
943 this.resourceService = resourceService;
944 }
945
946
951 public ResourcePersistence getResourcePersistence() {
952 return resourcePersistence;
953 }
954
955
960 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
961 this.resourcePersistence = resourcePersistence;
962 }
963
964
969 public ResourceFinder getResourceFinder() {
970 return resourceFinder;
971 }
972
973
978 public void setResourceFinder(ResourceFinder resourceFinder) {
979 this.resourceFinder = resourceFinder;
980 }
981
982
987 public UserLocalService getUserLocalService() {
988 return userLocalService;
989 }
990
991
996 public void setUserLocalService(UserLocalService userLocalService) {
997 this.userLocalService = userLocalService;
998 }
999
1000
1005 public UserService getUserService() {
1006 return userService;
1007 }
1008
1009
1014 public void setUserService(UserService userService) {
1015 this.userService = userService;
1016 }
1017
1018
1023 public UserPersistence getUserPersistence() {
1024 return userPersistence;
1025 }
1026
1027
1032 public void setUserPersistence(UserPersistence userPersistence) {
1033 this.userPersistence = userPersistence;
1034 }
1035
1036
1041 public UserFinder getUserFinder() {
1042 return userFinder;
1043 }
1044
1045
1050 public void setUserFinder(UserFinder userFinder) {
1051 this.userFinder = userFinder;
1052 }
1053
1054 public void afterPropertiesSet() {
1055 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetTagStats",
1056 assetTagStatsLocalService);
1057 }
1058
1059 public void destroy() {
1060 persistedModelLocalServiceRegistry.unregister(
1061 "com.liferay.portlet.asset.model.AssetTagStats");
1062 }
1063
1064
1069 public String getBeanIdentifier() {
1070 return _beanIdentifier;
1071 }
1072
1073
1078 public void setBeanIdentifier(String beanIdentifier) {
1079 _beanIdentifier = beanIdentifier;
1080 }
1081
1082 protected ClassLoader getClassLoader() {
1083 Class<?> clazz = getClass();
1084
1085 return clazz.getClassLoader();
1086 }
1087
1088 protected Class<?> getModelClass() {
1089 return AssetTagStats.class;
1090 }
1091
1092 protected String getModelClassName() {
1093 return AssetTagStats.class.getName();
1094 }
1095
1096
1101 protected void runSQL(String sql) throws SystemException {
1102 try {
1103 DataSource dataSource = assetTagStatsPersistence.getDataSource();
1104
1105 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1106 sql, new int[0]);
1107
1108 sqlUpdate.update();
1109 }
1110 catch (Exception e) {
1111 throw new SystemException(e);
1112 }
1113 }
1114
1115 @BeanReference(type = AssetCategoryLocalService.class)
1116 protected AssetCategoryLocalService assetCategoryLocalService;
1117 @BeanReference(type = AssetCategoryService.class)
1118 protected AssetCategoryService assetCategoryService;
1119 @BeanReference(type = AssetCategoryPersistence.class)
1120 protected AssetCategoryPersistence assetCategoryPersistence;
1121 @BeanReference(type = AssetCategoryFinder.class)
1122 protected AssetCategoryFinder assetCategoryFinder;
1123 @BeanReference(type = AssetCategoryPropertyLocalService.class)
1124 protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1125 @BeanReference(type = AssetCategoryPropertyService.class)
1126 protected AssetCategoryPropertyService assetCategoryPropertyService;
1127 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1128 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1129 @BeanReference(type = AssetCategoryPropertyFinder.class)
1130 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1131 @BeanReference(type = AssetEntryLocalService.class)
1132 protected AssetEntryLocalService assetEntryLocalService;
1133 @BeanReference(type = AssetEntryService.class)
1134 protected AssetEntryService assetEntryService;
1135 @BeanReference(type = AssetEntryPersistence.class)
1136 protected AssetEntryPersistence assetEntryPersistence;
1137 @BeanReference(type = AssetEntryFinder.class)
1138 protected AssetEntryFinder assetEntryFinder;
1139 @BeanReference(type = AssetLinkLocalService.class)
1140 protected AssetLinkLocalService assetLinkLocalService;
1141 @BeanReference(type = AssetLinkPersistence.class)
1142 protected AssetLinkPersistence assetLinkPersistence;
1143 @BeanReference(type = AssetTagLocalService.class)
1144 protected AssetTagLocalService assetTagLocalService;
1145 @BeanReference(type = AssetTagService.class)
1146 protected AssetTagService assetTagService;
1147 @BeanReference(type = AssetTagPersistence.class)
1148 protected AssetTagPersistence assetTagPersistence;
1149 @BeanReference(type = AssetTagFinder.class)
1150 protected AssetTagFinder assetTagFinder;
1151 @BeanReference(type = AssetTagPropertyLocalService.class)
1152 protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1153 @BeanReference(type = AssetTagPropertyService.class)
1154 protected AssetTagPropertyService assetTagPropertyService;
1155 @BeanReference(type = AssetTagPropertyPersistence.class)
1156 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1157 @BeanReference(type = AssetTagPropertyFinder.class)
1158 protected AssetTagPropertyFinder assetTagPropertyFinder;
1159 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1160 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1161 @BeanReference(type = AssetTagStatsLocalService.class)
1162 protected AssetTagStatsLocalService assetTagStatsLocalService;
1163 @BeanReference(type = AssetTagStatsPersistence.class)
1164 protected AssetTagStatsPersistence assetTagStatsPersistence;
1165 @BeanReference(type = AssetVocabularyLocalService.class)
1166 protected AssetVocabularyLocalService assetVocabularyLocalService;
1167 @BeanReference(type = AssetVocabularyService.class)
1168 protected AssetVocabularyService assetVocabularyService;
1169 @BeanReference(type = AssetVocabularyPersistence.class)
1170 protected AssetVocabularyPersistence assetVocabularyPersistence;
1171 @BeanReference(type = AssetVocabularyFinder.class)
1172 protected AssetVocabularyFinder assetVocabularyFinder;
1173 @BeanReference(type = CounterLocalService.class)
1174 protected CounterLocalService counterLocalService;
1175 @BeanReference(type = ResourceLocalService.class)
1176 protected ResourceLocalService resourceLocalService;
1177 @BeanReference(type = ResourceService.class)
1178 protected ResourceService resourceService;
1179 @BeanReference(type = ResourcePersistence.class)
1180 protected ResourcePersistence resourcePersistence;
1181 @BeanReference(type = ResourceFinder.class)
1182 protected ResourceFinder resourceFinder;
1183 @BeanReference(type = UserLocalService.class)
1184 protected UserLocalService userLocalService;
1185 @BeanReference(type = UserService.class)
1186 protected UserService userService;
1187 @BeanReference(type = UserPersistence.class)
1188 protected UserPersistence userPersistence;
1189 @BeanReference(type = UserFinder.class)
1190 protected UserFinder userFinder;
1191 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1192 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1193 private static Log _log = LogFactoryUtil.getLog(AssetTagStatsLocalServiceBaseImpl.class);
1194 private String _beanIdentifier;
1195 }