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.GroupLocalService;
033 import com.liferay.portal.service.GroupService;
034 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
035 import com.liferay.portal.service.ResourceLocalService;
036 import com.liferay.portal.service.UserLocalService;
037 import com.liferay.portal.service.UserService;
038 import com.liferay.portal.service.persistence.GroupFinder;
039 import com.liferay.portal.service.persistence.GroupPersistence;
040 import com.liferay.portal.service.persistence.UserFinder;
041 import com.liferay.portal.service.persistence.UserPersistence;
042
043 import com.liferay.portlet.asset.model.AssetVocabulary;
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.AssetLinkFinder;
065 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
066 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
067 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
068 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
069 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
070 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
071 import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
072 import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
073 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
074
075 import java.io.Serializable;
076
077 import java.util.List;
078
079 import javax.sql.DataSource;
080
081
093 public abstract class AssetVocabularyLocalServiceBaseImpl
094 extends BaseLocalServiceImpl implements AssetVocabularyLocalService,
095 IdentifiableBean {
096
101
102
109 @Indexable(type = IndexableType.REINDEX)
110 public AssetVocabulary addAssetVocabulary(AssetVocabulary assetVocabulary)
111 throws SystemException {
112 assetVocabulary.setNew(true);
113
114 return assetVocabularyPersistence.update(assetVocabulary);
115 }
116
117
123 public AssetVocabulary createAssetVocabulary(long vocabularyId) {
124 return assetVocabularyPersistence.create(vocabularyId);
125 }
126
127
135 @Indexable(type = IndexableType.DELETE)
136 public AssetVocabulary deleteAssetVocabulary(long vocabularyId)
137 throws PortalException, SystemException {
138 return assetVocabularyPersistence.remove(vocabularyId);
139 }
140
141
148 @Indexable(type = IndexableType.DELETE)
149 public AssetVocabulary deleteAssetVocabulary(
150 AssetVocabulary assetVocabulary) throws SystemException {
151 return assetVocabularyPersistence.remove(assetVocabulary);
152 }
153
154 public DynamicQuery dynamicQuery() {
155 Class<?> clazz = getClass();
156
157 return DynamicQueryFactoryUtil.forClass(AssetVocabulary.class,
158 clazz.getClassLoader());
159 }
160
161
168 @SuppressWarnings("rawtypes")
169 public List dynamicQuery(DynamicQuery dynamicQuery)
170 throws SystemException {
171 return assetVocabularyPersistence.findWithDynamicQuery(dynamicQuery);
172 }
173
174
187 @SuppressWarnings("rawtypes")
188 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
189 throws SystemException {
190 return assetVocabularyPersistence.findWithDynamicQuery(dynamicQuery,
191 start, end);
192 }
193
194
208 @SuppressWarnings("rawtypes")
209 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
210 OrderByComparator orderByComparator) throws SystemException {
211 return assetVocabularyPersistence.findWithDynamicQuery(dynamicQuery,
212 start, end, orderByComparator);
213 }
214
215
222 public long dynamicQueryCount(DynamicQuery dynamicQuery)
223 throws SystemException {
224 return assetVocabularyPersistence.countWithDynamicQuery(dynamicQuery);
225 }
226
227 public AssetVocabulary fetchAssetVocabulary(long vocabularyId)
228 throws SystemException {
229 return assetVocabularyPersistence.fetchByPrimaryKey(vocabularyId);
230 }
231
232
240 public AssetVocabulary getAssetVocabulary(long vocabularyId)
241 throws PortalException, SystemException {
242 return assetVocabularyPersistence.findByPrimaryKey(vocabularyId);
243 }
244
245 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
246 throws PortalException, SystemException {
247 return assetVocabularyPersistence.findByPrimaryKey(primaryKeyObj);
248 }
249
250
259 public AssetVocabulary getAssetVocabularyByUuidAndGroupId(String uuid,
260 long groupId) throws PortalException, SystemException {
261 return assetVocabularyPersistence.findByUUID_G(uuid, groupId);
262 }
263
264
276 public List<AssetVocabulary> getAssetVocabularies(int start, int end)
277 throws SystemException {
278 return assetVocabularyPersistence.findAll(start, end);
279 }
280
281
287 public int getAssetVocabulariesCount() throws SystemException {
288 return assetVocabularyPersistence.countAll();
289 }
290
291
298 @Indexable(type = IndexableType.REINDEX)
299 public AssetVocabulary updateAssetVocabulary(
300 AssetVocabulary assetVocabulary) throws SystemException {
301 return assetVocabularyPersistence.update(assetVocabulary);
302 }
303
304
309 public AssetCategoryLocalService getAssetCategoryLocalService() {
310 return assetCategoryLocalService;
311 }
312
313
318 public void setAssetCategoryLocalService(
319 AssetCategoryLocalService assetCategoryLocalService) {
320 this.assetCategoryLocalService = assetCategoryLocalService;
321 }
322
323
328 public AssetCategoryService getAssetCategoryService() {
329 return assetCategoryService;
330 }
331
332
337 public void setAssetCategoryService(
338 AssetCategoryService assetCategoryService) {
339 this.assetCategoryService = assetCategoryService;
340 }
341
342
347 public AssetCategoryPersistence getAssetCategoryPersistence() {
348 return assetCategoryPersistence;
349 }
350
351
356 public void setAssetCategoryPersistence(
357 AssetCategoryPersistence assetCategoryPersistence) {
358 this.assetCategoryPersistence = assetCategoryPersistence;
359 }
360
361
366 public AssetCategoryFinder getAssetCategoryFinder() {
367 return assetCategoryFinder;
368 }
369
370
375 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
376 this.assetCategoryFinder = assetCategoryFinder;
377 }
378
379
384 public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
385 return assetCategoryPropertyLocalService;
386 }
387
388
393 public void setAssetCategoryPropertyLocalService(
394 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
395 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
396 }
397
398
403 public AssetCategoryPropertyService getAssetCategoryPropertyService() {
404 return assetCategoryPropertyService;
405 }
406
407
412 public void setAssetCategoryPropertyService(
413 AssetCategoryPropertyService assetCategoryPropertyService) {
414 this.assetCategoryPropertyService = assetCategoryPropertyService;
415 }
416
417
422 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
423 return assetCategoryPropertyPersistence;
424 }
425
426
431 public void setAssetCategoryPropertyPersistence(
432 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
433 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
434 }
435
436
441 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
442 return assetCategoryPropertyFinder;
443 }
444
445
450 public void setAssetCategoryPropertyFinder(
451 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
452 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
453 }
454
455
460 public AssetEntryLocalService getAssetEntryLocalService() {
461 return assetEntryLocalService;
462 }
463
464
469 public void setAssetEntryLocalService(
470 AssetEntryLocalService assetEntryLocalService) {
471 this.assetEntryLocalService = assetEntryLocalService;
472 }
473
474
479 public AssetEntryService getAssetEntryService() {
480 return assetEntryService;
481 }
482
483
488 public void setAssetEntryService(AssetEntryService assetEntryService) {
489 this.assetEntryService = assetEntryService;
490 }
491
492
497 public AssetEntryPersistence getAssetEntryPersistence() {
498 return assetEntryPersistence;
499 }
500
501
506 public void setAssetEntryPersistence(
507 AssetEntryPersistence assetEntryPersistence) {
508 this.assetEntryPersistence = assetEntryPersistence;
509 }
510
511
516 public AssetEntryFinder getAssetEntryFinder() {
517 return assetEntryFinder;
518 }
519
520
525 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
526 this.assetEntryFinder = assetEntryFinder;
527 }
528
529
534 public AssetLinkLocalService getAssetLinkLocalService() {
535 return assetLinkLocalService;
536 }
537
538
543 public void setAssetLinkLocalService(
544 AssetLinkLocalService assetLinkLocalService) {
545 this.assetLinkLocalService = assetLinkLocalService;
546 }
547
548
553 public AssetLinkPersistence getAssetLinkPersistence() {
554 return assetLinkPersistence;
555 }
556
557
562 public void setAssetLinkPersistence(
563 AssetLinkPersistence assetLinkPersistence) {
564 this.assetLinkPersistence = assetLinkPersistence;
565 }
566
567
572 public AssetLinkFinder getAssetLinkFinder() {
573 return assetLinkFinder;
574 }
575
576
581 public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
582 this.assetLinkFinder = assetLinkFinder;
583 }
584
585
590 public AssetTagLocalService getAssetTagLocalService() {
591 return assetTagLocalService;
592 }
593
594
599 public void setAssetTagLocalService(
600 AssetTagLocalService assetTagLocalService) {
601 this.assetTagLocalService = assetTagLocalService;
602 }
603
604
609 public AssetTagService getAssetTagService() {
610 return assetTagService;
611 }
612
613
618 public void setAssetTagService(AssetTagService assetTagService) {
619 this.assetTagService = assetTagService;
620 }
621
622
627 public AssetTagPersistence getAssetTagPersistence() {
628 return assetTagPersistence;
629 }
630
631
636 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
637 this.assetTagPersistence = assetTagPersistence;
638 }
639
640
645 public AssetTagFinder getAssetTagFinder() {
646 return assetTagFinder;
647 }
648
649
654 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
655 this.assetTagFinder = assetTagFinder;
656 }
657
658
663 public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
664 return assetTagPropertyLocalService;
665 }
666
667
672 public void setAssetTagPropertyLocalService(
673 AssetTagPropertyLocalService assetTagPropertyLocalService) {
674 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
675 }
676
677
682 public AssetTagPropertyService getAssetTagPropertyService() {
683 return assetTagPropertyService;
684 }
685
686
691 public void setAssetTagPropertyService(
692 AssetTagPropertyService assetTagPropertyService) {
693 this.assetTagPropertyService = assetTagPropertyService;
694 }
695
696
701 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
702 return assetTagPropertyPersistence;
703 }
704
705
710 public void setAssetTagPropertyPersistence(
711 AssetTagPropertyPersistence assetTagPropertyPersistence) {
712 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
713 }
714
715
720 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
721 return assetTagPropertyFinder;
722 }
723
724
729 public void setAssetTagPropertyFinder(
730 AssetTagPropertyFinder assetTagPropertyFinder) {
731 this.assetTagPropertyFinder = assetTagPropertyFinder;
732 }
733
734
739 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
740 return assetTagPropertyKeyFinder;
741 }
742
743
748 public void setAssetTagPropertyKeyFinder(
749 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
750 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
751 }
752
753
758 public AssetTagStatsLocalService getAssetTagStatsLocalService() {
759 return assetTagStatsLocalService;
760 }
761
762
767 public void setAssetTagStatsLocalService(
768 AssetTagStatsLocalService assetTagStatsLocalService) {
769 this.assetTagStatsLocalService = assetTagStatsLocalService;
770 }
771
772
777 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
778 return assetTagStatsPersistence;
779 }
780
781
786 public void setAssetTagStatsPersistence(
787 AssetTagStatsPersistence assetTagStatsPersistence) {
788 this.assetTagStatsPersistence = assetTagStatsPersistence;
789 }
790
791
796 public AssetVocabularyLocalService getAssetVocabularyLocalService() {
797 return assetVocabularyLocalService;
798 }
799
800
805 public void setAssetVocabularyLocalService(
806 AssetVocabularyLocalService assetVocabularyLocalService) {
807 this.assetVocabularyLocalService = assetVocabularyLocalService;
808 }
809
810
815 public AssetVocabularyService getAssetVocabularyService() {
816 return assetVocabularyService;
817 }
818
819
824 public void setAssetVocabularyService(
825 AssetVocabularyService assetVocabularyService) {
826 this.assetVocabularyService = assetVocabularyService;
827 }
828
829
834 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
835 return assetVocabularyPersistence;
836 }
837
838
843 public void setAssetVocabularyPersistence(
844 AssetVocabularyPersistence assetVocabularyPersistence) {
845 this.assetVocabularyPersistence = assetVocabularyPersistence;
846 }
847
848
853 public AssetVocabularyFinder getAssetVocabularyFinder() {
854 return assetVocabularyFinder;
855 }
856
857
862 public void setAssetVocabularyFinder(
863 AssetVocabularyFinder assetVocabularyFinder) {
864 this.assetVocabularyFinder = assetVocabularyFinder;
865 }
866
867
872 public CounterLocalService getCounterLocalService() {
873 return counterLocalService;
874 }
875
876
881 public void setCounterLocalService(CounterLocalService counterLocalService) {
882 this.counterLocalService = counterLocalService;
883 }
884
885
890 public GroupLocalService getGroupLocalService() {
891 return groupLocalService;
892 }
893
894
899 public void setGroupLocalService(GroupLocalService groupLocalService) {
900 this.groupLocalService = groupLocalService;
901 }
902
903
908 public GroupService getGroupService() {
909 return groupService;
910 }
911
912
917 public void setGroupService(GroupService groupService) {
918 this.groupService = groupService;
919 }
920
921
926 public GroupPersistence getGroupPersistence() {
927 return groupPersistence;
928 }
929
930
935 public void setGroupPersistence(GroupPersistence groupPersistence) {
936 this.groupPersistence = groupPersistence;
937 }
938
939
944 public GroupFinder getGroupFinder() {
945 return groupFinder;
946 }
947
948
953 public void setGroupFinder(GroupFinder groupFinder) {
954 this.groupFinder = groupFinder;
955 }
956
957
962 public ResourceLocalService getResourceLocalService() {
963 return resourceLocalService;
964 }
965
966
971 public void setResourceLocalService(
972 ResourceLocalService resourceLocalService) {
973 this.resourceLocalService = resourceLocalService;
974 }
975
976
981 public UserLocalService getUserLocalService() {
982 return userLocalService;
983 }
984
985
990 public void setUserLocalService(UserLocalService userLocalService) {
991 this.userLocalService = userLocalService;
992 }
993
994
999 public UserService getUserService() {
1000 return userService;
1001 }
1002
1003
1008 public void setUserService(UserService userService) {
1009 this.userService = userService;
1010 }
1011
1012
1017 public UserPersistence getUserPersistence() {
1018 return userPersistence;
1019 }
1020
1021
1026 public void setUserPersistence(UserPersistence userPersistence) {
1027 this.userPersistence = userPersistence;
1028 }
1029
1030
1035 public UserFinder getUserFinder() {
1036 return userFinder;
1037 }
1038
1039
1044 public void setUserFinder(UserFinder userFinder) {
1045 this.userFinder = userFinder;
1046 }
1047
1048 public void afterPropertiesSet() {
1049 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetVocabulary",
1050 assetVocabularyLocalService);
1051 }
1052
1053 public void destroy() {
1054 persistedModelLocalServiceRegistry.unregister(
1055 "com.liferay.portlet.asset.model.AssetVocabulary");
1056 }
1057
1058
1063 public String getBeanIdentifier() {
1064 return _beanIdentifier;
1065 }
1066
1067
1072 public void setBeanIdentifier(String beanIdentifier) {
1073 _beanIdentifier = beanIdentifier;
1074 }
1075
1076 protected Class<?> getModelClass() {
1077 return AssetVocabulary.class;
1078 }
1079
1080 protected String getModelClassName() {
1081 return AssetVocabulary.class.getName();
1082 }
1083
1084
1089 protected void runSQL(String sql) throws SystemException {
1090 try {
1091 DataSource dataSource = assetVocabularyPersistence.getDataSource();
1092
1093 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1094 sql, new int[0]);
1095
1096 sqlUpdate.update();
1097 }
1098 catch (Exception e) {
1099 throw new SystemException(e);
1100 }
1101 }
1102
1103 @BeanReference(type = AssetCategoryLocalService.class)
1104 protected AssetCategoryLocalService assetCategoryLocalService;
1105 @BeanReference(type = AssetCategoryService.class)
1106 protected AssetCategoryService assetCategoryService;
1107 @BeanReference(type = AssetCategoryPersistence.class)
1108 protected AssetCategoryPersistence assetCategoryPersistence;
1109 @BeanReference(type = AssetCategoryFinder.class)
1110 protected AssetCategoryFinder assetCategoryFinder;
1111 @BeanReference(type = AssetCategoryPropertyLocalService.class)
1112 protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1113 @BeanReference(type = AssetCategoryPropertyService.class)
1114 protected AssetCategoryPropertyService assetCategoryPropertyService;
1115 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1116 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1117 @BeanReference(type = AssetCategoryPropertyFinder.class)
1118 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1119 @BeanReference(type = AssetEntryLocalService.class)
1120 protected AssetEntryLocalService assetEntryLocalService;
1121 @BeanReference(type = AssetEntryService.class)
1122 protected AssetEntryService assetEntryService;
1123 @BeanReference(type = AssetEntryPersistence.class)
1124 protected AssetEntryPersistence assetEntryPersistence;
1125 @BeanReference(type = AssetEntryFinder.class)
1126 protected AssetEntryFinder assetEntryFinder;
1127 @BeanReference(type = AssetLinkLocalService.class)
1128 protected AssetLinkLocalService assetLinkLocalService;
1129 @BeanReference(type = AssetLinkPersistence.class)
1130 protected AssetLinkPersistence assetLinkPersistence;
1131 @BeanReference(type = AssetLinkFinder.class)
1132 protected AssetLinkFinder assetLinkFinder;
1133 @BeanReference(type = AssetTagLocalService.class)
1134 protected AssetTagLocalService assetTagLocalService;
1135 @BeanReference(type = AssetTagService.class)
1136 protected AssetTagService assetTagService;
1137 @BeanReference(type = AssetTagPersistence.class)
1138 protected AssetTagPersistence assetTagPersistence;
1139 @BeanReference(type = AssetTagFinder.class)
1140 protected AssetTagFinder assetTagFinder;
1141 @BeanReference(type = AssetTagPropertyLocalService.class)
1142 protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1143 @BeanReference(type = AssetTagPropertyService.class)
1144 protected AssetTagPropertyService assetTagPropertyService;
1145 @BeanReference(type = AssetTagPropertyPersistence.class)
1146 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1147 @BeanReference(type = AssetTagPropertyFinder.class)
1148 protected AssetTagPropertyFinder assetTagPropertyFinder;
1149 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1150 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1151 @BeanReference(type = AssetTagStatsLocalService.class)
1152 protected AssetTagStatsLocalService assetTagStatsLocalService;
1153 @BeanReference(type = AssetTagStatsPersistence.class)
1154 protected AssetTagStatsPersistence assetTagStatsPersistence;
1155 @BeanReference(type = AssetVocabularyLocalService.class)
1156 protected AssetVocabularyLocalService assetVocabularyLocalService;
1157 @BeanReference(type = AssetVocabularyService.class)
1158 protected AssetVocabularyService assetVocabularyService;
1159 @BeanReference(type = AssetVocabularyPersistence.class)
1160 protected AssetVocabularyPersistence assetVocabularyPersistence;
1161 @BeanReference(type = AssetVocabularyFinder.class)
1162 protected AssetVocabularyFinder assetVocabularyFinder;
1163 @BeanReference(type = CounterLocalService.class)
1164 protected CounterLocalService counterLocalService;
1165 @BeanReference(type = GroupLocalService.class)
1166 protected GroupLocalService groupLocalService;
1167 @BeanReference(type = GroupService.class)
1168 protected GroupService groupService;
1169 @BeanReference(type = GroupPersistence.class)
1170 protected GroupPersistence groupPersistence;
1171 @BeanReference(type = GroupFinder.class)
1172 protected GroupFinder groupFinder;
1173 @BeanReference(type = ResourceLocalService.class)
1174 protected ResourceLocalService resourceLocalService;
1175 @BeanReference(type = UserLocalService.class)
1176 protected UserLocalService userLocalService;
1177 @BeanReference(type = UserService.class)
1178 protected UserService userService;
1179 @BeanReference(type = UserPersistence.class)
1180 protected UserPersistence userPersistence;
1181 @BeanReference(type = UserFinder.class)
1182 protected UserFinder userFinder;
1183 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1184 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1185 private String _beanIdentifier;
1186 }