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.AssetCategoryProperty;
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 AssetCategoryPropertyLocalServiceBaseImpl
093 implements AssetCategoryPropertyLocalService, IdentifiableBean {
094
099
100
107 public AssetCategoryProperty addAssetCategoryProperty(
108 AssetCategoryProperty assetCategoryProperty) throws SystemException {
109 assetCategoryProperty.setNew(true);
110
111 assetCategoryProperty = assetCategoryPropertyPersistence.update(assetCategoryProperty,
112 false);
113
114 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
115
116 if (indexer != null) {
117 try {
118 indexer.reindex(assetCategoryProperty);
119 }
120 catch (SearchException se) {
121 if (_log.isWarnEnabled()) {
122 _log.warn(se, se);
123 }
124 }
125 }
126
127 return assetCategoryProperty;
128 }
129
130
136 public AssetCategoryProperty createAssetCategoryProperty(
137 long categoryPropertyId) {
138 return assetCategoryPropertyPersistence.create(categoryPropertyId);
139 }
140
141
148 public void deleteAssetCategoryProperty(long categoryPropertyId)
149 throws PortalException, SystemException {
150 AssetCategoryProperty assetCategoryProperty = assetCategoryPropertyPersistence.remove(categoryPropertyId);
151
152 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
153
154 if (indexer != null) {
155 try {
156 indexer.delete(assetCategoryProperty);
157 }
158 catch (SearchException se) {
159 if (_log.isWarnEnabled()) {
160 _log.warn(se, se);
161 }
162 }
163 }
164 }
165
166
172 public void deleteAssetCategoryProperty(
173 AssetCategoryProperty assetCategoryProperty) throws SystemException {
174 assetCategoryPropertyPersistence.remove(assetCategoryProperty);
175
176 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
177
178 if (indexer != null) {
179 try {
180 indexer.delete(assetCategoryProperty);
181 }
182 catch (SearchException se) {
183 if (_log.isWarnEnabled()) {
184 _log.warn(se, se);
185 }
186 }
187 }
188 }
189
190
197 @SuppressWarnings("rawtypes")
198 public List dynamicQuery(DynamicQuery dynamicQuery)
199 throws SystemException {
200 return assetCategoryPropertyPersistence.findWithDynamicQuery(dynamicQuery);
201 }
202
203
216 @SuppressWarnings("rawtypes")
217 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
218 throws SystemException {
219 return assetCategoryPropertyPersistence.findWithDynamicQuery(dynamicQuery,
220 start, end);
221 }
222
223
237 @SuppressWarnings("rawtypes")
238 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
239 OrderByComparator orderByComparator) throws SystemException {
240 return assetCategoryPropertyPersistence.findWithDynamicQuery(dynamicQuery,
241 start, end, orderByComparator);
242 }
243
244
251 public long dynamicQueryCount(DynamicQuery dynamicQuery)
252 throws SystemException {
253 return assetCategoryPropertyPersistence.countWithDynamicQuery(dynamicQuery);
254 }
255
256 public AssetCategoryProperty fetchAssetCategoryProperty(
257 long categoryPropertyId) throws SystemException {
258 return assetCategoryPropertyPersistence.fetchByPrimaryKey(categoryPropertyId);
259 }
260
261
269 public AssetCategoryProperty getAssetCategoryProperty(
270 long categoryPropertyId) throws PortalException, SystemException {
271 return assetCategoryPropertyPersistence.findByPrimaryKey(categoryPropertyId);
272 }
273
274 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
275 throws PortalException, SystemException {
276 return assetCategoryPropertyPersistence.findByPrimaryKey(primaryKeyObj);
277 }
278
279
291 public List<AssetCategoryProperty> getAssetCategoryProperties(int start,
292 int end) throws SystemException {
293 return assetCategoryPropertyPersistence.findAll(start, end);
294 }
295
296
302 public int getAssetCategoryPropertiesCount() throws SystemException {
303 return assetCategoryPropertyPersistence.countAll();
304 }
305
306
313 public AssetCategoryProperty updateAssetCategoryProperty(
314 AssetCategoryProperty assetCategoryProperty) throws SystemException {
315 return updateAssetCategoryProperty(assetCategoryProperty, true);
316 }
317
318
326 public AssetCategoryProperty updateAssetCategoryProperty(
327 AssetCategoryProperty assetCategoryProperty, boolean merge)
328 throws SystemException {
329 assetCategoryProperty.setNew(false);
330
331 assetCategoryProperty = assetCategoryPropertyPersistence.update(assetCategoryProperty,
332 merge);
333
334 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
335
336 if (indexer != null) {
337 try {
338 indexer.reindex(assetCategoryProperty);
339 }
340 catch (SearchException se) {
341 if (_log.isWarnEnabled()) {
342 _log.warn(se, se);
343 }
344 }
345 }
346
347 return assetCategoryProperty;
348 }
349
350
355 public AssetCategoryLocalService getAssetCategoryLocalService() {
356 return assetCategoryLocalService;
357 }
358
359
364 public void setAssetCategoryLocalService(
365 AssetCategoryLocalService assetCategoryLocalService) {
366 this.assetCategoryLocalService = assetCategoryLocalService;
367 }
368
369
374 public AssetCategoryService getAssetCategoryService() {
375 return assetCategoryService;
376 }
377
378
383 public void setAssetCategoryService(
384 AssetCategoryService assetCategoryService) {
385 this.assetCategoryService = assetCategoryService;
386 }
387
388
393 public AssetCategoryPersistence getAssetCategoryPersistence() {
394 return assetCategoryPersistence;
395 }
396
397
402 public void setAssetCategoryPersistence(
403 AssetCategoryPersistence assetCategoryPersistence) {
404 this.assetCategoryPersistence = assetCategoryPersistence;
405 }
406
407
412 public AssetCategoryFinder getAssetCategoryFinder() {
413 return assetCategoryFinder;
414 }
415
416
421 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
422 this.assetCategoryFinder = assetCategoryFinder;
423 }
424
425
430 public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
431 return assetCategoryPropertyLocalService;
432 }
433
434
439 public void setAssetCategoryPropertyLocalService(
440 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
441 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
442 }
443
444
449 public AssetCategoryPropertyService getAssetCategoryPropertyService() {
450 return assetCategoryPropertyService;
451 }
452
453
458 public void setAssetCategoryPropertyService(
459 AssetCategoryPropertyService assetCategoryPropertyService) {
460 this.assetCategoryPropertyService = assetCategoryPropertyService;
461 }
462
463
468 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
469 return assetCategoryPropertyPersistence;
470 }
471
472
477 public void setAssetCategoryPropertyPersistence(
478 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
479 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
480 }
481
482
487 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
488 return assetCategoryPropertyFinder;
489 }
490
491
496 public void setAssetCategoryPropertyFinder(
497 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
498 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
499 }
500
501
506 public AssetEntryLocalService getAssetEntryLocalService() {
507 return assetEntryLocalService;
508 }
509
510
515 public void setAssetEntryLocalService(
516 AssetEntryLocalService assetEntryLocalService) {
517 this.assetEntryLocalService = assetEntryLocalService;
518 }
519
520
525 public AssetEntryService getAssetEntryService() {
526 return assetEntryService;
527 }
528
529
534 public void setAssetEntryService(AssetEntryService assetEntryService) {
535 this.assetEntryService = assetEntryService;
536 }
537
538
543 public AssetEntryPersistence getAssetEntryPersistence() {
544 return assetEntryPersistence;
545 }
546
547
552 public void setAssetEntryPersistence(
553 AssetEntryPersistence assetEntryPersistence) {
554 this.assetEntryPersistence = assetEntryPersistence;
555 }
556
557
562 public AssetEntryFinder getAssetEntryFinder() {
563 return assetEntryFinder;
564 }
565
566
571 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
572 this.assetEntryFinder = assetEntryFinder;
573 }
574
575
580 public AssetLinkLocalService getAssetLinkLocalService() {
581 return assetLinkLocalService;
582 }
583
584
589 public void setAssetLinkLocalService(
590 AssetLinkLocalService assetLinkLocalService) {
591 this.assetLinkLocalService = assetLinkLocalService;
592 }
593
594
599 public AssetLinkPersistence getAssetLinkPersistence() {
600 return assetLinkPersistence;
601 }
602
603
608 public void setAssetLinkPersistence(
609 AssetLinkPersistence assetLinkPersistence) {
610 this.assetLinkPersistence = assetLinkPersistence;
611 }
612
613
618 public AssetTagLocalService getAssetTagLocalService() {
619 return assetTagLocalService;
620 }
621
622
627 public void setAssetTagLocalService(
628 AssetTagLocalService assetTagLocalService) {
629 this.assetTagLocalService = assetTagLocalService;
630 }
631
632
637 public AssetTagService getAssetTagService() {
638 return assetTagService;
639 }
640
641
646 public void setAssetTagService(AssetTagService assetTagService) {
647 this.assetTagService = assetTagService;
648 }
649
650
655 public AssetTagPersistence getAssetTagPersistence() {
656 return assetTagPersistence;
657 }
658
659
664 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
665 this.assetTagPersistence = assetTagPersistence;
666 }
667
668
673 public AssetTagFinder getAssetTagFinder() {
674 return assetTagFinder;
675 }
676
677
682 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
683 this.assetTagFinder = assetTagFinder;
684 }
685
686
691 public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
692 return assetTagPropertyLocalService;
693 }
694
695
700 public void setAssetTagPropertyLocalService(
701 AssetTagPropertyLocalService assetTagPropertyLocalService) {
702 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
703 }
704
705
710 public AssetTagPropertyService getAssetTagPropertyService() {
711 return assetTagPropertyService;
712 }
713
714
719 public void setAssetTagPropertyService(
720 AssetTagPropertyService assetTagPropertyService) {
721 this.assetTagPropertyService = assetTagPropertyService;
722 }
723
724
729 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
730 return assetTagPropertyPersistence;
731 }
732
733
738 public void setAssetTagPropertyPersistence(
739 AssetTagPropertyPersistence assetTagPropertyPersistence) {
740 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
741 }
742
743
748 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
749 return assetTagPropertyFinder;
750 }
751
752
757 public void setAssetTagPropertyFinder(
758 AssetTagPropertyFinder assetTagPropertyFinder) {
759 this.assetTagPropertyFinder = assetTagPropertyFinder;
760 }
761
762
767 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
768 return assetTagPropertyKeyFinder;
769 }
770
771
776 public void setAssetTagPropertyKeyFinder(
777 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
778 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
779 }
780
781
786 public AssetTagStatsLocalService getAssetTagStatsLocalService() {
787 return assetTagStatsLocalService;
788 }
789
790
795 public void setAssetTagStatsLocalService(
796 AssetTagStatsLocalService assetTagStatsLocalService) {
797 this.assetTagStatsLocalService = assetTagStatsLocalService;
798 }
799
800
805 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
806 return assetTagStatsPersistence;
807 }
808
809
814 public void setAssetTagStatsPersistence(
815 AssetTagStatsPersistence assetTagStatsPersistence) {
816 this.assetTagStatsPersistence = assetTagStatsPersistence;
817 }
818
819
824 public AssetVocabularyLocalService getAssetVocabularyLocalService() {
825 return assetVocabularyLocalService;
826 }
827
828
833 public void setAssetVocabularyLocalService(
834 AssetVocabularyLocalService assetVocabularyLocalService) {
835 this.assetVocabularyLocalService = assetVocabularyLocalService;
836 }
837
838
843 public AssetVocabularyService getAssetVocabularyService() {
844 return assetVocabularyService;
845 }
846
847
852 public void setAssetVocabularyService(
853 AssetVocabularyService assetVocabularyService) {
854 this.assetVocabularyService = assetVocabularyService;
855 }
856
857
862 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
863 return assetVocabularyPersistence;
864 }
865
866
871 public void setAssetVocabularyPersistence(
872 AssetVocabularyPersistence assetVocabularyPersistence) {
873 this.assetVocabularyPersistence = assetVocabularyPersistence;
874 }
875
876
881 public AssetVocabularyFinder getAssetVocabularyFinder() {
882 return assetVocabularyFinder;
883 }
884
885
890 public void setAssetVocabularyFinder(
891 AssetVocabularyFinder assetVocabularyFinder) {
892 this.assetVocabularyFinder = assetVocabularyFinder;
893 }
894
895
900 public CounterLocalService getCounterLocalService() {
901 return counterLocalService;
902 }
903
904
909 public void setCounterLocalService(CounterLocalService counterLocalService) {
910 this.counterLocalService = counterLocalService;
911 }
912
913
918 public ResourceLocalService getResourceLocalService() {
919 return resourceLocalService;
920 }
921
922
927 public void setResourceLocalService(
928 ResourceLocalService resourceLocalService) {
929 this.resourceLocalService = resourceLocalService;
930 }
931
932
937 public ResourceService getResourceService() {
938 return resourceService;
939 }
940
941
946 public void setResourceService(ResourceService resourceService) {
947 this.resourceService = resourceService;
948 }
949
950
955 public ResourcePersistence getResourcePersistence() {
956 return resourcePersistence;
957 }
958
959
964 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
965 this.resourcePersistence = resourcePersistence;
966 }
967
968
973 public ResourceFinder getResourceFinder() {
974 return resourceFinder;
975 }
976
977
982 public void setResourceFinder(ResourceFinder resourceFinder) {
983 this.resourceFinder = resourceFinder;
984 }
985
986
991 public UserLocalService getUserLocalService() {
992 return userLocalService;
993 }
994
995
1000 public void setUserLocalService(UserLocalService userLocalService) {
1001 this.userLocalService = userLocalService;
1002 }
1003
1004
1009 public UserService getUserService() {
1010 return userService;
1011 }
1012
1013
1018 public void setUserService(UserService userService) {
1019 this.userService = userService;
1020 }
1021
1022
1027 public UserPersistence getUserPersistence() {
1028 return userPersistence;
1029 }
1030
1031
1036 public void setUserPersistence(UserPersistence userPersistence) {
1037 this.userPersistence = userPersistence;
1038 }
1039
1040
1045 public UserFinder getUserFinder() {
1046 return userFinder;
1047 }
1048
1049
1054 public void setUserFinder(UserFinder userFinder) {
1055 this.userFinder = userFinder;
1056 }
1057
1058 public void afterPropertiesSet() {
1059 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetCategoryProperty",
1060 assetCategoryPropertyLocalService);
1061 }
1062
1063 public void destroy() {
1064 persistedModelLocalServiceRegistry.unregister(
1065 "com.liferay.portlet.asset.model.AssetCategoryProperty");
1066 }
1067
1068
1073 public String getBeanIdentifier() {
1074 return _beanIdentifier;
1075 }
1076
1077
1082 public void setBeanIdentifier(String beanIdentifier) {
1083 _beanIdentifier = beanIdentifier;
1084 }
1085
1086 protected ClassLoader getClassLoader() {
1087 Class<?> clazz = getClass();
1088
1089 return clazz.getClassLoader();
1090 }
1091
1092 protected Class<?> getModelClass() {
1093 return AssetCategoryProperty.class;
1094 }
1095
1096 protected String getModelClassName() {
1097 return AssetCategoryProperty.class.getName();
1098 }
1099
1100
1105 protected void runSQL(String sql) throws SystemException {
1106 try {
1107 DataSource dataSource = assetCategoryPropertyPersistence.getDataSource();
1108
1109 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1110 sql, new int[0]);
1111
1112 sqlUpdate.update();
1113 }
1114 catch (Exception e) {
1115 throw new SystemException(e);
1116 }
1117 }
1118
1119 @BeanReference(type = AssetCategoryLocalService.class)
1120 protected AssetCategoryLocalService assetCategoryLocalService;
1121 @BeanReference(type = AssetCategoryService.class)
1122 protected AssetCategoryService assetCategoryService;
1123 @BeanReference(type = AssetCategoryPersistence.class)
1124 protected AssetCategoryPersistence assetCategoryPersistence;
1125 @BeanReference(type = AssetCategoryFinder.class)
1126 protected AssetCategoryFinder assetCategoryFinder;
1127 @BeanReference(type = AssetCategoryPropertyLocalService.class)
1128 protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1129 @BeanReference(type = AssetCategoryPropertyService.class)
1130 protected AssetCategoryPropertyService assetCategoryPropertyService;
1131 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1132 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1133 @BeanReference(type = AssetCategoryPropertyFinder.class)
1134 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1135 @BeanReference(type = AssetEntryLocalService.class)
1136 protected AssetEntryLocalService assetEntryLocalService;
1137 @BeanReference(type = AssetEntryService.class)
1138 protected AssetEntryService assetEntryService;
1139 @BeanReference(type = AssetEntryPersistence.class)
1140 protected AssetEntryPersistence assetEntryPersistence;
1141 @BeanReference(type = AssetEntryFinder.class)
1142 protected AssetEntryFinder assetEntryFinder;
1143 @BeanReference(type = AssetLinkLocalService.class)
1144 protected AssetLinkLocalService assetLinkLocalService;
1145 @BeanReference(type = AssetLinkPersistence.class)
1146 protected AssetLinkPersistence assetLinkPersistence;
1147 @BeanReference(type = AssetTagLocalService.class)
1148 protected AssetTagLocalService assetTagLocalService;
1149 @BeanReference(type = AssetTagService.class)
1150 protected AssetTagService assetTagService;
1151 @BeanReference(type = AssetTagPersistence.class)
1152 protected AssetTagPersistence assetTagPersistence;
1153 @BeanReference(type = AssetTagFinder.class)
1154 protected AssetTagFinder assetTagFinder;
1155 @BeanReference(type = AssetTagPropertyLocalService.class)
1156 protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1157 @BeanReference(type = AssetTagPropertyService.class)
1158 protected AssetTagPropertyService assetTagPropertyService;
1159 @BeanReference(type = AssetTagPropertyPersistence.class)
1160 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1161 @BeanReference(type = AssetTagPropertyFinder.class)
1162 protected AssetTagPropertyFinder assetTagPropertyFinder;
1163 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1164 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1165 @BeanReference(type = AssetTagStatsLocalService.class)
1166 protected AssetTagStatsLocalService assetTagStatsLocalService;
1167 @BeanReference(type = AssetTagStatsPersistence.class)
1168 protected AssetTagStatsPersistence assetTagStatsPersistence;
1169 @BeanReference(type = AssetVocabularyLocalService.class)
1170 protected AssetVocabularyLocalService assetVocabularyLocalService;
1171 @BeanReference(type = AssetVocabularyService.class)
1172 protected AssetVocabularyService assetVocabularyService;
1173 @BeanReference(type = AssetVocabularyPersistence.class)
1174 protected AssetVocabularyPersistence assetVocabularyPersistence;
1175 @BeanReference(type = AssetVocabularyFinder.class)
1176 protected AssetVocabularyFinder assetVocabularyFinder;
1177 @BeanReference(type = CounterLocalService.class)
1178 protected CounterLocalService counterLocalService;
1179 @BeanReference(type = ResourceLocalService.class)
1180 protected ResourceLocalService resourceLocalService;
1181 @BeanReference(type = ResourceService.class)
1182 protected ResourceService resourceService;
1183 @BeanReference(type = ResourcePersistence.class)
1184 protected ResourcePersistence resourcePersistence;
1185 @BeanReference(type = ResourceFinder.class)
1186 protected ResourceFinder resourceFinder;
1187 @BeanReference(type = UserLocalService.class)
1188 protected UserLocalService userLocalService;
1189 @BeanReference(type = UserService.class)
1190 protected UserService userService;
1191 @BeanReference(type = UserPersistence.class)
1192 protected UserPersistence userPersistence;
1193 @BeanReference(type = UserFinder.class)
1194 protected UserFinder userFinder;
1195 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1196 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1197 private static Log _log = LogFactoryUtil.getLog(AssetCategoryPropertyLocalServiceBaseImpl.class);
1198 private String _beanIdentifier;
1199 }