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.dao.orm.DynamicQueryFactoryUtil;
025 import com.liferay.portal.kernel.exception.PortalException;
026 import com.liferay.portal.kernel.exception.SystemException;
027 import com.liferay.portal.kernel.search.Indexable;
028 import com.liferay.portal.kernel.search.IndexableType;
029 import com.liferay.portal.kernel.util.OrderByComparator;
030 import com.liferay.portal.model.PersistedModel;
031 import com.liferay.portal.service.BaseLocalServiceImpl;
032 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
033 import com.liferay.portal.service.ResourceLocalService;
034 import com.liferay.portal.service.UserLocalService;
035 import com.liferay.portal.service.UserService;
036 import com.liferay.portal.service.persistence.UserFinder;
037 import com.liferay.portal.service.persistence.UserPersistence;
038
039 import com.liferay.portlet.asset.model.AssetTag;
040 import com.liferay.portlet.asset.service.AssetCategoryLocalService;
041 import com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService;
042 import com.liferay.portlet.asset.service.AssetCategoryPropertyService;
043 import com.liferay.portlet.asset.service.AssetCategoryService;
044 import com.liferay.portlet.asset.service.AssetEntryLocalService;
045 import com.liferay.portlet.asset.service.AssetEntryService;
046 import com.liferay.portlet.asset.service.AssetLinkLocalService;
047 import com.liferay.portlet.asset.service.AssetTagLocalService;
048 import com.liferay.portlet.asset.service.AssetTagPropertyLocalService;
049 import com.liferay.portlet.asset.service.AssetTagPropertyService;
050 import com.liferay.portlet.asset.service.AssetTagService;
051 import com.liferay.portlet.asset.service.AssetTagStatsLocalService;
052 import com.liferay.portlet.asset.service.AssetVocabularyLocalService;
053 import com.liferay.portlet.asset.service.AssetVocabularyService;
054 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
055 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
056 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
057 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
058 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
059 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
060 import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
061 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
062 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
063 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
064 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
065 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
066 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
067 import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
068 import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
069 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
070
071 import java.io.Serializable;
072
073 import java.util.List;
074
075 import javax.sql.DataSource;
076
077
089 public abstract class AssetTagLocalServiceBaseImpl extends BaseLocalServiceImpl
090 implements AssetTagLocalService, IdentifiableBean {
091
096
097
104 @Indexable(type = IndexableType.REINDEX)
105 public AssetTag addAssetTag(AssetTag assetTag) throws SystemException {
106 assetTag.setNew(true);
107
108 return assetTagPersistence.update(assetTag);
109 }
110
111
117 public AssetTag createAssetTag(long tagId) {
118 return assetTagPersistence.create(tagId);
119 }
120
121
129 @Indexable(type = IndexableType.DELETE)
130 public AssetTag deleteAssetTag(long tagId)
131 throws PortalException, SystemException {
132 return assetTagPersistence.remove(tagId);
133 }
134
135
142 @Indexable(type = IndexableType.DELETE)
143 public AssetTag deleteAssetTag(AssetTag assetTag) throws SystemException {
144 return assetTagPersistence.remove(assetTag);
145 }
146
147 public DynamicQuery dynamicQuery() {
148 Class<?> clazz = getClass();
149
150 return DynamicQueryFactoryUtil.forClass(AssetTag.class,
151 clazz.getClassLoader());
152 }
153
154
161 @SuppressWarnings("rawtypes")
162 public List dynamicQuery(DynamicQuery dynamicQuery)
163 throws SystemException {
164 return assetTagPersistence.findWithDynamicQuery(dynamicQuery);
165 }
166
167
180 @SuppressWarnings("rawtypes")
181 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
182 throws SystemException {
183 return assetTagPersistence.findWithDynamicQuery(dynamicQuery, start, end);
184 }
185
186
200 @SuppressWarnings("rawtypes")
201 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
202 OrderByComparator orderByComparator) throws SystemException {
203 return assetTagPersistence.findWithDynamicQuery(dynamicQuery, start,
204 end, orderByComparator);
205 }
206
207
214 public long dynamicQueryCount(DynamicQuery dynamicQuery)
215 throws SystemException {
216 return assetTagPersistence.countWithDynamicQuery(dynamicQuery);
217 }
218
219 public AssetTag fetchAssetTag(long tagId) throws SystemException {
220 return assetTagPersistence.fetchByPrimaryKey(tagId);
221 }
222
223
231 public AssetTag getAssetTag(long tagId)
232 throws PortalException, SystemException {
233 return assetTagPersistence.findByPrimaryKey(tagId);
234 }
235
236 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
237 throws PortalException, SystemException {
238 return assetTagPersistence.findByPrimaryKey(primaryKeyObj);
239 }
240
241
253 public List<AssetTag> getAssetTags(int start, int end)
254 throws SystemException {
255 return assetTagPersistence.findAll(start, end);
256 }
257
258
264 public int getAssetTagsCount() throws SystemException {
265 return assetTagPersistence.countAll();
266 }
267
268
275 @Indexable(type = IndexableType.REINDEX)
276 public AssetTag updateAssetTag(AssetTag assetTag) throws SystemException {
277 return assetTagPersistence.update(assetTag);
278 }
279
280
283 public void addAssetEntryAssetTag(long entryId, long tagId)
284 throws SystemException {
285 assetEntryPersistence.addAssetTag(entryId, tagId);
286 }
287
288
291 public void addAssetEntryAssetTag(long entryId, AssetTag assetTag)
292 throws SystemException {
293 assetEntryPersistence.addAssetTag(entryId, assetTag);
294 }
295
296
299 public void addAssetEntryAssetTags(long entryId, long[] tagIds)
300 throws SystemException {
301 assetEntryPersistence.addAssetTags(entryId, tagIds);
302 }
303
304
307 public void addAssetEntryAssetTags(long entryId, List<AssetTag> AssetTags)
308 throws SystemException {
309 assetEntryPersistence.addAssetTags(entryId, AssetTags);
310 }
311
312
315 public void clearAssetEntryAssetTags(long entryId)
316 throws SystemException {
317 assetEntryPersistence.clearAssetTags(entryId);
318 }
319
320
323 public void deleteAssetEntryAssetTag(long entryId, long tagId)
324 throws SystemException {
325 assetEntryPersistence.removeAssetTag(entryId, tagId);
326 }
327
328
331 public void deleteAssetEntryAssetTag(long entryId, AssetTag assetTag)
332 throws SystemException {
333 assetEntryPersistence.removeAssetTag(entryId, assetTag);
334 }
335
336
339 public void deleteAssetEntryAssetTags(long entryId, long[] tagIds)
340 throws SystemException {
341 assetEntryPersistence.removeAssetTags(entryId, tagIds);
342 }
343
344
347 public void deleteAssetEntryAssetTags(long entryId, List<AssetTag> AssetTags)
348 throws SystemException {
349 assetEntryPersistence.removeAssetTags(entryId, AssetTags);
350 }
351
352
355 public List<AssetTag> getAssetEntryAssetTags(long entryId)
356 throws SystemException {
357 return assetEntryPersistence.getAssetTags(entryId);
358 }
359
360
363 public List<AssetTag> getAssetEntryAssetTags(long entryId, int start,
364 int end) throws SystemException {
365 return assetEntryPersistence.getAssetTags(entryId, start, end);
366 }
367
368
371 public List<AssetTag> getAssetEntryAssetTags(long entryId, int start,
372 int end, OrderByComparator orderByComparator) throws SystemException {
373 return assetEntryPersistence.getAssetTags(entryId, start, end,
374 orderByComparator);
375 }
376
377
380 public int getAssetEntryAssetTagsCount(long entryId)
381 throws SystemException {
382 return assetEntryPersistence.getAssetTagsSize(entryId);
383 }
384
385
388 public boolean hasAssetEntryAssetTag(long entryId, long tagId)
389 throws SystemException {
390 return assetEntryPersistence.containsAssetTag(entryId, tagId);
391 }
392
393
396 public boolean hasAssetEntryAssetTags(long entryId)
397 throws SystemException {
398 return assetEntryPersistence.containsAssetTags(entryId);
399 }
400
401
404 public void setAssetEntryAssetTags(long entryId, long[] tagIds)
405 throws SystemException {
406 assetEntryPersistence.setAssetTags(entryId, tagIds);
407 }
408
409
414 public AssetCategoryLocalService getAssetCategoryLocalService() {
415 return assetCategoryLocalService;
416 }
417
418
423 public void setAssetCategoryLocalService(
424 AssetCategoryLocalService assetCategoryLocalService) {
425 this.assetCategoryLocalService = assetCategoryLocalService;
426 }
427
428
433 public AssetCategoryService getAssetCategoryService() {
434 return assetCategoryService;
435 }
436
437
442 public void setAssetCategoryService(
443 AssetCategoryService assetCategoryService) {
444 this.assetCategoryService = assetCategoryService;
445 }
446
447
452 public AssetCategoryPersistence getAssetCategoryPersistence() {
453 return assetCategoryPersistence;
454 }
455
456
461 public void setAssetCategoryPersistence(
462 AssetCategoryPersistence assetCategoryPersistence) {
463 this.assetCategoryPersistence = assetCategoryPersistence;
464 }
465
466
471 public AssetCategoryFinder getAssetCategoryFinder() {
472 return assetCategoryFinder;
473 }
474
475
480 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
481 this.assetCategoryFinder = assetCategoryFinder;
482 }
483
484
489 public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
490 return assetCategoryPropertyLocalService;
491 }
492
493
498 public void setAssetCategoryPropertyLocalService(
499 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
500 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
501 }
502
503
508 public AssetCategoryPropertyService getAssetCategoryPropertyService() {
509 return assetCategoryPropertyService;
510 }
511
512
517 public void setAssetCategoryPropertyService(
518 AssetCategoryPropertyService assetCategoryPropertyService) {
519 this.assetCategoryPropertyService = assetCategoryPropertyService;
520 }
521
522
527 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
528 return assetCategoryPropertyPersistence;
529 }
530
531
536 public void setAssetCategoryPropertyPersistence(
537 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
538 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
539 }
540
541
546 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
547 return assetCategoryPropertyFinder;
548 }
549
550
555 public void setAssetCategoryPropertyFinder(
556 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
557 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
558 }
559
560
565 public AssetEntryLocalService getAssetEntryLocalService() {
566 return assetEntryLocalService;
567 }
568
569
574 public void setAssetEntryLocalService(
575 AssetEntryLocalService assetEntryLocalService) {
576 this.assetEntryLocalService = assetEntryLocalService;
577 }
578
579
584 public AssetEntryService getAssetEntryService() {
585 return assetEntryService;
586 }
587
588
593 public void setAssetEntryService(AssetEntryService assetEntryService) {
594 this.assetEntryService = assetEntryService;
595 }
596
597
602 public AssetEntryPersistence getAssetEntryPersistence() {
603 return assetEntryPersistence;
604 }
605
606
611 public void setAssetEntryPersistence(
612 AssetEntryPersistence assetEntryPersistence) {
613 this.assetEntryPersistence = assetEntryPersistence;
614 }
615
616
621 public AssetEntryFinder getAssetEntryFinder() {
622 return assetEntryFinder;
623 }
624
625
630 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
631 this.assetEntryFinder = assetEntryFinder;
632 }
633
634
639 public AssetLinkLocalService getAssetLinkLocalService() {
640 return assetLinkLocalService;
641 }
642
643
648 public void setAssetLinkLocalService(
649 AssetLinkLocalService assetLinkLocalService) {
650 this.assetLinkLocalService = assetLinkLocalService;
651 }
652
653
658 public AssetLinkPersistence getAssetLinkPersistence() {
659 return assetLinkPersistence;
660 }
661
662
667 public void setAssetLinkPersistence(
668 AssetLinkPersistence assetLinkPersistence) {
669 this.assetLinkPersistence = assetLinkPersistence;
670 }
671
672
677 public AssetLinkFinder getAssetLinkFinder() {
678 return assetLinkFinder;
679 }
680
681
686 public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
687 this.assetLinkFinder = assetLinkFinder;
688 }
689
690
695 public AssetTagLocalService getAssetTagLocalService() {
696 return assetTagLocalService;
697 }
698
699
704 public void setAssetTagLocalService(
705 AssetTagLocalService assetTagLocalService) {
706 this.assetTagLocalService = assetTagLocalService;
707 }
708
709
714 public AssetTagService getAssetTagService() {
715 return assetTagService;
716 }
717
718
723 public void setAssetTagService(AssetTagService assetTagService) {
724 this.assetTagService = assetTagService;
725 }
726
727
732 public AssetTagPersistence getAssetTagPersistence() {
733 return assetTagPersistence;
734 }
735
736
741 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
742 this.assetTagPersistence = assetTagPersistence;
743 }
744
745
750 public AssetTagFinder getAssetTagFinder() {
751 return assetTagFinder;
752 }
753
754
759 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
760 this.assetTagFinder = assetTagFinder;
761 }
762
763
768 public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
769 return assetTagPropertyLocalService;
770 }
771
772
777 public void setAssetTagPropertyLocalService(
778 AssetTagPropertyLocalService assetTagPropertyLocalService) {
779 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
780 }
781
782
787 public AssetTagPropertyService getAssetTagPropertyService() {
788 return assetTagPropertyService;
789 }
790
791
796 public void setAssetTagPropertyService(
797 AssetTagPropertyService assetTagPropertyService) {
798 this.assetTagPropertyService = assetTagPropertyService;
799 }
800
801
806 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
807 return assetTagPropertyPersistence;
808 }
809
810
815 public void setAssetTagPropertyPersistence(
816 AssetTagPropertyPersistence assetTagPropertyPersistence) {
817 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
818 }
819
820
825 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
826 return assetTagPropertyFinder;
827 }
828
829
834 public void setAssetTagPropertyFinder(
835 AssetTagPropertyFinder assetTagPropertyFinder) {
836 this.assetTagPropertyFinder = assetTagPropertyFinder;
837 }
838
839
844 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
845 return assetTagPropertyKeyFinder;
846 }
847
848
853 public void setAssetTagPropertyKeyFinder(
854 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
855 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
856 }
857
858
863 public AssetTagStatsLocalService getAssetTagStatsLocalService() {
864 return assetTagStatsLocalService;
865 }
866
867
872 public void setAssetTagStatsLocalService(
873 AssetTagStatsLocalService assetTagStatsLocalService) {
874 this.assetTagStatsLocalService = assetTagStatsLocalService;
875 }
876
877
882 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
883 return assetTagStatsPersistence;
884 }
885
886
891 public void setAssetTagStatsPersistence(
892 AssetTagStatsPersistence assetTagStatsPersistence) {
893 this.assetTagStatsPersistence = assetTagStatsPersistence;
894 }
895
896
901 public AssetVocabularyLocalService getAssetVocabularyLocalService() {
902 return assetVocabularyLocalService;
903 }
904
905
910 public void setAssetVocabularyLocalService(
911 AssetVocabularyLocalService assetVocabularyLocalService) {
912 this.assetVocabularyLocalService = assetVocabularyLocalService;
913 }
914
915
920 public AssetVocabularyService getAssetVocabularyService() {
921 return assetVocabularyService;
922 }
923
924
929 public void setAssetVocabularyService(
930 AssetVocabularyService assetVocabularyService) {
931 this.assetVocabularyService = assetVocabularyService;
932 }
933
934
939 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
940 return assetVocabularyPersistence;
941 }
942
943
948 public void setAssetVocabularyPersistence(
949 AssetVocabularyPersistence assetVocabularyPersistence) {
950 this.assetVocabularyPersistence = assetVocabularyPersistence;
951 }
952
953
958 public AssetVocabularyFinder getAssetVocabularyFinder() {
959 return assetVocabularyFinder;
960 }
961
962
967 public void setAssetVocabularyFinder(
968 AssetVocabularyFinder assetVocabularyFinder) {
969 this.assetVocabularyFinder = assetVocabularyFinder;
970 }
971
972
977 public CounterLocalService getCounterLocalService() {
978 return counterLocalService;
979 }
980
981
986 public void setCounterLocalService(CounterLocalService counterLocalService) {
987 this.counterLocalService = counterLocalService;
988 }
989
990
995 public ResourceLocalService getResourceLocalService() {
996 return resourceLocalService;
997 }
998
999
1004 public void setResourceLocalService(
1005 ResourceLocalService resourceLocalService) {
1006 this.resourceLocalService = resourceLocalService;
1007 }
1008
1009
1014 public UserLocalService getUserLocalService() {
1015 return userLocalService;
1016 }
1017
1018
1023 public void setUserLocalService(UserLocalService userLocalService) {
1024 this.userLocalService = userLocalService;
1025 }
1026
1027
1032 public UserService getUserService() {
1033 return userService;
1034 }
1035
1036
1041 public void setUserService(UserService userService) {
1042 this.userService = userService;
1043 }
1044
1045
1050 public UserPersistence getUserPersistence() {
1051 return userPersistence;
1052 }
1053
1054
1059 public void setUserPersistence(UserPersistence userPersistence) {
1060 this.userPersistence = userPersistence;
1061 }
1062
1063
1068 public UserFinder getUserFinder() {
1069 return userFinder;
1070 }
1071
1072
1077 public void setUserFinder(UserFinder userFinder) {
1078 this.userFinder = userFinder;
1079 }
1080
1081 public void afterPropertiesSet() {
1082 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetTag",
1083 assetTagLocalService);
1084 }
1085
1086 public void destroy() {
1087 persistedModelLocalServiceRegistry.unregister(
1088 "com.liferay.portlet.asset.model.AssetTag");
1089 }
1090
1091
1096 public String getBeanIdentifier() {
1097 return _beanIdentifier;
1098 }
1099
1100
1105 public void setBeanIdentifier(String beanIdentifier) {
1106 _beanIdentifier = beanIdentifier;
1107 }
1108
1109 protected Class<?> getModelClass() {
1110 return AssetTag.class;
1111 }
1112
1113 protected String getModelClassName() {
1114 return AssetTag.class.getName();
1115 }
1116
1117
1122 protected void runSQL(String sql) throws SystemException {
1123 try {
1124 DataSource dataSource = assetTagPersistence.getDataSource();
1125
1126 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1127 sql, new int[0]);
1128
1129 sqlUpdate.update();
1130 }
1131 catch (Exception e) {
1132 throw new SystemException(e);
1133 }
1134 }
1135
1136 @BeanReference(type = AssetCategoryLocalService.class)
1137 protected AssetCategoryLocalService assetCategoryLocalService;
1138 @BeanReference(type = AssetCategoryService.class)
1139 protected AssetCategoryService assetCategoryService;
1140 @BeanReference(type = AssetCategoryPersistence.class)
1141 protected AssetCategoryPersistence assetCategoryPersistence;
1142 @BeanReference(type = AssetCategoryFinder.class)
1143 protected AssetCategoryFinder assetCategoryFinder;
1144 @BeanReference(type = AssetCategoryPropertyLocalService.class)
1145 protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1146 @BeanReference(type = AssetCategoryPropertyService.class)
1147 protected AssetCategoryPropertyService assetCategoryPropertyService;
1148 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1149 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1150 @BeanReference(type = AssetCategoryPropertyFinder.class)
1151 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1152 @BeanReference(type = AssetEntryLocalService.class)
1153 protected AssetEntryLocalService assetEntryLocalService;
1154 @BeanReference(type = AssetEntryService.class)
1155 protected AssetEntryService assetEntryService;
1156 @BeanReference(type = AssetEntryPersistence.class)
1157 protected AssetEntryPersistence assetEntryPersistence;
1158 @BeanReference(type = AssetEntryFinder.class)
1159 protected AssetEntryFinder assetEntryFinder;
1160 @BeanReference(type = AssetLinkLocalService.class)
1161 protected AssetLinkLocalService assetLinkLocalService;
1162 @BeanReference(type = AssetLinkPersistence.class)
1163 protected AssetLinkPersistence assetLinkPersistence;
1164 @BeanReference(type = AssetLinkFinder.class)
1165 protected AssetLinkFinder assetLinkFinder;
1166 @BeanReference(type = AssetTagLocalService.class)
1167 protected AssetTagLocalService assetTagLocalService;
1168 @BeanReference(type = AssetTagService.class)
1169 protected AssetTagService assetTagService;
1170 @BeanReference(type = AssetTagPersistence.class)
1171 protected AssetTagPersistence assetTagPersistence;
1172 @BeanReference(type = AssetTagFinder.class)
1173 protected AssetTagFinder assetTagFinder;
1174 @BeanReference(type = AssetTagPropertyLocalService.class)
1175 protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1176 @BeanReference(type = AssetTagPropertyService.class)
1177 protected AssetTagPropertyService assetTagPropertyService;
1178 @BeanReference(type = AssetTagPropertyPersistence.class)
1179 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1180 @BeanReference(type = AssetTagPropertyFinder.class)
1181 protected AssetTagPropertyFinder assetTagPropertyFinder;
1182 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1183 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1184 @BeanReference(type = AssetTagStatsLocalService.class)
1185 protected AssetTagStatsLocalService assetTagStatsLocalService;
1186 @BeanReference(type = AssetTagStatsPersistence.class)
1187 protected AssetTagStatsPersistence assetTagStatsPersistence;
1188 @BeanReference(type = AssetVocabularyLocalService.class)
1189 protected AssetVocabularyLocalService assetVocabularyLocalService;
1190 @BeanReference(type = AssetVocabularyService.class)
1191 protected AssetVocabularyService assetVocabularyService;
1192 @BeanReference(type = AssetVocabularyPersistence.class)
1193 protected AssetVocabularyPersistence assetVocabularyPersistence;
1194 @BeanReference(type = AssetVocabularyFinder.class)
1195 protected AssetVocabularyFinder assetVocabularyFinder;
1196 @BeanReference(type = CounterLocalService.class)
1197 protected CounterLocalService counterLocalService;
1198 @BeanReference(type = ResourceLocalService.class)
1199 protected ResourceLocalService resourceLocalService;
1200 @BeanReference(type = UserLocalService.class)
1201 protected UserLocalService userLocalService;
1202 @BeanReference(type = UserService.class)
1203 protected UserService userService;
1204 @BeanReference(type = UserPersistence.class)
1205 protected UserPersistence userPersistence;
1206 @BeanReference(type = UserFinder.class)
1207 protected UserFinder userFinder;
1208 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1209 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1210 private String _beanIdentifier;
1211 }