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.AssetCategory;
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 AssetCategoryLocalServiceBaseImpl
093 implements AssetCategoryLocalService, IdentifiableBean {
094
099
100
107 public AssetCategory addAssetCategory(AssetCategory assetCategory)
108 throws SystemException {
109 assetCategory.setNew(true);
110
111 assetCategory = assetCategoryPersistence.update(assetCategory, false);
112
113 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
114
115 if (indexer != null) {
116 try {
117 indexer.reindex(assetCategory);
118 }
119 catch (SearchException se) {
120 if (_log.isWarnEnabled()) {
121 _log.warn(se, se);
122 }
123 }
124 }
125
126 return assetCategory;
127 }
128
129
135 public AssetCategory createAssetCategory(long categoryId) {
136 return assetCategoryPersistence.create(categoryId);
137 }
138
139
146 public void deleteAssetCategory(long categoryId)
147 throws PortalException, SystemException {
148 AssetCategory assetCategory = assetCategoryPersistence.remove(categoryId);
149
150 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
151
152 if (indexer != null) {
153 try {
154 indexer.delete(assetCategory);
155 }
156 catch (SearchException se) {
157 if (_log.isWarnEnabled()) {
158 _log.warn(se, se);
159 }
160 }
161 }
162 }
163
164
170 public void deleteAssetCategory(AssetCategory assetCategory)
171 throws SystemException {
172 assetCategoryPersistence.remove(assetCategory);
173
174 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
175
176 if (indexer != null) {
177 try {
178 indexer.delete(assetCategory);
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 assetCategoryPersistence.findWithDynamicQuery(dynamicQuery);
199 }
200
201
214 @SuppressWarnings("rawtypes")
215 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
216 throws SystemException {
217 return assetCategoryPersistence.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 assetCategoryPersistence.findWithDynamicQuery(dynamicQuery,
239 start, end, orderByComparator);
240 }
241
242
249 public long dynamicQueryCount(DynamicQuery dynamicQuery)
250 throws SystemException {
251 return assetCategoryPersistence.countWithDynamicQuery(dynamicQuery);
252 }
253
254 public AssetCategory fetchAssetCategory(long categoryId)
255 throws SystemException {
256 return assetCategoryPersistence.fetchByPrimaryKey(categoryId);
257 }
258
259
267 public AssetCategory getAssetCategory(long categoryId)
268 throws PortalException, SystemException {
269 return assetCategoryPersistence.findByPrimaryKey(categoryId);
270 }
271
272 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
273 throws PortalException, SystemException {
274 return assetCategoryPersistence.findByPrimaryKey(primaryKeyObj);
275 }
276
277
286 public AssetCategory getAssetCategoryByUuidAndGroupId(String uuid,
287 long groupId) throws PortalException, SystemException {
288 return assetCategoryPersistence.findByUUID_G(uuid, groupId);
289 }
290
291
303 public List<AssetCategory> getAssetCategories(int start, int end)
304 throws SystemException {
305 return assetCategoryPersistence.findAll(start, end);
306 }
307
308
314 public int getAssetCategoriesCount() throws SystemException {
315 return assetCategoryPersistence.countAll();
316 }
317
318
325 public AssetCategory updateAssetCategory(AssetCategory assetCategory)
326 throws SystemException {
327 return updateAssetCategory(assetCategory, true);
328 }
329
330
338 public AssetCategory updateAssetCategory(AssetCategory assetCategory,
339 boolean merge) throws SystemException {
340 assetCategory.setNew(false);
341
342 assetCategory = assetCategoryPersistence.update(assetCategory, merge);
343
344 Indexer indexer = IndexerRegistryUtil.getIndexer(getModelClassName());
345
346 if (indexer != null) {
347 try {
348 indexer.reindex(assetCategory);
349 }
350 catch (SearchException se) {
351 if (_log.isWarnEnabled()) {
352 _log.warn(se, se);
353 }
354 }
355 }
356
357 return assetCategory;
358 }
359
360
365 public AssetCategoryLocalService getAssetCategoryLocalService() {
366 return assetCategoryLocalService;
367 }
368
369
374 public void setAssetCategoryLocalService(
375 AssetCategoryLocalService assetCategoryLocalService) {
376 this.assetCategoryLocalService = assetCategoryLocalService;
377 }
378
379
384 public AssetCategoryService getAssetCategoryService() {
385 return assetCategoryService;
386 }
387
388
393 public void setAssetCategoryService(
394 AssetCategoryService assetCategoryService) {
395 this.assetCategoryService = assetCategoryService;
396 }
397
398
403 public AssetCategoryPersistence getAssetCategoryPersistence() {
404 return assetCategoryPersistence;
405 }
406
407
412 public void setAssetCategoryPersistence(
413 AssetCategoryPersistence assetCategoryPersistence) {
414 this.assetCategoryPersistence = assetCategoryPersistence;
415 }
416
417
422 public AssetCategoryFinder getAssetCategoryFinder() {
423 return assetCategoryFinder;
424 }
425
426
431 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
432 this.assetCategoryFinder = assetCategoryFinder;
433 }
434
435
440 public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
441 return assetCategoryPropertyLocalService;
442 }
443
444
449 public void setAssetCategoryPropertyLocalService(
450 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
451 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
452 }
453
454
459 public AssetCategoryPropertyService getAssetCategoryPropertyService() {
460 return assetCategoryPropertyService;
461 }
462
463
468 public void setAssetCategoryPropertyService(
469 AssetCategoryPropertyService assetCategoryPropertyService) {
470 this.assetCategoryPropertyService = assetCategoryPropertyService;
471 }
472
473
478 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
479 return assetCategoryPropertyPersistence;
480 }
481
482
487 public void setAssetCategoryPropertyPersistence(
488 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
489 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
490 }
491
492
497 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
498 return assetCategoryPropertyFinder;
499 }
500
501
506 public void setAssetCategoryPropertyFinder(
507 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
508 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
509 }
510
511
516 public AssetEntryLocalService getAssetEntryLocalService() {
517 return assetEntryLocalService;
518 }
519
520
525 public void setAssetEntryLocalService(
526 AssetEntryLocalService assetEntryLocalService) {
527 this.assetEntryLocalService = assetEntryLocalService;
528 }
529
530
535 public AssetEntryService getAssetEntryService() {
536 return assetEntryService;
537 }
538
539
544 public void setAssetEntryService(AssetEntryService assetEntryService) {
545 this.assetEntryService = assetEntryService;
546 }
547
548
553 public AssetEntryPersistence getAssetEntryPersistence() {
554 return assetEntryPersistence;
555 }
556
557
562 public void setAssetEntryPersistence(
563 AssetEntryPersistence assetEntryPersistence) {
564 this.assetEntryPersistence = assetEntryPersistence;
565 }
566
567
572 public AssetEntryFinder getAssetEntryFinder() {
573 return assetEntryFinder;
574 }
575
576
581 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
582 this.assetEntryFinder = assetEntryFinder;
583 }
584
585
590 public AssetLinkLocalService getAssetLinkLocalService() {
591 return assetLinkLocalService;
592 }
593
594
599 public void setAssetLinkLocalService(
600 AssetLinkLocalService assetLinkLocalService) {
601 this.assetLinkLocalService = assetLinkLocalService;
602 }
603
604
609 public AssetLinkPersistence getAssetLinkPersistence() {
610 return assetLinkPersistence;
611 }
612
613
618 public void setAssetLinkPersistence(
619 AssetLinkPersistence assetLinkPersistence) {
620 this.assetLinkPersistence = assetLinkPersistence;
621 }
622
623
628 public AssetTagLocalService getAssetTagLocalService() {
629 return assetTagLocalService;
630 }
631
632
637 public void setAssetTagLocalService(
638 AssetTagLocalService assetTagLocalService) {
639 this.assetTagLocalService = assetTagLocalService;
640 }
641
642
647 public AssetTagService getAssetTagService() {
648 return assetTagService;
649 }
650
651
656 public void setAssetTagService(AssetTagService assetTagService) {
657 this.assetTagService = assetTagService;
658 }
659
660
665 public AssetTagPersistence getAssetTagPersistence() {
666 return assetTagPersistence;
667 }
668
669
674 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
675 this.assetTagPersistence = assetTagPersistence;
676 }
677
678
683 public AssetTagFinder getAssetTagFinder() {
684 return assetTagFinder;
685 }
686
687
692 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
693 this.assetTagFinder = assetTagFinder;
694 }
695
696
701 public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
702 return assetTagPropertyLocalService;
703 }
704
705
710 public void setAssetTagPropertyLocalService(
711 AssetTagPropertyLocalService assetTagPropertyLocalService) {
712 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
713 }
714
715
720 public AssetTagPropertyService getAssetTagPropertyService() {
721 return assetTagPropertyService;
722 }
723
724
729 public void setAssetTagPropertyService(
730 AssetTagPropertyService assetTagPropertyService) {
731 this.assetTagPropertyService = assetTagPropertyService;
732 }
733
734
739 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
740 return assetTagPropertyPersistence;
741 }
742
743
748 public void setAssetTagPropertyPersistence(
749 AssetTagPropertyPersistence assetTagPropertyPersistence) {
750 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
751 }
752
753
758 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
759 return assetTagPropertyFinder;
760 }
761
762
767 public void setAssetTagPropertyFinder(
768 AssetTagPropertyFinder assetTagPropertyFinder) {
769 this.assetTagPropertyFinder = assetTagPropertyFinder;
770 }
771
772
777 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
778 return assetTagPropertyKeyFinder;
779 }
780
781
786 public void setAssetTagPropertyKeyFinder(
787 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
788 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
789 }
790
791
796 public AssetTagStatsLocalService getAssetTagStatsLocalService() {
797 return assetTagStatsLocalService;
798 }
799
800
805 public void setAssetTagStatsLocalService(
806 AssetTagStatsLocalService assetTagStatsLocalService) {
807 this.assetTagStatsLocalService = assetTagStatsLocalService;
808 }
809
810
815 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
816 return assetTagStatsPersistence;
817 }
818
819
824 public void setAssetTagStatsPersistence(
825 AssetTagStatsPersistence assetTagStatsPersistence) {
826 this.assetTagStatsPersistence = assetTagStatsPersistence;
827 }
828
829
834 public AssetVocabularyLocalService getAssetVocabularyLocalService() {
835 return assetVocabularyLocalService;
836 }
837
838
843 public void setAssetVocabularyLocalService(
844 AssetVocabularyLocalService assetVocabularyLocalService) {
845 this.assetVocabularyLocalService = assetVocabularyLocalService;
846 }
847
848
853 public AssetVocabularyService getAssetVocabularyService() {
854 return assetVocabularyService;
855 }
856
857
862 public void setAssetVocabularyService(
863 AssetVocabularyService assetVocabularyService) {
864 this.assetVocabularyService = assetVocabularyService;
865 }
866
867
872 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
873 return assetVocabularyPersistence;
874 }
875
876
881 public void setAssetVocabularyPersistence(
882 AssetVocabularyPersistence assetVocabularyPersistence) {
883 this.assetVocabularyPersistence = assetVocabularyPersistence;
884 }
885
886
891 public AssetVocabularyFinder getAssetVocabularyFinder() {
892 return assetVocabularyFinder;
893 }
894
895
900 public void setAssetVocabularyFinder(
901 AssetVocabularyFinder assetVocabularyFinder) {
902 this.assetVocabularyFinder = assetVocabularyFinder;
903 }
904
905
910 public CounterLocalService getCounterLocalService() {
911 return counterLocalService;
912 }
913
914
919 public void setCounterLocalService(CounterLocalService counterLocalService) {
920 this.counterLocalService = counterLocalService;
921 }
922
923
928 public ResourceLocalService getResourceLocalService() {
929 return resourceLocalService;
930 }
931
932
937 public void setResourceLocalService(
938 ResourceLocalService resourceLocalService) {
939 this.resourceLocalService = resourceLocalService;
940 }
941
942
947 public ResourceService getResourceService() {
948 return resourceService;
949 }
950
951
956 public void setResourceService(ResourceService resourceService) {
957 this.resourceService = resourceService;
958 }
959
960
965 public ResourcePersistence getResourcePersistence() {
966 return resourcePersistence;
967 }
968
969
974 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
975 this.resourcePersistence = resourcePersistence;
976 }
977
978
983 public ResourceFinder getResourceFinder() {
984 return resourceFinder;
985 }
986
987
992 public void setResourceFinder(ResourceFinder resourceFinder) {
993 this.resourceFinder = resourceFinder;
994 }
995
996
1001 public UserLocalService getUserLocalService() {
1002 return userLocalService;
1003 }
1004
1005
1010 public void setUserLocalService(UserLocalService userLocalService) {
1011 this.userLocalService = userLocalService;
1012 }
1013
1014
1019 public UserService getUserService() {
1020 return userService;
1021 }
1022
1023
1028 public void setUserService(UserService userService) {
1029 this.userService = userService;
1030 }
1031
1032
1037 public UserPersistence getUserPersistence() {
1038 return userPersistence;
1039 }
1040
1041
1046 public void setUserPersistence(UserPersistence userPersistence) {
1047 this.userPersistence = userPersistence;
1048 }
1049
1050
1055 public UserFinder getUserFinder() {
1056 return userFinder;
1057 }
1058
1059
1064 public void setUserFinder(UserFinder userFinder) {
1065 this.userFinder = userFinder;
1066 }
1067
1068 public void afterPropertiesSet() {
1069 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetCategory",
1070 assetCategoryLocalService);
1071 }
1072
1073 public void destroy() {
1074 persistedModelLocalServiceRegistry.unregister(
1075 "com.liferay.portlet.asset.model.AssetCategory");
1076 }
1077
1078
1083 public String getBeanIdentifier() {
1084 return _beanIdentifier;
1085 }
1086
1087
1092 public void setBeanIdentifier(String beanIdentifier) {
1093 _beanIdentifier = beanIdentifier;
1094 }
1095
1096 protected ClassLoader getClassLoader() {
1097 Class<?> clazz = getClass();
1098
1099 return clazz.getClassLoader();
1100 }
1101
1102 protected Class<?> getModelClass() {
1103 return AssetCategory.class;
1104 }
1105
1106 protected String getModelClassName() {
1107 return AssetCategory.class.getName();
1108 }
1109
1110
1115 protected void runSQL(String sql) throws SystemException {
1116 try {
1117 DataSource dataSource = assetCategoryPersistence.getDataSource();
1118
1119 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1120 sql, new int[0]);
1121
1122 sqlUpdate.update();
1123 }
1124 catch (Exception e) {
1125 throw new SystemException(e);
1126 }
1127 }
1128
1129 @BeanReference(type = AssetCategoryLocalService.class)
1130 protected AssetCategoryLocalService assetCategoryLocalService;
1131 @BeanReference(type = AssetCategoryService.class)
1132 protected AssetCategoryService assetCategoryService;
1133 @BeanReference(type = AssetCategoryPersistence.class)
1134 protected AssetCategoryPersistence assetCategoryPersistence;
1135 @BeanReference(type = AssetCategoryFinder.class)
1136 protected AssetCategoryFinder assetCategoryFinder;
1137 @BeanReference(type = AssetCategoryPropertyLocalService.class)
1138 protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1139 @BeanReference(type = AssetCategoryPropertyService.class)
1140 protected AssetCategoryPropertyService assetCategoryPropertyService;
1141 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1142 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1143 @BeanReference(type = AssetCategoryPropertyFinder.class)
1144 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1145 @BeanReference(type = AssetEntryLocalService.class)
1146 protected AssetEntryLocalService assetEntryLocalService;
1147 @BeanReference(type = AssetEntryService.class)
1148 protected AssetEntryService assetEntryService;
1149 @BeanReference(type = AssetEntryPersistence.class)
1150 protected AssetEntryPersistence assetEntryPersistence;
1151 @BeanReference(type = AssetEntryFinder.class)
1152 protected AssetEntryFinder assetEntryFinder;
1153 @BeanReference(type = AssetLinkLocalService.class)
1154 protected AssetLinkLocalService assetLinkLocalService;
1155 @BeanReference(type = AssetLinkPersistence.class)
1156 protected AssetLinkPersistence assetLinkPersistence;
1157 @BeanReference(type = AssetTagLocalService.class)
1158 protected AssetTagLocalService assetTagLocalService;
1159 @BeanReference(type = AssetTagService.class)
1160 protected AssetTagService assetTagService;
1161 @BeanReference(type = AssetTagPersistence.class)
1162 protected AssetTagPersistence assetTagPersistence;
1163 @BeanReference(type = AssetTagFinder.class)
1164 protected AssetTagFinder assetTagFinder;
1165 @BeanReference(type = AssetTagPropertyLocalService.class)
1166 protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1167 @BeanReference(type = AssetTagPropertyService.class)
1168 protected AssetTagPropertyService assetTagPropertyService;
1169 @BeanReference(type = AssetTagPropertyPersistence.class)
1170 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1171 @BeanReference(type = AssetTagPropertyFinder.class)
1172 protected AssetTagPropertyFinder assetTagPropertyFinder;
1173 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1174 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1175 @BeanReference(type = AssetTagStatsLocalService.class)
1176 protected AssetTagStatsLocalService assetTagStatsLocalService;
1177 @BeanReference(type = AssetTagStatsPersistence.class)
1178 protected AssetTagStatsPersistence assetTagStatsPersistence;
1179 @BeanReference(type = AssetVocabularyLocalService.class)
1180 protected AssetVocabularyLocalService assetVocabularyLocalService;
1181 @BeanReference(type = AssetVocabularyService.class)
1182 protected AssetVocabularyService assetVocabularyService;
1183 @BeanReference(type = AssetVocabularyPersistence.class)
1184 protected AssetVocabularyPersistence assetVocabularyPersistence;
1185 @BeanReference(type = AssetVocabularyFinder.class)
1186 protected AssetVocabularyFinder assetVocabularyFinder;
1187 @BeanReference(type = CounterLocalService.class)
1188 protected CounterLocalService counterLocalService;
1189 @BeanReference(type = ResourceLocalService.class)
1190 protected ResourceLocalService resourceLocalService;
1191 @BeanReference(type = ResourceService.class)
1192 protected ResourceService resourceService;
1193 @BeanReference(type = ResourcePersistence.class)
1194 protected ResourcePersistence resourcePersistence;
1195 @BeanReference(type = ResourceFinder.class)
1196 protected ResourceFinder resourceFinder;
1197 @BeanReference(type = UserLocalService.class)
1198 protected UserLocalService userLocalService;
1199 @BeanReference(type = UserService.class)
1200 protected UserService userService;
1201 @BeanReference(type = UserPersistence.class)
1202 protected UserPersistence userPersistence;
1203 @BeanReference(type = UserFinder.class)
1204 protected UserFinder userFinder;
1205 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1206 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1207 private static Log _log = LogFactoryUtil.getLog(AssetCategoryLocalServiceBaseImpl.class);
1208 private String _beanIdentifier;
1209 }