001
014
015 package com.liferay.portal.service.base;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.dao.db.DB;
021 import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
022 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
023 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
024 import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery;
025 import com.liferay.portal.kernel.dao.orm.DefaultActionableDynamicQuery;
026 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
027 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
028 import com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery;
029 import com.liferay.portal.kernel.dao.orm.Projection;
030 import com.liferay.portal.kernel.exception.PortalException;
031 import com.liferay.portal.kernel.exception.SystemException;
032 import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService;
033 import com.liferay.portal.kernel.search.Indexable;
034 import com.liferay.portal.kernel.search.IndexableType;
035 import com.liferay.portal.kernel.util.OrderByComparator;
036 import com.liferay.portal.model.PersistedModel;
037 import com.liferay.portal.model.User;
038 import com.liferay.portal.service.BaseLocalServiceImpl;
039 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
040 import com.liferay.portal.service.UserLocalService;
041 import com.liferay.portal.service.persistence.BrowserTrackerPersistence;
042 import com.liferay.portal.service.persistence.CompanyPersistence;
043 import com.liferay.portal.service.persistence.ContactPersistence;
044 import com.liferay.portal.service.persistence.GroupFinder;
045 import com.liferay.portal.service.persistence.GroupPersistence;
046 import com.liferay.portal.service.persistence.ImagePersistence;
047 import com.liferay.portal.service.persistence.LayoutFinder;
048 import com.liferay.portal.service.persistence.LayoutPersistence;
049 import com.liferay.portal.service.persistence.MembershipRequestPersistence;
050 import com.liferay.portal.service.persistence.OrganizationFinder;
051 import com.liferay.portal.service.persistence.OrganizationPersistence;
052 import com.liferay.portal.service.persistence.PasswordPolicyFinder;
053 import com.liferay.portal.service.persistence.PasswordPolicyPersistence;
054 import com.liferay.portal.service.persistence.PasswordPolicyRelPersistence;
055 import com.liferay.portal.service.persistence.PasswordTrackerPersistence;
056 import com.liferay.portal.service.persistence.RoleFinder;
057 import com.liferay.portal.service.persistence.RolePersistence;
058 import com.liferay.portal.service.persistence.SubscriptionPersistence;
059 import com.liferay.portal.service.persistence.TeamFinder;
060 import com.liferay.portal.service.persistence.TeamPersistence;
061 import com.liferay.portal.service.persistence.TicketPersistence;
062 import com.liferay.portal.service.persistence.UserFinder;
063 import com.liferay.portal.service.persistence.UserGroupFinder;
064 import com.liferay.portal.service.persistence.UserGroupPersistence;
065 import com.liferay.portal.service.persistence.UserGroupRoleFinder;
066 import com.liferay.portal.service.persistence.UserGroupRolePersistence;
067 import com.liferay.portal.service.persistence.UserIdMapperPersistence;
068 import com.liferay.portal.service.persistence.UserPersistence;
069 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
070 import com.liferay.portal.util.PortalUtil;
071
072 import com.liferay.portlet.announcements.service.persistence.AnnouncementsDeliveryPersistence;
073 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
074 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
075 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
076 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
077 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
078 import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
079 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
080 import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
081 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
082 import com.liferay.portlet.exportimport.lar.ExportImportHelperUtil;
083 import com.liferay.portlet.exportimport.lar.ManifestSummary;
084 import com.liferay.portlet.exportimport.lar.PortletDataContext;
085 import com.liferay.portlet.exportimport.lar.StagedModelDataHandlerUtil;
086 import com.liferay.portlet.exportimport.lar.StagedModelType;
087 import com.liferay.portlet.messageboards.service.persistence.MBBanPersistence;
088 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
089 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
090 import com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence;
091 import com.liferay.portlet.messageboards.service.persistence.MBThreadFlagPersistence;
092 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
093 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
094 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
095 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
096 import com.liferay.portlet.social.service.persistence.SocialRelationPersistence;
097 import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
098
099 import java.io.Serializable;
100
101 import java.util.List;
102
103 import javax.sql.DataSource;
104
105
117 @ProviderType
118 public abstract class UserLocalServiceBaseImpl extends BaseLocalServiceImpl
119 implements UserLocalService, IdentifiableOSGiService {
120
125
126
132 @Indexable(type = IndexableType.REINDEX)
133 @Override
134 public User addUser(User user) {
135 user.setNew(true);
136
137 return userPersistence.update(user);
138 }
139
140
146 @Override
147 public User createUser(long userId) {
148 return userPersistence.create(userId);
149 }
150
151
158 @Indexable(type = IndexableType.DELETE)
159 @Override
160 public User deleteUser(long userId) throws PortalException {
161 return userPersistence.remove(userId);
162 }
163
164
171 @Indexable(type = IndexableType.DELETE)
172 @Override
173 public User deleteUser(User user) throws PortalException {
174 return userPersistence.remove(user);
175 }
176
177 @Override
178 public DynamicQuery dynamicQuery() {
179 Class<?> clazz = getClass();
180
181 return DynamicQueryFactoryUtil.forClass(User.class,
182 clazz.getClassLoader());
183 }
184
185
191 @Override
192 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) {
193 return userPersistence.findWithDynamicQuery(dynamicQuery);
194 }
195
196
208 @Override
209 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
210 int end) {
211 return userPersistence.findWithDynamicQuery(dynamicQuery, start, end);
212 }
213
214
227 @Override
228 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
229 int end, OrderByComparator<T> orderByComparator) {
230 return userPersistence.findWithDynamicQuery(dynamicQuery, start, end,
231 orderByComparator);
232 }
233
234
240 @Override
241 public long dynamicQueryCount(DynamicQuery dynamicQuery) {
242 return userPersistence.countWithDynamicQuery(dynamicQuery);
243 }
244
245
252 @Override
253 public long dynamicQueryCount(DynamicQuery dynamicQuery,
254 Projection projection) {
255 return userPersistence.countWithDynamicQuery(dynamicQuery, projection);
256 }
257
258 @Override
259 public User fetchUser(long userId) {
260 return userPersistence.fetchByPrimaryKey(userId);
261 }
262
263
270 @Override
271 public User fetchUserByUuidAndCompanyId(String uuid, long companyId) {
272 return userPersistence.fetchByUuid_C_First(uuid, companyId, null);
273 }
274
275
282 @Override
283 public User getUser(long userId) throws PortalException {
284 return userPersistence.findByPrimaryKey(userId);
285 }
286
287 @Override
288 public ActionableDynamicQuery getActionableDynamicQuery() {
289 ActionableDynamicQuery actionableDynamicQuery = new DefaultActionableDynamicQuery();
290
291 actionableDynamicQuery.setBaseLocalService(com.liferay.portal.service.UserLocalServiceUtil.getService());
292 actionableDynamicQuery.setClass(User.class);
293 actionableDynamicQuery.setClassLoader(getClassLoader());
294
295 actionableDynamicQuery.setPrimaryKeyPropertyName("userId");
296
297 return actionableDynamicQuery;
298 }
299
300 protected void initActionableDynamicQuery(
301 ActionableDynamicQuery actionableDynamicQuery) {
302 actionableDynamicQuery.setBaseLocalService(com.liferay.portal.service.UserLocalServiceUtil.getService());
303 actionableDynamicQuery.setClass(User.class);
304 actionableDynamicQuery.setClassLoader(getClassLoader());
305
306 actionableDynamicQuery.setPrimaryKeyPropertyName("userId");
307 }
308
309 @Override
310 public ExportActionableDynamicQuery getExportActionableDynamicQuery(
311 final PortletDataContext portletDataContext) {
312 final ExportActionableDynamicQuery exportActionableDynamicQuery = new ExportActionableDynamicQuery() {
313 @Override
314 public long performCount() throws PortalException {
315 ManifestSummary manifestSummary = portletDataContext.getManifestSummary();
316
317 StagedModelType stagedModelType = getStagedModelType();
318
319 long modelAdditionCount = super.performCount();
320
321 manifestSummary.addModelAdditionCount(stagedModelType,
322 modelAdditionCount);
323
324 long modelDeletionCount = ExportImportHelperUtil.getModelDeletionCount(portletDataContext,
325 stagedModelType);
326
327 manifestSummary.addModelDeletionCount(stagedModelType,
328 modelDeletionCount);
329
330 return modelAdditionCount;
331 }
332 };
333
334 initActionableDynamicQuery(exportActionableDynamicQuery);
335
336 exportActionableDynamicQuery.setAddCriteriaMethod(new ActionableDynamicQuery.AddCriteriaMethod() {
337 @Override
338 public void addCriteria(DynamicQuery dynamicQuery) {
339 portletDataContext.addDateRangeCriteria(dynamicQuery,
340 "modifiedDate");
341 }
342 });
343
344 exportActionableDynamicQuery.setCompanyId(portletDataContext.getCompanyId());
345
346 exportActionableDynamicQuery.setPerformActionMethod(new ActionableDynamicQuery.PerformActionMethod<User>() {
347 @Override
348 public void performAction(User user) throws PortalException {
349 StagedModelDataHandlerUtil.exportStagedModel(portletDataContext,
350 user);
351 }
352 });
353 exportActionableDynamicQuery.setStagedModelType(new StagedModelType(
354 PortalUtil.getClassNameId(User.class.getName())));
355
356 return exportActionableDynamicQuery;
357 }
358
359
362 @Override
363 public PersistedModel deletePersistedModel(PersistedModel persistedModel)
364 throws PortalException {
365 return userLocalService.deleteUser((User)persistedModel);
366 }
367
368 @Override
369 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
370 throws PortalException {
371 return userPersistence.findByPrimaryKey(primaryKeyObj);
372 }
373
374
382 @Override
383 public User getUserByUuidAndCompanyId(String uuid, long companyId)
384 throws PortalException {
385 return userPersistence.findByUuid_C_First(uuid, companyId, null);
386 }
387
388
399 @Override
400 public List<User> getUsers(int start, int end) {
401 return userPersistence.findAll(start, end);
402 }
403
404
409 @Override
410 public int getUsersCount() {
411 return userPersistence.countAll();
412 }
413
414
420 @Indexable(type = IndexableType.REINDEX)
421 @Override
422 public User updateUser(User user) {
423 return userPersistence.update(user);
424 }
425
426
428 @Override
429 public void addGroupUser(long groupId, long userId) {
430 groupPersistence.addUser(groupId, userId);
431 }
432
433
435 @Override
436 public void addGroupUser(long groupId, User user) {
437 groupPersistence.addUser(groupId, user);
438 }
439
440
443 @Override
444 public void addGroupUsers(long groupId, long[] userIds)
445 throws PortalException {
446 groupPersistence.addUsers(groupId, userIds);
447 }
448
449
452 @Override
453 public void addGroupUsers(long groupId, List<User> Users)
454 throws PortalException {
455 groupPersistence.addUsers(groupId, Users);
456 }
457
458
460 @Override
461 public void clearGroupUsers(long groupId) {
462 groupPersistence.clearUsers(groupId);
463 }
464
465
467 @Override
468 public void deleteGroupUser(long groupId, long userId) {
469 groupPersistence.removeUser(groupId, userId);
470 }
471
472
474 @Override
475 public void deleteGroupUser(long groupId, User user) {
476 groupPersistence.removeUser(groupId, user);
477 }
478
479
481 @Override
482 public void deleteGroupUsers(long groupId, long[] userIds) {
483 groupPersistence.removeUsers(groupId, userIds);
484 }
485
486
488 @Override
489 public void deleteGroupUsers(long groupId, List<User> Users) {
490 groupPersistence.removeUsers(groupId, Users);
491 }
492
493
499 @Override
500 public long[] getGroupPrimaryKeys(long userId) {
501 return userPersistence.getGroupPrimaryKeys(userId);
502 }
503
504
506 @Override
507 public List<User> getGroupUsers(long groupId) {
508 return groupPersistence.getUsers(groupId);
509 }
510
511
513 @Override
514 public List<User> getGroupUsers(long groupId, int start, int end) {
515 return groupPersistence.getUsers(groupId, start, end);
516 }
517
518
520 @Override
521 public List<User> getGroupUsers(long groupId, int start, int end,
522 OrderByComparator<User> orderByComparator) {
523 return groupPersistence.getUsers(groupId, start, end, orderByComparator);
524 }
525
526
528 @Override
529 public int getGroupUsersCount(long groupId) {
530 return groupPersistence.getUsersSize(groupId);
531 }
532
533
535 @Override
536 public boolean hasGroupUser(long groupId, long userId) {
537 return groupPersistence.containsUser(groupId, userId);
538 }
539
540
542 @Override
543 public boolean hasGroupUsers(long groupId) {
544 return groupPersistence.containsUsers(groupId);
545 }
546
547
549 @Override
550 public void setGroupUsers(long groupId, long[] userIds) {
551 groupPersistence.setUsers(groupId, userIds);
552 }
553
554
556 @Override
557 public void addOrganizationUser(long organizationId, long userId) {
558 organizationPersistence.addUser(organizationId, userId);
559 }
560
561
563 @Override
564 public void addOrganizationUser(long organizationId, User user) {
565 organizationPersistence.addUser(organizationId, user);
566 }
567
568
571 @Override
572 public void addOrganizationUsers(long organizationId, long[] userIds)
573 throws PortalException {
574 organizationPersistence.addUsers(organizationId, userIds);
575 }
576
577
580 @Override
581 public void addOrganizationUsers(long organizationId, List<User> Users)
582 throws PortalException {
583 organizationPersistence.addUsers(organizationId, Users);
584 }
585
586
588 @Override
589 public void clearOrganizationUsers(long organizationId) {
590 organizationPersistence.clearUsers(organizationId);
591 }
592
593
595 @Override
596 public void deleteOrganizationUser(long organizationId, long userId) {
597 organizationPersistence.removeUser(organizationId, userId);
598 }
599
600
602 @Override
603 public void deleteOrganizationUser(long organizationId, User user) {
604 organizationPersistence.removeUser(organizationId, user);
605 }
606
607
609 @Override
610 public void deleteOrganizationUsers(long organizationId, long[] userIds) {
611 organizationPersistence.removeUsers(organizationId, userIds);
612 }
613
614
616 @Override
617 public void deleteOrganizationUsers(long organizationId, List<User> Users) {
618 organizationPersistence.removeUsers(organizationId, Users);
619 }
620
621
627 @Override
628 public long[] getOrganizationPrimaryKeys(long userId) {
629 return userPersistence.getOrganizationPrimaryKeys(userId);
630 }
631
632
634 @Override
635 public List<User> getOrganizationUsers(long organizationId) {
636 return organizationPersistence.getUsers(organizationId);
637 }
638
639
641 @Override
642 public List<User> getOrganizationUsers(long organizationId, int start,
643 int end) {
644 return organizationPersistence.getUsers(organizationId, start, end);
645 }
646
647
649 @Override
650 public List<User> getOrganizationUsers(long organizationId, int start,
651 int end, OrderByComparator<User> orderByComparator) {
652 return organizationPersistence.getUsers(organizationId, start, end,
653 orderByComparator);
654 }
655
656
658 @Override
659 public int getOrganizationUsersCount(long organizationId) {
660 return organizationPersistence.getUsersSize(organizationId);
661 }
662
663
665 @Override
666 public boolean hasOrganizationUser(long organizationId, long userId) {
667 return organizationPersistence.containsUser(organizationId, userId);
668 }
669
670
672 @Override
673 public boolean hasOrganizationUsers(long organizationId) {
674 return organizationPersistence.containsUsers(organizationId);
675 }
676
677
679 @Override
680 public void setOrganizationUsers(long organizationId, long[] userIds) {
681 organizationPersistence.setUsers(organizationId, userIds);
682 }
683
684
686 @Override
687 public void addRoleUser(long roleId, long userId) {
688 rolePersistence.addUser(roleId, userId);
689 }
690
691
693 @Override
694 public void addRoleUser(long roleId, User user) {
695 rolePersistence.addUser(roleId, user);
696 }
697
698
701 @Override
702 public void addRoleUsers(long roleId, long[] userIds)
703 throws PortalException {
704 rolePersistence.addUsers(roleId, userIds);
705 }
706
707
710 @Override
711 public void addRoleUsers(long roleId, List<User> Users)
712 throws PortalException {
713 rolePersistence.addUsers(roleId, Users);
714 }
715
716
718 @Override
719 public void clearRoleUsers(long roleId) {
720 rolePersistence.clearUsers(roleId);
721 }
722
723
726 @Override
727 public void deleteRoleUser(long roleId, long userId)
728 throws PortalException {
729 rolePersistence.removeUser(roleId, userId);
730 }
731
732
735 @Override
736 public void deleteRoleUser(long roleId, User user)
737 throws PortalException {
738 rolePersistence.removeUser(roleId, user);
739 }
740
741
743 @Override
744 public void deleteRoleUsers(long roleId, long[] userIds) {
745 rolePersistence.removeUsers(roleId, userIds);
746 }
747
748
750 @Override
751 public void deleteRoleUsers(long roleId, List<User> Users) {
752 rolePersistence.removeUsers(roleId, Users);
753 }
754
755
761 @Override
762 public long[] getRolePrimaryKeys(long userId) {
763 return userPersistence.getRolePrimaryKeys(userId);
764 }
765
766
768 @Override
769 public List<User> getRoleUsers(long roleId) {
770 return rolePersistence.getUsers(roleId);
771 }
772
773
775 @Override
776 public List<User> getRoleUsers(long roleId, int start, int end) {
777 return rolePersistence.getUsers(roleId, start, end);
778 }
779
780
782 @Override
783 public List<User> getRoleUsers(long roleId, int start, int end,
784 OrderByComparator<User> orderByComparator) {
785 return rolePersistence.getUsers(roleId, start, end, orderByComparator);
786 }
787
788
790 @Override
791 public int getRoleUsersCount(long roleId) {
792 return rolePersistence.getUsersSize(roleId);
793 }
794
795
797 @Override
798 public boolean hasRoleUser(long roleId, long userId) {
799 return rolePersistence.containsUser(roleId, userId);
800 }
801
802
804 @Override
805 public boolean hasRoleUsers(long roleId) {
806 return rolePersistence.containsUsers(roleId);
807 }
808
809
812 @Override
813 public void setRoleUsers(long roleId, long[] userIds)
814 throws PortalException {
815 rolePersistence.setUsers(roleId, userIds);
816 }
817
818
820 @Override
821 public void addTeamUser(long teamId, long userId) {
822 teamPersistence.addUser(teamId, userId);
823 }
824
825
827 @Override
828 public void addTeamUser(long teamId, User user) {
829 teamPersistence.addUser(teamId, user);
830 }
831
832
835 @Override
836 public void addTeamUsers(long teamId, long[] userIds)
837 throws PortalException {
838 teamPersistence.addUsers(teamId, userIds);
839 }
840
841
844 @Override
845 public void addTeamUsers(long teamId, List<User> Users)
846 throws PortalException {
847 teamPersistence.addUsers(teamId, Users);
848 }
849
850
852 @Override
853 public void clearTeamUsers(long teamId) {
854 teamPersistence.clearUsers(teamId);
855 }
856
857
859 @Override
860 public void deleteTeamUser(long teamId, long userId) {
861 teamPersistence.removeUser(teamId, userId);
862 }
863
864
866 @Override
867 public void deleteTeamUser(long teamId, User user) {
868 teamPersistence.removeUser(teamId, user);
869 }
870
871
873 @Override
874 public void deleteTeamUsers(long teamId, long[] userIds) {
875 teamPersistence.removeUsers(teamId, userIds);
876 }
877
878
880 @Override
881 public void deleteTeamUsers(long teamId, List<User> Users) {
882 teamPersistence.removeUsers(teamId, Users);
883 }
884
885
891 @Override
892 public long[] getTeamPrimaryKeys(long userId) {
893 return userPersistence.getTeamPrimaryKeys(userId);
894 }
895
896
898 @Override
899 public List<User> getTeamUsers(long teamId) {
900 return teamPersistence.getUsers(teamId);
901 }
902
903
905 @Override
906 public List<User> getTeamUsers(long teamId, int start, int end) {
907 return teamPersistence.getUsers(teamId, start, end);
908 }
909
910
912 @Override
913 public List<User> getTeamUsers(long teamId, int start, int end,
914 OrderByComparator<User> orderByComparator) {
915 return teamPersistence.getUsers(teamId, start, end, orderByComparator);
916 }
917
918
920 @Override
921 public int getTeamUsersCount(long teamId) {
922 return teamPersistence.getUsersSize(teamId);
923 }
924
925
927 @Override
928 public boolean hasTeamUser(long teamId, long userId) {
929 return teamPersistence.containsUser(teamId, userId);
930 }
931
932
934 @Override
935 public boolean hasTeamUsers(long teamId) {
936 return teamPersistence.containsUsers(teamId);
937 }
938
939
941 @Override
942 public void setTeamUsers(long teamId, long[] userIds) {
943 teamPersistence.setUsers(teamId, userIds);
944 }
945
946
948 @Override
949 public void addUserGroupUser(long userGroupId, long userId) {
950 userGroupPersistence.addUser(userGroupId, userId);
951 }
952
953
955 @Override
956 public void addUserGroupUser(long userGroupId, User user) {
957 userGroupPersistence.addUser(userGroupId, user);
958 }
959
960
963 @Override
964 public void addUserGroupUsers(long userGroupId, long[] userIds)
965 throws PortalException {
966 userGroupPersistence.addUsers(userGroupId, userIds);
967 }
968
969
972 @Override
973 public void addUserGroupUsers(long userGroupId, List<User> Users)
974 throws PortalException {
975 userGroupPersistence.addUsers(userGroupId, Users);
976 }
977
978
980 @Override
981 public void clearUserGroupUsers(long userGroupId) {
982 userGroupPersistence.clearUsers(userGroupId);
983 }
984
985
988 @Override
989 public void deleteUserGroupUser(long userGroupId, long userId)
990 throws PortalException {
991 userGroupPersistence.removeUser(userGroupId, userId);
992 }
993
994
997 @Override
998 public void deleteUserGroupUser(long userGroupId, User user)
999 throws PortalException {
1000 userGroupPersistence.removeUser(userGroupId, user);
1001 }
1002
1003
1005 @Override
1006 public void deleteUserGroupUsers(long userGroupId, long[] userIds) {
1007 userGroupPersistence.removeUsers(userGroupId, userIds);
1008 }
1009
1010
1012 @Override
1013 public void deleteUserGroupUsers(long userGroupId, List<User> Users) {
1014 userGroupPersistence.removeUsers(userGroupId, Users);
1015 }
1016
1017
1023 @Override
1024 public long[] getUserGroupPrimaryKeys(long userId) {
1025 return userPersistence.getUserGroupPrimaryKeys(userId);
1026 }
1027
1028
1030 @Override
1031 public List<User> getUserGroupUsers(long userGroupId) {
1032 return userGroupPersistence.getUsers(userGroupId);
1033 }
1034
1035
1037 @Override
1038 public List<User> getUserGroupUsers(long userGroupId, int start, int end) {
1039 return userGroupPersistence.getUsers(userGroupId, start, end);
1040 }
1041
1042
1044 @Override
1045 public List<User> getUserGroupUsers(long userGroupId, int start, int end,
1046 OrderByComparator<User> orderByComparator) {
1047 return userGroupPersistence.getUsers(userGroupId, start, end,
1048 orderByComparator);
1049 }
1050
1051
1053 @Override
1054 public int getUserGroupUsersCount(long userGroupId) {
1055 return userGroupPersistence.getUsersSize(userGroupId);
1056 }
1057
1058
1060 @Override
1061 public boolean hasUserGroupUser(long userGroupId, long userId) {
1062 return userGroupPersistence.containsUser(userGroupId, userId);
1063 }
1064
1065
1067 @Override
1068 public boolean hasUserGroupUsers(long userGroupId) {
1069 return userGroupPersistence.containsUsers(userGroupId);
1070 }
1071
1072
1075 @Override
1076 public void setUserGroupUsers(long userGroupId, long[] userIds)
1077 throws PortalException {
1078 userGroupPersistence.setUsers(userGroupId, userIds);
1079 }
1080
1081
1086 public UserLocalService getUserLocalService() {
1087 return userLocalService;
1088 }
1089
1090
1095 public void setUserLocalService(UserLocalService userLocalService) {
1096 this.userLocalService = userLocalService;
1097 }
1098
1099
1104 public com.liferay.portal.service.UserService getUserService() {
1105 return userService;
1106 }
1107
1108
1113 public void setUserService(
1114 com.liferay.portal.service.UserService userService) {
1115 this.userService = userService;
1116 }
1117
1118
1123 public UserPersistence getUserPersistence() {
1124 return userPersistence;
1125 }
1126
1127
1132 public void setUserPersistence(UserPersistence userPersistence) {
1133 this.userPersistence = userPersistence;
1134 }
1135
1136
1141 public UserFinder getUserFinder() {
1142 return userFinder;
1143 }
1144
1145
1150 public void setUserFinder(UserFinder userFinder) {
1151 this.userFinder = userFinder;
1152 }
1153
1154
1159 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
1160 return counterLocalService;
1161 }
1162
1163
1168 public void setCounterLocalService(
1169 com.liferay.counter.service.CounterLocalService counterLocalService) {
1170 this.counterLocalService = counterLocalService;
1171 }
1172
1173
1178 public com.liferay.mail.service.MailService getMailService() {
1179 return mailService;
1180 }
1181
1182
1187 public void setMailService(com.liferay.mail.service.MailService mailService) {
1188 this.mailService = mailService;
1189 }
1190
1191
1196 public com.liferay.portal.service.BrowserTrackerLocalService getBrowserTrackerLocalService() {
1197 return browserTrackerLocalService;
1198 }
1199
1200
1205 public void setBrowserTrackerLocalService(
1206 com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService) {
1207 this.browserTrackerLocalService = browserTrackerLocalService;
1208 }
1209
1210
1215 public BrowserTrackerPersistence getBrowserTrackerPersistence() {
1216 return browserTrackerPersistence;
1217 }
1218
1219
1224 public void setBrowserTrackerPersistence(
1225 BrowserTrackerPersistence browserTrackerPersistence) {
1226 this.browserTrackerPersistence = browserTrackerPersistence;
1227 }
1228
1229
1234 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
1235 return companyLocalService;
1236 }
1237
1238
1243 public void setCompanyLocalService(
1244 com.liferay.portal.service.CompanyLocalService companyLocalService) {
1245 this.companyLocalService = companyLocalService;
1246 }
1247
1248
1253 public com.liferay.portal.service.CompanyService getCompanyService() {
1254 return companyService;
1255 }
1256
1257
1262 public void setCompanyService(
1263 com.liferay.portal.service.CompanyService companyService) {
1264 this.companyService = companyService;
1265 }
1266
1267
1272 public CompanyPersistence getCompanyPersistence() {
1273 return companyPersistence;
1274 }
1275
1276
1281 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
1282 this.companyPersistence = companyPersistence;
1283 }
1284
1285
1290 public com.liferay.portal.service.ContactLocalService getContactLocalService() {
1291 return contactLocalService;
1292 }
1293
1294
1299 public void setContactLocalService(
1300 com.liferay.portal.service.ContactLocalService contactLocalService) {
1301 this.contactLocalService = contactLocalService;
1302 }
1303
1304
1309 public com.liferay.portal.service.ContactService getContactService() {
1310 return contactService;
1311 }
1312
1313
1318 public void setContactService(
1319 com.liferay.portal.service.ContactService contactService) {
1320 this.contactService = contactService;
1321 }
1322
1323
1328 public ContactPersistence getContactPersistence() {
1329 return contactPersistence;
1330 }
1331
1332
1337 public void setContactPersistence(ContactPersistence contactPersistence) {
1338 this.contactPersistence = contactPersistence;
1339 }
1340
1341
1346 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
1347 return groupLocalService;
1348 }
1349
1350
1355 public void setGroupLocalService(
1356 com.liferay.portal.service.GroupLocalService groupLocalService) {
1357 this.groupLocalService = groupLocalService;
1358 }
1359
1360
1365 public com.liferay.portal.service.GroupService getGroupService() {
1366 return groupService;
1367 }
1368
1369
1374 public void setGroupService(
1375 com.liferay.portal.service.GroupService groupService) {
1376 this.groupService = groupService;
1377 }
1378
1379
1384 public GroupPersistence getGroupPersistence() {
1385 return groupPersistence;
1386 }
1387
1388
1393 public void setGroupPersistence(GroupPersistence groupPersistence) {
1394 this.groupPersistence = groupPersistence;
1395 }
1396
1397
1402 public GroupFinder getGroupFinder() {
1403 return groupFinder;
1404 }
1405
1406
1411 public void setGroupFinder(GroupFinder groupFinder) {
1412 this.groupFinder = groupFinder;
1413 }
1414
1415
1420 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
1421 return imageLocalService;
1422 }
1423
1424
1429 public void setImageLocalService(
1430 com.liferay.portal.service.ImageLocalService imageLocalService) {
1431 this.imageLocalService = imageLocalService;
1432 }
1433
1434
1439 public com.liferay.portal.service.ImageService getImageService() {
1440 return imageService;
1441 }
1442
1443
1448 public void setImageService(
1449 com.liferay.portal.service.ImageService imageService) {
1450 this.imageService = imageService;
1451 }
1452
1453
1458 public ImagePersistence getImagePersistence() {
1459 return imagePersistence;
1460 }
1461
1462
1467 public void setImagePersistence(ImagePersistence imagePersistence) {
1468 this.imagePersistence = imagePersistence;
1469 }
1470
1471
1476 public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
1477 return layoutLocalService;
1478 }
1479
1480
1485 public void setLayoutLocalService(
1486 com.liferay.portal.service.LayoutLocalService layoutLocalService) {
1487 this.layoutLocalService = layoutLocalService;
1488 }
1489
1490
1495 public com.liferay.portal.service.LayoutService getLayoutService() {
1496 return layoutService;
1497 }
1498
1499
1504 public void setLayoutService(
1505 com.liferay.portal.service.LayoutService layoutService) {
1506 this.layoutService = layoutService;
1507 }
1508
1509
1514 public LayoutPersistence getLayoutPersistence() {
1515 return layoutPersistence;
1516 }
1517
1518
1523 public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
1524 this.layoutPersistence = layoutPersistence;
1525 }
1526
1527
1532 public LayoutFinder getLayoutFinder() {
1533 return layoutFinder;
1534 }
1535
1536
1541 public void setLayoutFinder(LayoutFinder layoutFinder) {
1542 this.layoutFinder = layoutFinder;
1543 }
1544
1545
1550 public com.liferay.portal.service.MembershipRequestLocalService getMembershipRequestLocalService() {
1551 return membershipRequestLocalService;
1552 }
1553
1554
1559 public void setMembershipRequestLocalService(
1560 com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService) {
1561 this.membershipRequestLocalService = membershipRequestLocalService;
1562 }
1563
1564
1569 public com.liferay.portal.service.MembershipRequestService getMembershipRequestService() {
1570 return membershipRequestService;
1571 }
1572
1573
1578 public void setMembershipRequestService(
1579 com.liferay.portal.service.MembershipRequestService membershipRequestService) {
1580 this.membershipRequestService = membershipRequestService;
1581 }
1582
1583
1588 public MembershipRequestPersistence getMembershipRequestPersistence() {
1589 return membershipRequestPersistence;
1590 }
1591
1592
1597 public void setMembershipRequestPersistence(
1598 MembershipRequestPersistence membershipRequestPersistence) {
1599 this.membershipRequestPersistence = membershipRequestPersistence;
1600 }
1601
1602
1607 public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
1608 return organizationLocalService;
1609 }
1610
1611
1616 public void setOrganizationLocalService(
1617 com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
1618 this.organizationLocalService = organizationLocalService;
1619 }
1620
1621
1626 public com.liferay.portal.service.OrganizationService getOrganizationService() {
1627 return organizationService;
1628 }
1629
1630
1635 public void setOrganizationService(
1636 com.liferay.portal.service.OrganizationService organizationService) {
1637 this.organizationService = organizationService;
1638 }
1639
1640
1645 public OrganizationPersistence getOrganizationPersistence() {
1646 return organizationPersistence;
1647 }
1648
1649
1654 public void setOrganizationPersistence(
1655 OrganizationPersistence organizationPersistence) {
1656 this.organizationPersistence = organizationPersistence;
1657 }
1658
1659
1664 public OrganizationFinder getOrganizationFinder() {
1665 return organizationFinder;
1666 }
1667
1668
1673 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
1674 this.organizationFinder = organizationFinder;
1675 }
1676
1677
1682 public com.liferay.portal.service.PasswordPolicyLocalService getPasswordPolicyLocalService() {
1683 return passwordPolicyLocalService;
1684 }
1685
1686
1691 public void setPasswordPolicyLocalService(
1692 com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService) {
1693 this.passwordPolicyLocalService = passwordPolicyLocalService;
1694 }
1695
1696
1701 public com.liferay.portal.service.PasswordPolicyService getPasswordPolicyService() {
1702 return passwordPolicyService;
1703 }
1704
1705
1710 public void setPasswordPolicyService(
1711 com.liferay.portal.service.PasswordPolicyService passwordPolicyService) {
1712 this.passwordPolicyService = passwordPolicyService;
1713 }
1714
1715
1720 public PasswordPolicyPersistence getPasswordPolicyPersistence() {
1721 return passwordPolicyPersistence;
1722 }
1723
1724
1729 public void setPasswordPolicyPersistence(
1730 PasswordPolicyPersistence passwordPolicyPersistence) {
1731 this.passwordPolicyPersistence = passwordPolicyPersistence;
1732 }
1733
1734
1739 public PasswordPolicyFinder getPasswordPolicyFinder() {
1740 return passwordPolicyFinder;
1741 }
1742
1743
1748 public void setPasswordPolicyFinder(
1749 PasswordPolicyFinder passwordPolicyFinder) {
1750 this.passwordPolicyFinder = passwordPolicyFinder;
1751 }
1752
1753
1758 public com.liferay.portal.service.PasswordPolicyRelLocalService getPasswordPolicyRelLocalService() {
1759 return passwordPolicyRelLocalService;
1760 }
1761
1762
1767 public void setPasswordPolicyRelLocalService(
1768 com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService) {
1769 this.passwordPolicyRelLocalService = passwordPolicyRelLocalService;
1770 }
1771
1772
1777 public PasswordPolicyRelPersistence getPasswordPolicyRelPersistence() {
1778 return passwordPolicyRelPersistence;
1779 }
1780
1781
1786 public void setPasswordPolicyRelPersistence(
1787 PasswordPolicyRelPersistence passwordPolicyRelPersistence) {
1788 this.passwordPolicyRelPersistence = passwordPolicyRelPersistence;
1789 }
1790
1791
1796 public com.liferay.portal.service.PasswordTrackerLocalService getPasswordTrackerLocalService() {
1797 return passwordTrackerLocalService;
1798 }
1799
1800
1805 public void setPasswordTrackerLocalService(
1806 com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService) {
1807 this.passwordTrackerLocalService = passwordTrackerLocalService;
1808 }
1809
1810
1815 public PasswordTrackerPersistence getPasswordTrackerPersistence() {
1816 return passwordTrackerPersistence;
1817 }
1818
1819
1824 public void setPasswordTrackerPersistence(
1825 PasswordTrackerPersistence passwordTrackerPersistence) {
1826 this.passwordTrackerPersistence = passwordTrackerPersistence;
1827 }
1828
1829
1834 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
1835 return resourceLocalService;
1836 }
1837
1838
1843 public void setResourceLocalService(
1844 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
1845 this.resourceLocalService = resourceLocalService;
1846 }
1847
1848
1853 public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
1854 return roleLocalService;
1855 }
1856
1857
1862 public void setRoleLocalService(
1863 com.liferay.portal.service.RoleLocalService roleLocalService) {
1864 this.roleLocalService = roleLocalService;
1865 }
1866
1867
1872 public com.liferay.portal.service.RoleService getRoleService() {
1873 return roleService;
1874 }
1875
1876
1881 public void setRoleService(
1882 com.liferay.portal.service.RoleService roleService) {
1883 this.roleService = roleService;
1884 }
1885
1886
1891 public RolePersistence getRolePersistence() {
1892 return rolePersistence;
1893 }
1894
1895
1900 public void setRolePersistence(RolePersistence rolePersistence) {
1901 this.rolePersistence = rolePersistence;
1902 }
1903
1904
1909 public RoleFinder getRoleFinder() {
1910 return roleFinder;
1911 }
1912
1913
1918 public void setRoleFinder(RoleFinder roleFinder) {
1919 this.roleFinder = roleFinder;
1920 }
1921
1922
1927 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
1928 return subscriptionLocalService;
1929 }
1930
1931
1936 public void setSubscriptionLocalService(
1937 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
1938 this.subscriptionLocalService = subscriptionLocalService;
1939 }
1940
1941
1946 public SubscriptionPersistence getSubscriptionPersistence() {
1947 return subscriptionPersistence;
1948 }
1949
1950
1955 public void setSubscriptionPersistence(
1956 SubscriptionPersistence subscriptionPersistence) {
1957 this.subscriptionPersistence = subscriptionPersistence;
1958 }
1959
1960
1965 public com.liferay.portal.service.TeamLocalService getTeamLocalService() {
1966 return teamLocalService;
1967 }
1968
1969
1974 public void setTeamLocalService(
1975 com.liferay.portal.service.TeamLocalService teamLocalService) {
1976 this.teamLocalService = teamLocalService;
1977 }
1978
1979
1984 public com.liferay.portal.service.TeamService getTeamService() {
1985 return teamService;
1986 }
1987
1988
1993 public void setTeamService(
1994 com.liferay.portal.service.TeamService teamService) {
1995 this.teamService = teamService;
1996 }
1997
1998
2003 public TeamPersistence getTeamPersistence() {
2004 return teamPersistence;
2005 }
2006
2007
2012 public void setTeamPersistence(TeamPersistence teamPersistence) {
2013 this.teamPersistence = teamPersistence;
2014 }
2015
2016
2021 public TeamFinder getTeamFinder() {
2022 return teamFinder;
2023 }
2024
2025
2030 public void setTeamFinder(TeamFinder teamFinder) {
2031 this.teamFinder = teamFinder;
2032 }
2033
2034
2039 public com.liferay.portal.service.TicketLocalService getTicketLocalService() {
2040 return ticketLocalService;
2041 }
2042
2043
2048 public void setTicketLocalService(
2049 com.liferay.portal.service.TicketLocalService ticketLocalService) {
2050 this.ticketLocalService = ticketLocalService;
2051 }
2052
2053
2058 public TicketPersistence getTicketPersistence() {
2059 return ticketPersistence;
2060 }
2061
2062
2067 public void setTicketPersistence(TicketPersistence ticketPersistence) {
2068 this.ticketPersistence = ticketPersistence;
2069 }
2070
2071
2076 public com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService getAnnouncementsDeliveryLocalService() {
2077 return announcementsDeliveryLocalService;
2078 }
2079
2080
2085 public void setAnnouncementsDeliveryLocalService(
2086 com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService announcementsDeliveryLocalService) {
2087 this.announcementsDeliveryLocalService = announcementsDeliveryLocalService;
2088 }
2089
2090
2095 public com.liferay.portlet.announcements.service.AnnouncementsDeliveryService getAnnouncementsDeliveryService() {
2096 return announcementsDeliveryService;
2097 }
2098
2099
2104 public void setAnnouncementsDeliveryService(
2105 com.liferay.portlet.announcements.service.AnnouncementsDeliveryService announcementsDeliveryService) {
2106 this.announcementsDeliveryService = announcementsDeliveryService;
2107 }
2108
2109
2114 public AnnouncementsDeliveryPersistence getAnnouncementsDeliveryPersistence() {
2115 return announcementsDeliveryPersistence;
2116 }
2117
2118
2123 public void setAnnouncementsDeliveryPersistence(
2124 AnnouncementsDeliveryPersistence announcementsDeliveryPersistence) {
2125 this.announcementsDeliveryPersistence = announcementsDeliveryPersistence;
2126 }
2127
2128
2133 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
2134 return assetEntryLocalService;
2135 }
2136
2137
2142 public void setAssetEntryLocalService(
2143 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
2144 this.assetEntryLocalService = assetEntryLocalService;
2145 }
2146
2147
2152 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
2153 return assetEntryService;
2154 }
2155
2156
2161 public void setAssetEntryService(
2162 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
2163 this.assetEntryService = assetEntryService;
2164 }
2165
2166
2171 public AssetEntryPersistence getAssetEntryPersistence() {
2172 return assetEntryPersistence;
2173 }
2174
2175
2180 public void setAssetEntryPersistence(
2181 AssetEntryPersistence assetEntryPersistence) {
2182 this.assetEntryPersistence = assetEntryPersistence;
2183 }
2184
2185
2190 public AssetEntryFinder getAssetEntryFinder() {
2191 return assetEntryFinder;
2192 }
2193
2194
2199 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
2200 this.assetEntryFinder = assetEntryFinder;
2201 }
2202
2203
2208 public com.liferay.portlet.blogs.service.BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
2209 return blogsStatsUserLocalService;
2210 }
2211
2212
2217 public void setBlogsStatsUserLocalService(
2218 com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService) {
2219 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
2220 }
2221
2222
2227 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
2228 return blogsStatsUserPersistence;
2229 }
2230
2231
2236 public void setBlogsStatsUserPersistence(
2237 BlogsStatsUserPersistence blogsStatsUserPersistence) {
2238 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
2239 }
2240
2241
2246 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
2247 return blogsStatsUserFinder;
2248 }
2249
2250
2255 public void setBlogsStatsUserFinder(
2256 BlogsStatsUserFinder blogsStatsUserFinder) {
2257 this.blogsStatsUserFinder = blogsStatsUserFinder;
2258 }
2259
2260
2265 public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
2266 return dlFileEntryLocalService;
2267 }
2268
2269
2274 public void setDLFileEntryLocalService(
2275 com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
2276 this.dlFileEntryLocalService = dlFileEntryLocalService;
2277 }
2278
2279
2284 public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
2285 return dlFileEntryService;
2286 }
2287
2288
2293 public void setDLFileEntryService(
2294 com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
2295 this.dlFileEntryService = dlFileEntryService;
2296 }
2297
2298
2303 public DLFileEntryPersistence getDLFileEntryPersistence() {
2304 return dlFileEntryPersistence;
2305 }
2306
2307
2312 public void setDLFileEntryPersistence(
2313 DLFileEntryPersistence dlFileEntryPersistence) {
2314 this.dlFileEntryPersistence = dlFileEntryPersistence;
2315 }
2316
2317
2322 public DLFileEntryFinder getDLFileEntryFinder() {
2323 return dlFileEntryFinder;
2324 }
2325
2326
2331 public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
2332 this.dlFileEntryFinder = dlFileEntryFinder;
2333 }
2334
2335
2340 public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
2341 return dlFileRankLocalService;
2342 }
2343
2344
2349 public void setDLFileRankLocalService(
2350 com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
2351 this.dlFileRankLocalService = dlFileRankLocalService;
2352 }
2353
2354
2359 public DLFileRankPersistence getDLFileRankPersistence() {
2360 return dlFileRankPersistence;
2361 }
2362
2363
2368 public void setDLFileRankPersistence(
2369 DLFileRankPersistence dlFileRankPersistence) {
2370 this.dlFileRankPersistence = dlFileRankPersistence;
2371 }
2372
2373
2378 public DLFileRankFinder getDLFileRankFinder() {
2379 return dlFileRankFinder;
2380 }
2381
2382
2387 public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
2388 this.dlFileRankFinder = dlFileRankFinder;
2389 }
2390
2391
2396 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
2397 return expandoRowLocalService;
2398 }
2399
2400
2405 public void setExpandoRowLocalService(
2406 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
2407 this.expandoRowLocalService = expandoRowLocalService;
2408 }
2409
2410
2415 public ExpandoRowPersistence getExpandoRowPersistence() {
2416 return expandoRowPersistence;
2417 }
2418
2419
2424 public void setExpandoRowPersistence(
2425 ExpandoRowPersistence expandoRowPersistence) {
2426 this.expandoRowPersistence = expandoRowPersistence;
2427 }
2428
2429
2434 public com.liferay.portlet.messageboards.service.MBBanLocalService getMBBanLocalService() {
2435 return mbBanLocalService;
2436 }
2437
2438
2443 public void setMBBanLocalService(
2444 com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService) {
2445 this.mbBanLocalService = mbBanLocalService;
2446 }
2447
2448
2453 public com.liferay.portlet.messageboards.service.MBBanService getMBBanService() {
2454 return mbBanService;
2455 }
2456
2457
2462 public void setMBBanService(
2463 com.liferay.portlet.messageboards.service.MBBanService mbBanService) {
2464 this.mbBanService = mbBanService;
2465 }
2466
2467
2472 public MBBanPersistence getMBBanPersistence() {
2473 return mbBanPersistence;
2474 }
2475
2476
2481 public void setMBBanPersistence(MBBanPersistence mbBanPersistence) {
2482 this.mbBanPersistence = mbBanPersistence;
2483 }
2484
2485
2490 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
2491 return mbMessageLocalService;
2492 }
2493
2494
2499 public void setMBMessageLocalService(
2500 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
2501 this.mbMessageLocalService = mbMessageLocalService;
2502 }
2503
2504
2509 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
2510 return mbMessageService;
2511 }
2512
2513
2518 public void setMBMessageService(
2519 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
2520 this.mbMessageService = mbMessageService;
2521 }
2522
2523
2528 public MBMessagePersistence getMBMessagePersistence() {
2529 return mbMessagePersistence;
2530 }
2531
2532
2537 public void setMBMessagePersistence(
2538 MBMessagePersistence mbMessagePersistence) {
2539 this.mbMessagePersistence = mbMessagePersistence;
2540 }
2541
2542
2547 public MBMessageFinder getMBMessageFinder() {
2548 return mbMessageFinder;
2549 }
2550
2551
2556 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
2557 this.mbMessageFinder = mbMessageFinder;
2558 }
2559
2560
2565 public com.liferay.portlet.messageboards.service.MBStatsUserLocalService getMBStatsUserLocalService() {
2566 return mbStatsUserLocalService;
2567 }
2568
2569
2574 public void setMBStatsUserLocalService(
2575 com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService) {
2576 this.mbStatsUserLocalService = mbStatsUserLocalService;
2577 }
2578
2579
2584 public MBStatsUserPersistence getMBStatsUserPersistence() {
2585 return mbStatsUserPersistence;
2586 }
2587
2588
2593 public void setMBStatsUserPersistence(
2594 MBStatsUserPersistence mbStatsUserPersistence) {
2595 this.mbStatsUserPersistence = mbStatsUserPersistence;
2596 }
2597
2598
2603 public com.liferay.portlet.messageboards.service.MBThreadFlagLocalService getMBThreadFlagLocalService() {
2604 return mbThreadFlagLocalService;
2605 }
2606
2607
2612 public void setMBThreadFlagLocalService(
2613 com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService) {
2614 this.mbThreadFlagLocalService = mbThreadFlagLocalService;
2615 }
2616
2617
2622 public MBThreadFlagPersistence getMBThreadFlagPersistence() {
2623 return mbThreadFlagPersistence;
2624 }
2625
2626
2631 public void setMBThreadFlagPersistence(
2632 MBThreadFlagPersistence mbThreadFlagPersistence) {
2633 this.mbThreadFlagPersistence = mbThreadFlagPersistence;
2634 }
2635
2636
2641 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
2642 return ratingsStatsLocalService;
2643 }
2644
2645
2650 public void setRatingsStatsLocalService(
2651 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
2652 this.ratingsStatsLocalService = ratingsStatsLocalService;
2653 }
2654
2655
2660 public RatingsStatsPersistence getRatingsStatsPersistence() {
2661 return ratingsStatsPersistence;
2662 }
2663
2664
2669 public void setRatingsStatsPersistence(
2670 RatingsStatsPersistence ratingsStatsPersistence) {
2671 this.ratingsStatsPersistence = ratingsStatsPersistence;
2672 }
2673
2674
2679 public RatingsStatsFinder getRatingsStatsFinder() {
2680 return ratingsStatsFinder;
2681 }
2682
2683
2688 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
2689 this.ratingsStatsFinder = ratingsStatsFinder;
2690 }
2691
2692
2697 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
2698 return socialActivityLocalService;
2699 }
2700
2701
2706 public void setSocialActivityLocalService(
2707 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
2708 this.socialActivityLocalService = socialActivityLocalService;
2709 }
2710
2711
2716 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
2717 return socialActivityService;
2718 }
2719
2720
2725 public void setSocialActivityService(
2726 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
2727 this.socialActivityService = socialActivityService;
2728 }
2729
2730
2735 public SocialActivityPersistence getSocialActivityPersistence() {
2736 return socialActivityPersistence;
2737 }
2738
2739
2744 public void setSocialActivityPersistence(
2745 SocialActivityPersistence socialActivityPersistence) {
2746 this.socialActivityPersistence = socialActivityPersistence;
2747 }
2748
2749
2754 public SocialActivityFinder getSocialActivityFinder() {
2755 return socialActivityFinder;
2756 }
2757
2758
2763 public void setSocialActivityFinder(
2764 SocialActivityFinder socialActivityFinder) {
2765 this.socialActivityFinder = socialActivityFinder;
2766 }
2767
2768
2773 public com.liferay.portlet.social.service.SocialRelationLocalService getSocialRelationLocalService() {
2774 return socialRelationLocalService;
2775 }
2776
2777
2782 public void setSocialRelationLocalService(
2783 com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService) {
2784 this.socialRelationLocalService = socialRelationLocalService;
2785 }
2786
2787
2792 public SocialRelationPersistence getSocialRelationPersistence() {
2793 return socialRelationPersistence;
2794 }
2795
2796
2801 public void setSocialRelationPersistence(
2802 SocialRelationPersistence socialRelationPersistence) {
2803 this.socialRelationPersistence = socialRelationPersistence;
2804 }
2805
2806
2811 public com.liferay.portlet.social.service.SocialRequestLocalService getSocialRequestLocalService() {
2812 return socialRequestLocalService;
2813 }
2814
2815
2820 public void setSocialRequestLocalService(
2821 com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService) {
2822 this.socialRequestLocalService = socialRequestLocalService;
2823 }
2824
2825
2830 public com.liferay.portlet.social.service.SocialRequestService getSocialRequestService() {
2831 return socialRequestService;
2832 }
2833
2834
2839 public void setSocialRequestService(
2840 com.liferay.portlet.social.service.SocialRequestService socialRequestService) {
2841 this.socialRequestService = socialRequestService;
2842 }
2843
2844
2849 public SocialRequestPersistence getSocialRequestPersistence() {
2850 return socialRequestPersistence;
2851 }
2852
2853
2858 public void setSocialRequestPersistence(
2859 SocialRequestPersistence socialRequestPersistence) {
2860 this.socialRequestPersistence = socialRequestPersistence;
2861 }
2862
2863
2868 public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
2869 return userGroupLocalService;
2870 }
2871
2872
2877 public void setUserGroupLocalService(
2878 com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
2879 this.userGroupLocalService = userGroupLocalService;
2880 }
2881
2882
2887 public com.liferay.portal.service.UserGroupService getUserGroupService() {
2888 return userGroupService;
2889 }
2890
2891
2896 public void setUserGroupService(
2897 com.liferay.portal.service.UserGroupService userGroupService) {
2898 this.userGroupService = userGroupService;
2899 }
2900
2901
2906 public UserGroupPersistence getUserGroupPersistence() {
2907 return userGroupPersistence;
2908 }
2909
2910
2915 public void setUserGroupPersistence(
2916 UserGroupPersistence userGroupPersistence) {
2917 this.userGroupPersistence = userGroupPersistence;
2918 }
2919
2920
2925 public UserGroupFinder getUserGroupFinder() {
2926 return userGroupFinder;
2927 }
2928
2929
2934 public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
2935 this.userGroupFinder = userGroupFinder;
2936 }
2937
2938
2943 public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
2944 return userGroupRoleLocalService;
2945 }
2946
2947
2952 public void setUserGroupRoleLocalService(
2953 com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
2954 this.userGroupRoleLocalService = userGroupRoleLocalService;
2955 }
2956
2957
2962 public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
2963 return userGroupRoleService;
2964 }
2965
2966
2971 public void setUserGroupRoleService(
2972 com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
2973 this.userGroupRoleService = userGroupRoleService;
2974 }
2975
2976
2981 public UserGroupRolePersistence getUserGroupRolePersistence() {
2982 return userGroupRolePersistence;
2983 }
2984
2985
2990 public void setUserGroupRolePersistence(
2991 UserGroupRolePersistence userGroupRolePersistence) {
2992 this.userGroupRolePersistence = userGroupRolePersistence;
2993 }
2994
2995
3000 public UserGroupRoleFinder getUserGroupRoleFinder() {
3001 return userGroupRoleFinder;
3002 }
3003
3004
3009 public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
3010 this.userGroupRoleFinder = userGroupRoleFinder;
3011 }
3012
3013
3018 public com.liferay.portal.service.UserIdMapperLocalService getUserIdMapperLocalService() {
3019 return userIdMapperLocalService;
3020 }
3021
3022
3027 public void setUserIdMapperLocalService(
3028 com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService) {
3029 this.userIdMapperLocalService = userIdMapperLocalService;
3030 }
3031
3032
3037 public UserIdMapperPersistence getUserIdMapperPersistence() {
3038 return userIdMapperPersistence;
3039 }
3040
3041
3046 public void setUserIdMapperPersistence(
3047 UserIdMapperPersistence userIdMapperPersistence) {
3048 this.userIdMapperPersistence = userIdMapperPersistence;
3049 }
3050
3051
3056 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
3057 return workflowInstanceLinkLocalService;
3058 }
3059
3060
3065 public void setWorkflowInstanceLinkLocalService(
3066 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
3067 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
3068 }
3069
3070
3075 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
3076 return workflowInstanceLinkPersistence;
3077 }
3078
3079
3084 public void setWorkflowInstanceLinkPersistence(
3085 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
3086 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
3087 }
3088
3089 public void afterPropertiesSet() {
3090 persistedModelLocalServiceRegistry.register("com.liferay.portal.model.User",
3091 userLocalService);
3092 }
3093
3094 public void destroy() {
3095 persistedModelLocalServiceRegistry.unregister(
3096 "com.liferay.portal.model.User");
3097 }
3098
3099
3104 @Override
3105 public String getOSGiServiceIdentifier() {
3106 return UserLocalService.class.getName();
3107 }
3108
3109 protected Class<?> getModelClass() {
3110 return User.class;
3111 }
3112
3113 protected String getModelClassName() {
3114 return User.class.getName();
3115 }
3116
3117
3122 protected void runSQL(String sql) {
3123 try {
3124 DataSource dataSource = userPersistence.getDataSource();
3125
3126 DB db = DBFactoryUtil.getDB();
3127
3128 sql = db.buildSQL(sql);
3129 sql = PortalUtil.transformSQL(sql);
3130
3131 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
3132 sql, new int[0]);
3133
3134 sqlUpdate.update();
3135 }
3136 catch (Exception e) {
3137 throw new SystemException(e);
3138 }
3139 }
3140
3141 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
3142 protected UserLocalService userLocalService;
3143 @BeanReference(type = com.liferay.portal.service.UserService.class)
3144 protected com.liferay.portal.service.UserService userService;
3145 @BeanReference(type = UserPersistence.class)
3146 protected UserPersistence userPersistence;
3147 @BeanReference(type = UserFinder.class)
3148 protected UserFinder userFinder;
3149 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
3150 protected com.liferay.counter.service.CounterLocalService counterLocalService;
3151 @BeanReference(type = com.liferay.mail.service.MailService.class)
3152 protected com.liferay.mail.service.MailService mailService;
3153 @BeanReference(type = com.liferay.portal.service.BrowserTrackerLocalService.class)
3154 protected com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService;
3155 @BeanReference(type = BrowserTrackerPersistence.class)
3156 protected BrowserTrackerPersistence browserTrackerPersistence;
3157 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
3158 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
3159 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
3160 protected com.liferay.portal.service.CompanyService companyService;
3161 @BeanReference(type = CompanyPersistence.class)
3162 protected CompanyPersistence companyPersistence;
3163 @BeanReference(type = com.liferay.portal.service.ContactLocalService.class)
3164 protected com.liferay.portal.service.ContactLocalService contactLocalService;
3165 @BeanReference(type = com.liferay.portal.service.ContactService.class)
3166 protected com.liferay.portal.service.ContactService contactService;
3167 @BeanReference(type = ContactPersistence.class)
3168 protected ContactPersistence contactPersistence;
3169 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
3170 protected com.liferay.portal.service.GroupLocalService groupLocalService;
3171 @BeanReference(type = com.liferay.portal.service.GroupService.class)
3172 protected com.liferay.portal.service.GroupService groupService;
3173 @BeanReference(type = GroupPersistence.class)
3174 protected GroupPersistence groupPersistence;
3175 @BeanReference(type = GroupFinder.class)
3176 protected GroupFinder groupFinder;
3177 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
3178 protected com.liferay.portal.service.ImageLocalService imageLocalService;
3179 @BeanReference(type = com.liferay.portal.service.ImageService.class)
3180 protected com.liferay.portal.service.ImageService imageService;
3181 @BeanReference(type = ImagePersistence.class)
3182 protected ImagePersistence imagePersistence;
3183 @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
3184 protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
3185 @BeanReference(type = com.liferay.portal.service.LayoutService.class)
3186 protected com.liferay.portal.service.LayoutService layoutService;
3187 @BeanReference(type = LayoutPersistence.class)
3188 protected LayoutPersistence layoutPersistence;
3189 @BeanReference(type = LayoutFinder.class)
3190 protected LayoutFinder layoutFinder;
3191 @BeanReference(type = com.liferay.portal.service.MembershipRequestLocalService.class)
3192 protected com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService;
3193 @BeanReference(type = com.liferay.portal.service.MembershipRequestService.class)
3194 protected com.liferay.portal.service.MembershipRequestService membershipRequestService;
3195 @BeanReference(type = MembershipRequestPersistence.class)
3196 protected MembershipRequestPersistence membershipRequestPersistence;
3197 @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
3198 protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
3199 @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
3200 protected com.liferay.portal.service.OrganizationService organizationService;
3201 @BeanReference(type = OrganizationPersistence.class)
3202 protected OrganizationPersistence organizationPersistence;
3203 @BeanReference(type = OrganizationFinder.class)
3204 protected OrganizationFinder organizationFinder;
3205 @BeanReference(type = com.liferay.portal.service.PasswordPolicyLocalService.class)
3206 protected com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService;
3207 @BeanReference(type = com.liferay.portal.service.PasswordPolicyService.class)
3208 protected com.liferay.portal.service.PasswordPolicyService passwordPolicyService;
3209 @BeanReference(type = PasswordPolicyPersistence.class)
3210 protected PasswordPolicyPersistence passwordPolicyPersistence;
3211 @BeanReference(type = PasswordPolicyFinder.class)
3212 protected PasswordPolicyFinder passwordPolicyFinder;
3213 @BeanReference(type = com.liferay.portal.service.PasswordPolicyRelLocalService.class)
3214 protected com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService;
3215 @BeanReference(type = PasswordPolicyRelPersistence.class)
3216 protected PasswordPolicyRelPersistence passwordPolicyRelPersistence;
3217 @BeanReference(type = com.liferay.portal.service.PasswordTrackerLocalService.class)
3218 protected com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService;
3219 @BeanReference(type = PasswordTrackerPersistence.class)
3220 protected PasswordTrackerPersistence passwordTrackerPersistence;
3221 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
3222 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
3223 @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
3224 protected com.liferay.portal.service.RoleLocalService roleLocalService;
3225 @BeanReference(type = com.liferay.portal.service.RoleService.class)
3226 protected com.liferay.portal.service.RoleService roleService;
3227 @BeanReference(type = RolePersistence.class)
3228 protected RolePersistence rolePersistence;
3229 @BeanReference(type = RoleFinder.class)
3230 protected RoleFinder roleFinder;
3231 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
3232 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
3233 @BeanReference(type = SubscriptionPersistence.class)
3234 protected SubscriptionPersistence subscriptionPersistence;
3235 @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
3236 protected com.liferay.portal.service.TeamLocalService teamLocalService;
3237 @BeanReference(type = com.liferay.portal.service.TeamService.class)
3238 protected com.liferay.portal.service.TeamService teamService;
3239 @BeanReference(type = TeamPersistence.class)
3240 protected TeamPersistence teamPersistence;
3241 @BeanReference(type = TeamFinder.class)
3242 protected TeamFinder teamFinder;
3243 @BeanReference(type = com.liferay.portal.service.TicketLocalService.class)
3244 protected com.liferay.portal.service.TicketLocalService ticketLocalService;
3245 @BeanReference(type = TicketPersistence.class)
3246 protected TicketPersistence ticketPersistence;
3247 @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService.class)
3248 protected com.liferay.portlet.announcements.service.AnnouncementsDeliveryLocalService announcementsDeliveryLocalService;
3249 @BeanReference(type = com.liferay.portlet.announcements.service.AnnouncementsDeliveryService.class)
3250 protected com.liferay.portlet.announcements.service.AnnouncementsDeliveryService announcementsDeliveryService;
3251 @BeanReference(type = AnnouncementsDeliveryPersistence.class)
3252 protected AnnouncementsDeliveryPersistence announcementsDeliveryPersistence;
3253 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
3254 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
3255 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
3256 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
3257 @BeanReference(type = AssetEntryPersistence.class)
3258 protected AssetEntryPersistence assetEntryPersistence;
3259 @BeanReference(type = AssetEntryFinder.class)
3260 protected AssetEntryFinder assetEntryFinder;
3261 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
3262 protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
3263 @BeanReference(type = BlogsStatsUserPersistence.class)
3264 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
3265 @BeanReference(type = BlogsStatsUserFinder.class)
3266 protected BlogsStatsUserFinder blogsStatsUserFinder;
3267 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
3268 protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
3269 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
3270 protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
3271 @BeanReference(type = DLFileEntryPersistence.class)
3272 protected DLFileEntryPersistence dlFileEntryPersistence;
3273 @BeanReference(type = DLFileEntryFinder.class)
3274 protected DLFileEntryFinder dlFileEntryFinder;
3275 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
3276 protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
3277 @BeanReference(type = DLFileRankPersistence.class)
3278 protected DLFileRankPersistence dlFileRankPersistence;
3279 @BeanReference(type = DLFileRankFinder.class)
3280 protected DLFileRankFinder dlFileRankFinder;
3281 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
3282 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
3283 @BeanReference(type = ExpandoRowPersistence.class)
3284 protected ExpandoRowPersistence expandoRowPersistence;
3285 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanLocalService.class)
3286 protected com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService;
3287 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanService.class)
3288 protected com.liferay.portlet.messageboards.service.MBBanService mbBanService;
3289 @BeanReference(type = MBBanPersistence.class)
3290 protected MBBanPersistence mbBanPersistence;
3291 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
3292 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
3293 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
3294 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
3295 @BeanReference(type = MBMessagePersistence.class)
3296 protected MBMessagePersistence mbMessagePersistence;
3297 @BeanReference(type = MBMessageFinder.class)
3298 protected MBMessageFinder mbMessageFinder;
3299 @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
3300 protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
3301 @BeanReference(type = MBStatsUserPersistence.class)
3302 protected MBStatsUserPersistence mbStatsUserPersistence;
3303 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
3304 protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
3305 @BeanReference(type = MBThreadFlagPersistence.class)
3306 protected MBThreadFlagPersistence mbThreadFlagPersistence;
3307 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
3308 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
3309 @BeanReference(type = RatingsStatsPersistence.class)
3310 protected RatingsStatsPersistence ratingsStatsPersistence;
3311 @BeanReference(type = RatingsStatsFinder.class)
3312 protected RatingsStatsFinder ratingsStatsFinder;
3313 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
3314 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
3315 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
3316 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
3317 @BeanReference(type = SocialActivityPersistence.class)
3318 protected SocialActivityPersistence socialActivityPersistence;
3319 @BeanReference(type = SocialActivityFinder.class)
3320 protected SocialActivityFinder socialActivityFinder;
3321 @BeanReference(type = com.liferay.portlet.social.service.SocialRelationLocalService.class)
3322 protected com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService;
3323 @BeanReference(type = SocialRelationPersistence.class)
3324 protected SocialRelationPersistence socialRelationPersistence;
3325 @BeanReference(type = com.liferay.portlet.social.service.SocialRequestLocalService.class)
3326 protected com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService;
3327 @BeanReference(type = com.liferay.portlet.social.service.SocialRequestService.class)
3328 protected com.liferay.portlet.social.service.SocialRequestService socialRequestService;
3329 @BeanReference(type = SocialRequestPersistence.class)
3330 protected SocialRequestPersistence socialRequestPersistence;
3331 @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
3332 protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
3333 @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
3334 protected com.liferay.portal.service.UserGroupService userGroupService;
3335 @BeanReference(type = UserGroupPersistence.class)
3336 protected UserGroupPersistence userGroupPersistence;
3337 @BeanReference(type = UserGroupFinder.class)
3338 protected UserGroupFinder userGroupFinder;
3339 @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
3340 protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
3341 @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
3342 protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
3343 @BeanReference(type = UserGroupRolePersistence.class)
3344 protected UserGroupRolePersistence userGroupRolePersistence;
3345 @BeanReference(type = UserGroupRoleFinder.class)
3346 protected UserGroupRoleFinder userGroupRoleFinder;
3347 @BeanReference(type = com.liferay.portal.service.UserIdMapperLocalService.class)
3348 protected com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService;
3349 @BeanReference(type = UserIdMapperPersistence.class)
3350 protected UserIdMapperPersistence userIdMapperPersistence;
3351 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
3352 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
3353 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
3354 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
3355 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
3356 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
3357 }