001
014
015 package com.liferay.portlet.asset.service.base;
016
017 import com.liferay.portal.kernel.bean.BeanReference;
018 import com.liferay.portal.kernel.bean.IdentifiableBean;
019 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
020 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
022 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.Projection;
024 import com.liferay.portal.kernel.exception.PortalException;
025 import com.liferay.portal.kernel.exception.SystemException;
026 import com.liferay.portal.kernel.search.Indexable;
027 import com.liferay.portal.kernel.search.IndexableType;
028 import com.liferay.portal.kernel.util.OrderByComparator;
029 import com.liferay.portal.model.PersistedModel;
030 import com.liferay.portal.service.BaseLocalServiceImpl;
031 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
032 import com.liferay.portal.service.persistence.UserFinder;
033 import com.liferay.portal.service.persistence.UserPersistence;
034
035 import com.liferay.portlet.asset.model.AssetTag;
036 import com.liferay.portlet.asset.service.AssetTagLocalService;
037 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
038 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
039 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
040 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
041 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
042 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
043 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
044 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
045 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
046 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
047 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
048 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
049 import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
050 import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
051 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
052
053 import java.io.Serializable;
054
055 import java.util.List;
056
057 import javax.sql.DataSource;
058
059
071 public abstract class AssetTagLocalServiceBaseImpl extends BaseLocalServiceImpl
072 implements AssetTagLocalService, IdentifiableBean {
073
078
079
086 @Indexable(type = IndexableType.REINDEX)
087 @Override
088 public AssetTag addAssetTag(AssetTag assetTag) throws SystemException {
089 assetTag.setNew(true);
090
091 return assetTagPersistence.update(assetTag);
092 }
093
094
100 @Override
101 public AssetTag createAssetTag(long tagId) {
102 return assetTagPersistence.create(tagId);
103 }
104
105
113 @Indexable(type = IndexableType.DELETE)
114 @Override
115 public AssetTag deleteAssetTag(long tagId)
116 throws PortalException, SystemException {
117 return assetTagPersistence.remove(tagId);
118 }
119
120
127 @Indexable(type = IndexableType.DELETE)
128 @Override
129 public AssetTag deleteAssetTag(AssetTag assetTag) throws SystemException {
130 return assetTagPersistence.remove(assetTag);
131 }
132
133 @Override
134 public DynamicQuery dynamicQuery() {
135 Class<?> clazz = getClass();
136
137 return DynamicQueryFactoryUtil.forClass(AssetTag.class,
138 clazz.getClassLoader());
139 }
140
141
148 @Override
149 @SuppressWarnings("rawtypes")
150 public List dynamicQuery(DynamicQuery dynamicQuery)
151 throws SystemException {
152 return assetTagPersistence.findWithDynamicQuery(dynamicQuery);
153 }
154
155
168 @Override
169 @SuppressWarnings("rawtypes")
170 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
171 throws SystemException {
172 return assetTagPersistence.findWithDynamicQuery(dynamicQuery, start, end);
173 }
174
175
189 @Override
190 @SuppressWarnings("rawtypes")
191 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
192 OrderByComparator orderByComparator) throws SystemException {
193 return assetTagPersistence.findWithDynamicQuery(dynamicQuery, start,
194 end, orderByComparator);
195 }
196
197
204 @Override
205 public long dynamicQueryCount(DynamicQuery dynamicQuery)
206 throws SystemException {
207 return assetTagPersistence.countWithDynamicQuery(dynamicQuery);
208 }
209
210
218 @Override
219 public long dynamicQueryCount(DynamicQuery dynamicQuery,
220 Projection projection) throws SystemException {
221 return assetTagPersistence.countWithDynamicQuery(dynamicQuery,
222 projection);
223 }
224
225 @Override
226 public AssetTag fetchAssetTag(long tagId) throws SystemException {
227 return assetTagPersistence.fetchByPrimaryKey(tagId);
228 }
229
230
238 @Override
239 public AssetTag getAssetTag(long tagId)
240 throws PortalException, SystemException {
241 return assetTagPersistence.findByPrimaryKey(tagId);
242 }
243
244 @Override
245 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
246 throws PortalException, SystemException {
247 return assetTagPersistence.findByPrimaryKey(primaryKeyObj);
248 }
249
250
262 @Override
263 public List<AssetTag> getAssetTags(int start, int end)
264 throws SystemException {
265 return assetTagPersistence.findAll(start, end);
266 }
267
268
274 @Override
275 public int getAssetTagsCount() throws SystemException {
276 return assetTagPersistence.countAll();
277 }
278
279
286 @Indexable(type = IndexableType.REINDEX)
287 @Override
288 public AssetTag updateAssetTag(AssetTag assetTag) throws SystemException {
289 return assetTagPersistence.update(assetTag);
290 }
291
292
295 @Override
296 public void addAssetEntryAssetTag(long entryId, long tagId)
297 throws SystemException {
298 assetEntryPersistence.addAssetTag(entryId, tagId);
299 }
300
301
304 @Override
305 public void addAssetEntryAssetTag(long entryId, AssetTag assetTag)
306 throws SystemException {
307 assetEntryPersistence.addAssetTag(entryId, assetTag);
308 }
309
310
313 @Override
314 public void addAssetEntryAssetTags(long entryId, long[] tagIds)
315 throws SystemException {
316 assetEntryPersistence.addAssetTags(entryId, tagIds);
317 }
318
319
322 @Override
323 public void addAssetEntryAssetTags(long entryId, List<AssetTag> AssetTags)
324 throws SystemException {
325 assetEntryPersistence.addAssetTags(entryId, AssetTags);
326 }
327
328
331 @Override
332 public void clearAssetEntryAssetTags(long entryId)
333 throws SystemException {
334 assetEntryPersistence.clearAssetTags(entryId);
335 }
336
337
340 @Override
341 public void deleteAssetEntryAssetTag(long entryId, long tagId)
342 throws SystemException {
343 assetEntryPersistence.removeAssetTag(entryId, tagId);
344 }
345
346
349 @Override
350 public void deleteAssetEntryAssetTag(long entryId, AssetTag assetTag)
351 throws SystemException {
352 assetEntryPersistence.removeAssetTag(entryId, assetTag);
353 }
354
355
358 @Override
359 public void deleteAssetEntryAssetTags(long entryId, long[] tagIds)
360 throws SystemException {
361 assetEntryPersistence.removeAssetTags(entryId, tagIds);
362 }
363
364
367 @Override
368 public void deleteAssetEntryAssetTags(long entryId, List<AssetTag> AssetTags)
369 throws SystemException {
370 assetEntryPersistence.removeAssetTags(entryId, AssetTags);
371 }
372
373
376 @Override
377 public List<AssetTag> getAssetEntryAssetTags(long entryId)
378 throws SystemException {
379 return assetEntryPersistence.getAssetTags(entryId);
380 }
381
382
385 @Override
386 public List<AssetTag> getAssetEntryAssetTags(long entryId, int start,
387 int end) throws SystemException {
388 return assetEntryPersistence.getAssetTags(entryId, start, end);
389 }
390
391
394 @Override
395 public List<AssetTag> getAssetEntryAssetTags(long entryId, int start,
396 int end, OrderByComparator orderByComparator) throws SystemException {
397 return assetEntryPersistence.getAssetTags(entryId, start, end,
398 orderByComparator);
399 }
400
401
404 @Override
405 public int getAssetEntryAssetTagsCount(long entryId)
406 throws SystemException {
407 return assetEntryPersistence.getAssetTagsSize(entryId);
408 }
409
410
413 @Override
414 public boolean hasAssetEntryAssetTag(long entryId, long tagId)
415 throws SystemException {
416 return assetEntryPersistence.containsAssetTag(entryId, tagId);
417 }
418
419
422 @Override
423 public boolean hasAssetEntryAssetTags(long entryId)
424 throws SystemException {
425 return assetEntryPersistence.containsAssetTags(entryId);
426 }
427
428
431 @Override
432 public void setAssetEntryAssetTags(long entryId, long[] tagIds)
433 throws SystemException {
434 assetEntryPersistence.setAssetTags(entryId, tagIds);
435 }
436
437
442 public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
443 return assetCategoryLocalService;
444 }
445
446
451 public void setAssetCategoryLocalService(
452 com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
453 this.assetCategoryLocalService = assetCategoryLocalService;
454 }
455
456
461 public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
462 return assetCategoryService;
463 }
464
465
470 public void setAssetCategoryService(
471 com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
472 this.assetCategoryService = assetCategoryService;
473 }
474
475
480 public AssetCategoryPersistence getAssetCategoryPersistence() {
481 return assetCategoryPersistence;
482 }
483
484
489 public void setAssetCategoryPersistence(
490 AssetCategoryPersistence assetCategoryPersistence) {
491 this.assetCategoryPersistence = assetCategoryPersistence;
492 }
493
494
499 public AssetCategoryFinder getAssetCategoryFinder() {
500 return assetCategoryFinder;
501 }
502
503
508 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
509 this.assetCategoryFinder = assetCategoryFinder;
510 }
511
512
517 public com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
518 return assetCategoryPropertyLocalService;
519 }
520
521
526 public void setAssetCategoryPropertyLocalService(
527 com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
528 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
529 }
530
531
536 public com.liferay.portlet.asset.service.AssetCategoryPropertyService getAssetCategoryPropertyService() {
537 return assetCategoryPropertyService;
538 }
539
540
545 public void setAssetCategoryPropertyService(
546 com.liferay.portlet.asset.service.AssetCategoryPropertyService assetCategoryPropertyService) {
547 this.assetCategoryPropertyService = assetCategoryPropertyService;
548 }
549
550
555 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
556 return assetCategoryPropertyPersistence;
557 }
558
559
564 public void setAssetCategoryPropertyPersistence(
565 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
566 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
567 }
568
569
574 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
575 return assetCategoryPropertyFinder;
576 }
577
578
583 public void setAssetCategoryPropertyFinder(
584 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
585 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
586 }
587
588
593 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
594 return assetEntryLocalService;
595 }
596
597
602 public void setAssetEntryLocalService(
603 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
604 this.assetEntryLocalService = assetEntryLocalService;
605 }
606
607
612 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
613 return assetEntryService;
614 }
615
616
621 public void setAssetEntryService(
622 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
623 this.assetEntryService = assetEntryService;
624 }
625
626
631 public AssetEntryPersistence getAssetEntryPersistence() {
632 return assetEntryPersistence;
633 }
634
635
640 public void setAssetEntryPersistence(
641 AssetEntryPersistence assetEntryPersistence) {
642 this.assetEntryPersistence = assetEntryPersistence;
643 }
644
645
650 public AssetEntryFinder getAssetEntryFinder() {
651 return assetEntryFinder;
652 }
653
654
659 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
660 this.assetEntryFinder = assetEntryFinder;
661 }
662
663
668 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
669 return assetLinkLocalService;
670 }
671
672
677 public void setAssetLinkLocalService(
678 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
679 this.assetLinkLocalService = assetLinkLocalService;
680 }
681
682
687 public AssetLinkPersistence getAssetLinkPersistence() {
688 return assetLinkPersistence;
689 }
690
691
696 public void setAssetLinkPersistence(
697 AssetLinkPersistence assetLinkPersistence) {
698 this.assetLinkPersistence = assetLinkPersistence;
699 }
700
701
706 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
707 return assetTagLocalService;
708 }
709
710
715 public void setAssetTagLocalService(
716 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
717 this.assetTagLocalService = assetTagLocalService;
718 }
719
720
725 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
726 return assetTagService;
727 }
728
729
734 public void setAssetTagService(
735 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
736 this.assetTagService = assetTagService;
737 }
738
739
744 public AssetTagPersistence getAssetTagPersistence() {
745 return assetTagPersistence;
746 }
747
748
753 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
754 this.assetTagPersistence = assetTagPersistence;
755 }
756
757
762 public AssetTagFinder getAssetTagFinder() {
763 return assetTagFinder;
764 }
765
766
771 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
772 this.assetTagFinder = assetTagFinder;
773 }
774
775
780 public com.liferay.portlet.asset.service.AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
781 return assetTagPropertyLocalService;
782 }
783
784
789 public void setAssetTagPropertyLocalService(
790 com.liferay.portlet.asset.service.AssetTagPropertyLocalService assetTagPropertyLocalService) {
791 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
792 }
793
794
799 public com.liferay.portlet.asset.service.AssetTagPropertyService getAssetTagPropertyService() {
800 return assetTagPropertyService;
801 }
802
803
808 public void setAssetTagPropertyService(
809 com.liferay.portlet.asset.service.AssetTagPropertyService assetTagPropertyService) {
810 this.assetTagPropertyService = assetTagPropertyService;
811 }
812
813
818 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
819 return assetTagPropertyPersistence;
820 }
821
822
827 public void setAssetTagPropertyPersistence(
828 AssetTagPropertyPersistence assetTagPropertyPersistence) {
829 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
830 }
831
832
837 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
838 return assetTagPropertyFinder;
839 }
840
841
846 public void setAssetTagPropertyFinder(
847 AssetTagPropertyFinder assetTagPropertyFinder) {
848 this.assetTagPropertyFinder = assetTagPropertyFinder;
849 }
850
851
856 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
857 return assetTagPropertyKeyFinder;
858 }
859
860
865 public void setAssetTagPropertyKeyFinder(
866 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
867 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
868 }
869
870
875 public com.liferay.portlet.asset.service.AssetTagStatsLocalService getAssetTagStatsLocalService() {
876 return assetTagStatsLocalService;
877 }
878
879
884 public void setAssetTagStatsLocalService(
885 com.liferay.portlet.asset.service.AssetTagStatsLocalService assetTagStatsLocalService) {
886 this.assetTagStatsLocalService = assetTagStatsLocalService;
887 }
888
889
894 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
895 return assetTagStatsPersistence;
896 }
897
898
903 public void setAssetTagStatsPersistence(
904 AssetTagStatsPersistence assetTagStatsPersistence) {
905 this.assetTagStatsPersistence = assetTagStatsPersistence;
906 }
907
908
913 public com.liferay.portlet.asset.service.AssetVocabularyLocalService getAssetVocabularyLocalService() {
914 return assetVocabularyLocalService;
915 }
916
917
922 public void setAssetVocabularyLocalService(
923 com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService) {
924 this.assetVocabularyLocalService = assetVocabularyLocalService;
925 }
926
927
932 public com.liferay.portlet.asset.service.AssetVocabularyService getAssetVocabularyService() {
933 return assetVocabularyService;
934 }
935
936
941 public void setAssetVocabularyService(
942 com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService) {
943 this.assetVocabularyService = assetVocabularyService;
944 }
945
946
951 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
952 return assetVocabularyPersistence;
953 }
954
955
960 public void setAssetVocabularyPersistence(
961 AssetVocabularyPersistence assetVocabularyPersistence) {
962 this.assetVocabularyPersistence = assetVocabularyPersistence;
963 }
964
965
970 public AssetVocabularyFinder getAssetVocabularyFinder() {
971 return assetVocabularyFinder;
972 }
973
974
979 public void setAssetVocabularyFinder(
980 AssetVocabularyFinder assetVocabularyFinder) {
981 this.assetVocabularyFinder = assetVocabularyFinder;
982 }
983
984
989 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
990 return counterLocalService;
991 }
992
993
998 public void setCounterLocalService(
999 com.liferay.counter.service.CounterLocalService counterLocalService) {
1000 this.counterLocalService = counterLocalService;
1001 }
1002
1003
1008 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
1009 return resourceLocalService;
1010 }
1011
1012
1017 public void setResourceLocalService(
1018 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
1019 this.resourceLocalService = resourceLocalService;
1020 }
1021
1022
1027 public com.liferay.portal.service.UserLocalService getUserLocalService() {
1028 return userLocalService;
1029 }
1030
1031
1036 public void setUserLocalService(
1037 com.liferay.portal.service.UserLocalService userLocalService) {
1038 this.userLocalService = userLocalService;
1039 }
1040
1041
1046 public com.liferay.portal.service.UserService getUserService() {
1047 return userService;
1048 }
1049
1050
1055 public void setUserService(
1056 com.liferay.portal.service.UserService userService) {
1057 this.userService = userService;
1058 }
1059
1060
1065 public UserPersistence getUserPersistence() {
1066 return userPersistence;
1067 }
1068
1069
1074 public void setUserPersistence(UserPersistence userPersistence) {
1075 this.userPersistence = userPersistence;
1076 }
1077
1078
1083 public UserFinder getUserFinder() {
1084 return userFinder;
1085 }
1086
1087
1092 public void setUserFinder(UserFinder userFinder) {
1093 this.userFinder = userFinder;
1094 }
1095
1096 public void afterPropertiesSet() {
1097 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetTag",
1098 assetTagLocalService);
1099 }
1100
1101 public void destroy() {
1102 persistedModelLocalServiceRegistry.unregister(
1103 "com.liferay.portlet.asset.model.AssetTag");
1104 }
1105
1106
1111 @Override
1112 public String getBeanIdentifier() {
1113 return _beanIdentifier;
1114 }
1115
1116
1121 @Override
1122 public void setBeanIdentifier(String beanIdentifier) {
1123 _beanIdentifier = beanIdentifier;
1124 }
1125
1126 protected Class<?> getModelClass() {
1127 return AssetTag.class;
1128 }
1129
1130 protected String getModelClassName() {
1131 return AssetTag.class.getName();
1132 }
1133
1134
1139 protected void runSQL(String sql) throws SystemException {
1140 try {
1141 DataSource dataSource = assetTagPersistence.getDataSource();
1142
1143 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1144 sql, new int[0]);
1145
1146 sqlUpdate.update();
1147 }
1148 catch (Exception e) {
1149 throw new SystemException(e);
1150 }
1151 }
1152
1153 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
1154 protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
1155 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
1156 protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
1157 @BeanReference(type = AssetCategoryPersistence.class)
1158 protected AssetCategoryPersistence assetCategoryPersistence;
1159 @BeanReference(type = AssetCategoryFinder.class)
1160 protected AssetCategoryFinder assetCategoryFinder;
1161 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService.class)
1162 protected com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1163 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryPropertyService.class)
1164 protected com.liferay.portlet.asset.service.AssetCategoryPropertyService assetCategoryPropertyService;
1165 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1166 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1167 @BeanReference(type = AssetCategoryPropertyFinder.class)
1168 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1169 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1170 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1171 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1172 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1173 @BeanReference(type = AssetEntryPersistence.class)
1174 protected AssetEntryPersistence assetEntryPersistence;
1175 @BeanReference(type = AssetEntryFinder.class)
1176 protected AssetEntryFinder assetEntryFinder;
1177 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1178 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1179 @BeanReference(type = AssetLinkPersistence.class)
1180 protected AssetLinkPersistence assetLinkPersistence;
1181 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1182 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1183 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1184 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1185 @BeanReference(type = AssetTagPersistence.class)
1186 protected AssetTagPersistence assetTagPersistence;
1187 @BeanReference(type = AssetTagFinder.class)
1188 protected AssetTagFinder assetTagFinder;
1189 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagPropertyLocalService.class)
1190 protected com.liferay.portlet.asset.service.AssetTagPropertyLocalService assetTagPropertyLocalService;
1191 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagPropertyService.class)
1192 protected com.liferay.portlet.asset.service.AssetTagPropertyService assetTagPropertyService;
1193 @BeanReference(type = AssetTagPropertyPersistence.class)
1194 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1195 @BeanReference(type = AssetTagPropertyFinder.class)
1196 protected AssetTagPropertyFinder assetTagPropertyFinder;
1197 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1198 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1199 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagStatsLocalService.class)
1200 protected com.liferay.portlet.asset.service.AssetTagStatsLocalService assetTagStatsLocalService;
1201 @BeanReference(type = AssetTagStatsPersistence.class)
1202 protected AssetTagStatsPersistence assetTagStatsPersistence;
1203 @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyLocalService.class)
1204 protected com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService;
1205 @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyService.class)
1206 protected com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService;
1207 @BeanReference(type = AssetVocabularyPersistence.class)
1208 protected AssetVocabularyPersistence assetVocabularyPersistence;
1209 @BeanReference(type = AssetVocabularyFinder.class)
1210 protected AssetVocabularyFinder assetVocabularyFinder;
1211 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1212 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1213 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1214 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1215 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1216 protected com.liferay.portal.service.UserLocalService userLocalService;
1217 @BeanReference(type = com.liferay.portal.service.UserService.class)
1218 protected com.liferay.portal.service.UserService userService;
1219 @BeanReference(type = UserPersistence.class)
1220 protected UserPersistence userPersistence;
1221 @BeanReference(type = UserFinder.class)
1222 protected UserFinder userFinder;
1223 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1224 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1225 private String _beanIdentifier;
1226 }