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.ResourceService;
035 import com.liferay.portal.service.UserLocalService;
036 import com.liferay.portal.service.UserService;
037 import com.liferay.portal.service.persistence.ResourceFinder;
038 import com.liferay.portal.service.persistence.ResourcePersistence;
039 import com.liferay.portal.service.persistence.UserFinder;
040 import com.liferay.portal.service.persistence.UserPersistence;
041
042 import com.liferay.portlet.asset.model.AssetCategoryProperty;
043 import com.liferay.portlet.asset.service.AssetCategoryLocalService;
044 import com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService;
045 import com.liferay.portlet.asset.service.AssetCategoryPropertyService;
046 import com.liferay.portlet.asset.service.AssetCategoryService;
047 import com.liferay.portlet.asset.service.AssetEntryLocalService;
048 import com.liferay.portlet.asset.service.AssetEntryService;
049 import com.liferay.portlet.asset.service.AssetLinkLocalService;
050 import com.liferay.portlet.asset.service.AssetTagLocalService;
051 import com.liferay.portlet.asset.service.AssetTagPropertyLocalService;
052 import com.liferay.portlet.asset.service.AssetTagPropertyService;
053 import com.liferay.portlet.asset.service.AssetTagService;
054 import com.liferay.portlet.asset.service.AssetTagStatsLocalService;
055 import com.liferay.portlet.asset.service.AssetVocabularyLocalService;
056 import com.liferay.portlet.asset.service.AssetVocabularyService;
057 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
058 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
059 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
060 import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
061 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
062 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
063 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
064 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
065 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
066 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
067 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
068 import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
069 import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
070 import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
071 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
072
073 import java.io.Serializable;
074
075 import java.util.List;
076
077 import javax.sql.DataSource;
078
079
091 public abstract class AssetCategoryPropertyLocalServiceBaseImpl
092 extends BaseLocalServiceImpl implements AssetCategoryPropertyLocalService,
093 IdentifiableBean {
094
099
100
107 @Indexable(type = IndexableType.REINDEX)
108 public AssetCategoryProperty addAssetCategoryProperty(
109 AssetCategoryProperty assetCategoryProperty) throws SystemException {
110 assetCategoryProperty.setNew(true);
111
112 return assetCategoryPropertyPersistence.update(assetCategoryProperty,
113 false);
114 }
115
116
122 public AssetCategoryProperty createAssetCategoryProperty(
123 long categoryPropertyId) {
124 return assetCategoryPropertyPersistence.create(categoryPropertyId);
125 }
126
127
135 @Indexable(type = IndexableType.DELETE)
136 public AssetCategoryProperty deleteAssetCategoryProperty(
137 long categoryPropertyId) throws PortalException, SystemException {
138 return assetCategoryPropertyPersistence.remove(categoryPropertyId);
139 }
140
141
148 @Indexable(type = IndexableType.DELETE)
149 public AssetCategoryProperty deleteAssetCategoryProperty(
150 AssetCategoryProperty assetCategoryProperty) throws SystemException {
151 return assetCategoryPropertyPersistence.remove(assetCategoryProperty);
152 }
153
154 public DynamicQuery dynamicQuery() {
155 Class<?> clazz = getClass();
156
157 return DynamicQueryFactoryUtil.forClass(AssetCategoryProperty.class,
158 clazz.getClassLoader());
159 }
160
161
168 @SuppressWarnings("rawtypes")
169 public List dynamicQuery(DynamicQuery dynamicQuery)
170 throws SystemException {
171 return assetCategoryPropertyPersistence.findWithDynamicQuery(dynamicQuery);
172 }
173
174
187 @SuppressWarnings("rawtypes")
188 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
189 throws SystemException {
190 return assetCategoryPropertyPersistence.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 assetCategoryPropertyPersistence.findWithDynamicQuery(dynamicQuery,
212 start, end, orderByComparator);
213 }
214
215
222 public long dynamicQueryCount(DynamicQuery dynamicQuery)
223 throws SystemException {
224 return assetCategoryPropertyPersistence.countWithDynamicQuery(dynamicQuery);
225 }
226
227 public AssetCategoryProperty fetchAssetCategoryProperty(
228 long categoryPropertyId) throws SystemException {
229 return assetCategoryPropertyPersistence.fetchByPrimaryKey(categoryPropertyId);
230 }
231
232
240 public AssetCategoryProperty getAssetCategoryProperty(
241 long categoryPropertyId) throws PortalException, SystemException {
242 return assetCategoryPropertyPersistence.findByPrimaryKey(categoryPropertyId);
243 }
244
245 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
246 throws PortalException, SystemException {
247 return assetCategoryPropertyPersistence.findByPrimaryKey(primaryKeyObj);
248 }
249
250
262 public List<AssetCategoryProperty> getAssetCategoryProperties(int start,
263 int end) throws SystemException {
264 return assetCategoryPropertyPersistence.findAll(start, end);
265 }
266
267
273 public int getAssetCategoryPropertiesCount() throws SystemException {
274 return assetCategoryPropertyPersistence.countAll();
275 }
276
277
284 @Indexable(type = IndexableType.REINDEX)
285 public AssetCategoryProperty updateAssetCategoryProperty(
286 AssetCategoryProperty assetCategoryProperty) throws SystemException {
287 return updateAssetCategoryProperty(assetCategoryProperty, true);
288 }
289
290
298 @Indexable(type = IndexableType.REINDEX)
299 public AssetCategoryProperty updateAssetCategoryProperty(
300 AssetCategoryProperty assetCategoryProperty, boolean merge)
301 throws SystemException {
302 assetCategoryProperty.setNew(false);
303
304 return assetCategoryPropertyPersistence.update(assetCategoryProperty,
305 merge);
306 }
307
308
313 public AssetCategoryLocalService getAssetCategoryLocalService() {
314 return assetCategoryLocalService;
315 }
316
317
322 public void setAssetCategoryLocalService(
323 AssetCategoryLocalService assetCategoryLocalService) {
324 this.assetCategoryLocalService = assetCategoryLocalService;
325 }
326
327
332 public AssetCategoryService getAssetCategoryService() {
333 return assetCategoryService;
334 }
335
336
341 public void setAssetCategoryService(
342 AssetCategoryService assetCategoryService) {
343 this.assetCategoryService = assetCategoryService;
344 }
345
346
351 public AssetCategoryPersistence getAssetCategoryPersistence() {
352 return assetCategoryPersistence;
353 }
354
355
360 public void setAssetCategoryPersistence(
361 AssetCategoryPersistence assetCategoryPersistence) {
362 this.assetCategoryPersistence = assetCategoryPersistence;
363 }
364
365
370 public AssetCategoryFinder getAssetCategoryFinder() {
371 return assetCategoryFinder;
372 }
373
374
379 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
380 this.assetCategoryFinder = assetCategoryFinder;
381 }
382
383
388 public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
389 return assetCategoryPropertyLocalService;
390 }
391
392
397 public void setAssetCategoryPropertyLocalService(
398 AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
399 this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
400 }
401
402
407 public AssetCategoryPropertyService getAssetCategoryPropertyService() {
408 return assetCategoryPropertyService;
409 }
410
411
416 public void setAssetCategoryPropertyService(
417 AssetCategoryPropertyService assetCategoryPropertyService) {
418 this.assetCategoryPropertyService = assetCategoryPropertyService;
419 }
420
421
426 public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
427 return assetCategoryPropertyPersistence;
428 }
429
430
435 public void setAssetCategoryPropertyPersistence(
436 AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
437 this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
438 }
439
440
445 public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
446 return assetCategoryPropertyFinder;
447 }
448
449
454 public void setAssetCategoryPropertyFinder(
455 AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
456 this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
457 }
458
459
464 public AssetEntryLocalService getAssetEntryLocalService() {
465 return assetEntryLocalService;
466 }
467
468
473 public void setAssetEntryLocalService(
474 AssetEntryLocalService assetEntryLocalService) {
475 this.assetEntryLocalService = assetEntryLocalService;
476 }
477
478
483 public AssetEntryService getAssetEntryService() {
484 return assetEntryService;
485 }
486
487
492 public void setAssetEntryService(AssetEntryService assetEntryService) {
493 this.assetEntryService = assetEntryService;
494 }
495
496
501 public AssetEntryPersistence getAssetEntryPersistence() {
502 return assetEntryPersistence;
503 }
504
505
510 public void setAssetEntryPersistence(
511 AssetEntryPersistence assetEntryPersistence) {
512 this.assetEntryPersistence = assetEntryPersistence;
513 }
514
515
520 public AssetEntryFinder getAssetEntryFinder() {
521 return assetEntryFinder;
522 }
523
524
529 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
530 this.assetEntryFinder = assetEntryFinder;
531 }
532
533
538 public AssetLinkLocalService getAssetLinkLocalService() {
539 return assetLinkLocalService;
540 }
541
542
547 public void setAssetLinkLocalService(
548 AssetLinkLocalService assetLinkLocalService) {
549 this.assetLinkLocalService = assetLinkLocalService;
550 }
551
552
557 public AssetLinkPersistence getAssetLinkPersistence() {
558 return assetLinkPersistence;
559 }
560
561
566 public void setAssetLinkPersistence(
567 AssetLinkPersistence assetLinkPersistence) {
568 this.assetLinkPersistence = assetLinkPersistence;
569 }
570
571
576 public AssetTagLocalService getAssetTagLocalService() {
577 return assetTagLocalService;
578 }
579
580
585 public void setAssetTagLocalService(
586 AssetTagLocalService assetTagLocalService) {
587 this.assetTagLocalService = assetTagLocalService;
588 }
589
590
595 public AssetTagService getAssetTagService() {
596 return assetTagService;
597 }
598
599
604 public void setAssetTagService(AssetTagService assetTagService) {
605 this.assetTagService = assetTagService;
606 }
607
608
613 public AssetTagPersistence getAssetTagPersistence() {
614 return assetTagPersistence;
615 }
616
617
622 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
623 this.assetTagPersistence = assetTagPersistence;
624 }
625
626
631 public AssetTagFinder getAssetTagFinder() {
632 return assetTagFinder;
633 }
634
635
640 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
641 this.assetTagFinder = assetTagFinder;
642 }
643
644
649 public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
650 return assetTagPropertyLocalService;
651 }
652
653
658 public void setAssetTagPropertyLocalService(
659 AssetTagPropertyLocalService assetTagPropertyLocalService) {
660 this.assetTagPropertyLocalService = assetTagPropertyLocalService;
661 }
662
663
668 public AssetTagPropertyService getAssetTagPropertyService() {
669 return assetTagPropertyService;
670 }
671
672
677 public void setAssetTagPropertyService(
678 AssetTagPropertyService assetTagPropertyService) {
679 this.assetTagPropertyService = assetTagPropertyService;
680 }
681
682
687 public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
688 return assetTagPropertyPersistence;
689 }
690
691
696 public void setAssetTagPropertyPersistence(
697 AssetTagPropertyPersistence assetTagPropertyPersistence) {
698 this.assetTagPropertyPersistence = assetTagPropertyPersistence;
699 }
700
701
706 public AssetTagPropertyFinder getAssetTagPropertyFinder() {
707 return assetTagPropertyFinder;
708 }
709
710
715 public void setAssetTagPropertyFinder(
716 AssetTagPropertyFinder assetTagPropertyFinder) {
717 this.assetTagPropertyFinder = assetTagPropertyFinder;
718 }
719
720
725 public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
726 return assetTagPropertyKeyFinder;
727 }
728
729
734 public void setAssetTagPropertyKeyFinder(
735 AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
736 this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
737 }
738
739
744 public AssetTagStatsLocalService getAssetTagStatsLocalService() {
745 return assetTagStatsLocalService;
746 }
747
748
753 public void setAssetTagStatsLocalService(
754 AssetTagStatsLocalService assetTagStatsLocalService) {
755 this.assetTagStatsLocalService = assetTagStatsLocalService;
756 }
757
758
763 public AssetTagStatsPersistence getAssetTagStatsPersistence() {
764 return assetTagStatsPersistence;
765 }
766
767
772 public void setAssetTagStatsPersistence(
773 AssetTagStatsPersistence assetTagStatsPersistence) {
774 this.assetTagStatsPersistence = assetTagStatsPersistence;
775 }
776
777
782 public AssetVocabularyLocalService getAssetVocabularyLocalService() {
783 return assetVocabularyLocalService;
784 }
785
786
791 public void setAssetVocabularyLocalService(
792 AssetVocabularyLocalService assetVocabularyLocalService) {
793 this.assetVocabularyLocalService = assetVocabularyLocalService;
794 }
795
796
801 public AssetVocabularyService getAssetVocabularyService() {
802 return assetVocabularyService;
803 }
804
805
810 public void setAssetVocabularyService(
811 AssetVocabularyService assetVocabularyService) {
812 this.assetVocabularyService = assetVocabularyService;
813 }
814
815
820 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
821 return assetVocabularyPersistence;
822 }
823
824
829 public void setAssetVocabularyPersistence(
830 AssetVocabularyPersistence assetVocabularyPersistence) {
831 this.assetVocabularyPersistence = assetVocabularyPersistence;
832 }
833
834
839 public AssetVocabularyFinder getAssetVocabularyFinder() {
840 return assetVocabularyFinder;
841 }
842
843
848 public void setAssetVocabularyFinder(
849 AssetVocabularyFinder assetVocabularyFinder) {
850 this.assetVocabularyFinder = assetVocabularyFinder;
851 }
852
853
858 public CounterLocalService getCounterLocalService() {
859 return counterLocalService;
860 }
861
862
867 public void setCounterLocalService(CounterLocalService counterLocalService) {
868 this.counterLocalService = counterLocalService;
869 }
870
871
876 public ResourceLocalService getResourceLocalService() {
877 return resourceLocalService;
878 }
879
880
885 public void setResourceLocalService(
886 ResourceLocalService resourceLocalService) {
887 this.resourceLocalService = resourceLocalService;
888 }
889
890
895 public ResourceService getResourceService() {
896 return resourceService;
897 }
898
899
904 public void setResourceService(ResourceService resourceService) {
905 this.resourceService = resourceService;
906 }
907
908
913 public ResourcePersistence getResourcePersistence() {
914 return resourcePersistence;
915 }
916
917
922 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
923 this.resourcePersistence = resourcePersistence;
924 }
925
926
931 public ResourceFinder getResourceFinder() {
932 return resourceFinder;
933 }
934
935
940 public void setResourceFinder(ResourceFinder resourceFinder) {
941 this.resourceFinder = resourceFinder;
942 }
943
944
949 public UserLocalService getUserLocalService() {
950 return userLocalService;
951 }
952
953
958 public void setUserLocalService(UserLocalService userLocalService) {
959 this.userLocalService = userLocalService;
960 }
961
962
967 public UserService getUserService() {
968 return userService;
969 }
970
971
976 public void setUserService(UserService userService) {
977 this.userService = userService;
978 }
979
980
985 public UserPersistence getUserPersistence() {
986 return userPersistence;
987 }
988
989
994 public void setUserPersistence(UserPersistence userPersistence) {
995 this.userPersistence = userPersistence;
996 }
997
998
1003 public UserFinder getUserFinder() {
1004 return userFinder;
1005 }
1006
1007
1012 public void setUserFinder(UserFinder userFinder) {
1013 this.userFinder = userFinder;
1014 }
1015
1016 public void afterPropertiesSet() {
1017 persistedModelLocalServiceRegistry.register("com.liferay.portlet.asset.model.AssetCategoryProperty",
1018 assetCategoryPropertyLocalService);
1019 }
1020
1021 public void destroy() {
1022 persistedModelLocalServiceRegistry.unregister(
1023 "com.liferay.portlet.asset.model.AssetCategoryProperty");
1024 }
1025
1026
1031 public String getBeanIdentifier() {
1032 return _beanIdentifier;
1033 }
1034
1035
1040 public void setBeanIdentifier(String beanIdentifier) {
1041 _beanIdentifier = beanIdentifier;
1042 }
1043
1044 protected Class<?> getModelClass() {
1045 return AssetCategoryProperty.class;
1046 }
1047
1048 protected String getModelClassName() {
1049 return AssetCategoryProperty.class.getName();
1050 }
1051
1052
1057 protected void runSQL(String sql) throws SystemException {
1058 try {
1059 DataSource dataSource = assetCategoryPropertyPersistence.getDataSource();
1060
1061 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1062 sql, new int[0]);
1063
1064 sqlUpdate.update();
1065 }
1066 catch (Exception e) {
1067 throw new SystemException(e);
1068 }
1069 }
1070
1071 @BeanReference(type = AssetCategoryLocalService.class)
1072 protected AssetCategoryLocalService assetCategoryLocalService;
1073 @BeanReference(type = AssetCategoryService.class)
1074 protected AssetCategoryService assetCategoryService;
1075 @BeanReference(type = AssetCategoryPersistence.class)
1076 protected AssetCategoryPersistence assetCategoryPersistence;
1077 @BeanReference(type = AssetCategoryFinder.class)
1078 protected AssetCategoryFinder assetCategoryFinder;
1079 @BeanReference(type = AssetCategoryPropertyLocalService.class)
1080 protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1081 @BeanReference(type = AssetCategoryPropertyService.class)
1082 protected AssetCategoryPropertyService assetCategoryPropertyService;
1083 @BeanReference(type = AssetCategoryPropertyPersistence.class)
1084 protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1085 @BeanReference(type = AssetCategoryPropertyFinder.class)
1086 protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1087 @BeanReference(type = AssetEntryLocalService.class)
1088 protected AssetEntryLocalService assetEntryLocalService;
1089 @BeanReference(type = AssetEntryService.class)
1090 protected AssetEntryService assetEntryService;
1091 @BeanReference(type = AssetEntryPersistence.class)
1092 protected AssetEntryPersistence assetEntryPersistence;
1093 @BeanReference(type = AssetEntryFinder.class)
1094 protected AssetEntryFinder assetEntryFinder;
1095 @BeanReference(type = AssetLinkLocalService.class)
1096 protected AssetLinkLocalService assetLinkLocalService;
1097 @BeanReference(type = AssetLinkPersistence.class)
1098 protected AssetLinkPersistence assetLinkPersistence;
1099 @BeanReference(type = AssetTagLocalService.class)
1100 protected AssetTagLocalService assetTagLocalService;
1101 @BeanReference(type = AssetTagService.class)
1102 protected AssetTagService assetTagService;
1103 @BeanReference(type = AssetTagPersistence.class)
1104 protected AssetTagPersistence assetTagPersistence;
1105 @BeanReference(type = AssetTagFinder.class)
1106 protected AssetTagFinder assetTagFinder;
1107 @BeanReference(type = AssetTagPropertyLocalService.class)
1108 protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1109 @BeanReference(type = AssetTagPropertyService.class)
1110 protected AssetTagPropertyService assetTagPropertyService;
1111 @BeanReference(type = AssetTagPropertyPersistence.class)
1112 protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1113 @BeanReference(type = AssetTagPropertyFinder.class)
1114 protected AssetTagPropertyFinder assetTagPropertyFinder;
1115 @BeanReference(type = AssetTagPropertyKeyFinder.class)
1116 protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1117 @BeanReference(type = AssetTagStatsLocalService.class)
1118 protected AssetTagStatsLocalService assetTagStatsLocalService;
1119 @BeanReference(type = AssetTagStatsPersistence.class)
1120 protected AssetTagStatsPersistence assetTagStatsPersistence;
1121 @BeanReference(type = AssetVocabularyLocalService.class)
1122 protected AssetVocabularyLocalService assetVocabularyLocalService;
1123 @BeanReference(type = AssetVocabularyService.class)
1124 protected AssetVocabularyService assetVocabularyService;
1125 @BeanReference(type = AssetVocabularyPersistence.class)
1126 protected AssetVocabularyPersistence assetVocabularyPersistence;
1127 @BeanReference(type = AssetVocabularyFinder.class)
1128 protected AssetVocabularyFinder assetVocabularyFinder;
1129 @BeanReference(type = CounterLocalService.class)
1130 protected CounterLocalService counterLocalService;
1131 @BeanReference(type = ResourceLocalService.class)
1132 protected ResourceLocalService resourceLocalService;
1133 @BeanReference(type = ResourceService.class)
1134 protected ResourceService resourceService;
1135 @BeanReference(type = ResourcePersistence.class)
1136 protected ResourcePersistence resourcePersistence;
1137 @BeanReference(type = ResourceFinder.class)
1138 protected ResourceFinder resourceFinder;
1139 @BeanReference(type = UserLocalService.class)
1140 protected UserLocalService userLocalService;
1141 @BeanReference(type = UserService.class)
1142 protected UserService userService;
1143 @BeanReference(type = UserPersistence.class)
1144 protected UserPersistence userPersistence;
1145 @BeanReference(type = UserFinder.class)
1146 protected UserFinder userFinder;
1147 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1148 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1149 private String _beanIdentifier;
1150 }