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.bean.IdentifiableBean;
021 import com.liferay.portal.kernel.dao.db.DB;
022 import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
023 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025 import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery;
026 import com.liferay.portal.kernel.dao.orm.DefaultActionableDynamicQuery;
027 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
028 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
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.search.Indexable;
033 import com.liferay.portal.kernel.search.IndexableType;
034 import com.liferay.portal.kernel.util.OrderByComparator;
035 import com.liferay.portal.model.Group;
036 import com.liferay.portal.model.PersistedModel;
037 import com.liferay.portal.service.BaseLocalServiceImpl;
038 import com.liferay.portal.service.GroupLocalService;
039 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
040 import com.liferay.portal.service.persistence.AccountPersistence;
041 import com.liferay.portal.service.persistence.BackgroundTaskPersistence;
042 import com.liferay.portal.service.persistence.ClassNamePersistence;
043 import com.liferay.portal.service.persistence.CompanyPersistence;
044 import com.liferay.portal.service.persistence.GroupFinder;
045 import com.liferay.portal.service.persistence.GroupPersistence;
046 import com.liferay.portal.service.persistence.LayoutFinder;
047 import com.liferay.portal.service.persistence.LayoutPersistence;
048 import com.liferay.portal.service.persistence.LayoutPrototypePersistence;
049 import com.liferay.portal.service.persistence.LayoutSetBranchPersistence;
050 import com.liferay.portal.service.persistence.LayoutSetPersistence;
051 import com.liferay.portal.service.persistence.LayoutSetPrototypePersistence;
052 import com.liferay.portal.service.persistence.MembershipRequestPersistence;
053 import com.liferay.portal.service.persistence.OrganizationFinder;
054 import com.liferay.portal.service.persistence.OrganizationPersistence;
055 import com.liferay.portal.service.persistence.PortletPersistence;
056 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
057 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
058 import com.liferay.portal.service.persistence.ResourceActionPersistence;
059 import com.liferay.portal.service.persistence.ResourceBlockFinder;
060 import com.liferay.portal.service.persistence.ResourceBlockPersistence;
061 import com.liferay.portal.service.persistence.ResourcePermissionFinder;
062 import com.liferay.portal.service.persistence.ResourcePermissionPersistence;
063 import com.liferay.portal.service.persistence.ResourceTypePermissionFinder;
064 import com.liferay.portal.service.persistence.ResourceTypePermissionPersistence;
065 import com.liferay.portal.service.persistence.RoleFinder;
066 import com.liferay.portal.service.persistence.RolePersistence;
067 import com.liferay.portal.service.persistence.SubscriptionPersistence;
068 import com.liferay.portal.service.persistence.TeamFinder;
069 import com.liferay.portal.service.persistence.TeamPersistence;
070 import com.liferay.portal.service.persistence.UserFinder;
071 import com.liferay.portal.service.persistence.UserGroupFinder;
072 import com.liferay.portal.service.persistence.UserGroupGroupRoleFinder;
073 import com.liferay.portal.service.persistence.UserGroupGroupRolePersistence;
074 import com.liferay.portal.service.persistence.UserGroupPersistence;
075 import com.liferay.portal.service.persistence.UserGroupRoleFinder;
076 import com.liferay.portal.service.persistence.UserGroupRolePersistence;
077 import com.liferay.portal.service.persistence.UserPersistence;
078 import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
079 import com.liferay.portal.util.PortalUtil;
080
081 import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
082 import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
083 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
084 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
085 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
086 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
087 import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
088 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
089 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
090 import com.liferay.portlet.exportimport.service.persistence.ExportImportConfigurationPersistence;
091 import com.liferay.portlet.shopping.service.persistence.ShoppingCartPersistence;
092 import com.liferay.portlet.shopping.service.persistence.ShoppingCategoryPersistence;
093 import com.liferay.portlet.shopping.service.persistence.ShoppingCouponFinder;
094 import com.liferay.portlet.shopping.service.persistence.ShoppingCouponPersistence;
095 import com.liferay.portlet.shopping.service.persistence.ShoppingOrderFinder;
096 import com.liferay.portlet.shopping.service.persistence.ShoppingOrderPersistence;
097 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
098 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
099 import com.liferay.portlet.social.service.persistence.SocialActivitySettingPersistence;
100 import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
101 import com.liferay.portlet.softwarecatalog.service.persistence.SCFrameworkVersionPersistence;
102 import com.liferay.portlet.softwarecatalog.service.persistence.SCProductEntryPersistence;
103 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
104
105 import java.io.Serializable;
106
107 import java.util.List;
108
109 import javax.sql.DataSource;
110
111
123 @ProviderType
124 public abstract class GroupLocalServiceBaseImpl extends BaseLocalServiceImpl
125 implements GroupLocalService, IdentifiableBean {
126
131
132
138 @Indexable(type = IndexableType.REINDEX)
139 @Override
140 public Group addGroup(Group group) {
141 group.setNew(true);
142
143 return groupPersistence.update(group);
144 }
145
146
152 @Override
153 public Group createGroup(long groupId) {
154 return groupPersistence.create(groupId);
155 }
156
157
164 @Indexable(type = IndexableType.DELETE)
165 @Override
166 public Group deleteGroup(long groupId) throws PortalException {
167 return groupPersistence.remove(groupId);
168 }
169
170
177 @Indexable(type = IndexableType.DELETE)
178 @Override
179 public Group deleteGroup(Group group) throws PortalException {
180 return groupPersistence.remove(group);
181 }
182
183 @Override
184 public DynamicQuery dynamicQuery() {
185 Class<?> clazz = getClass();
186
187 return DynamicQueryFactoryUtil.forClass(Group.class,
188 clazz.getClassLoader());
189 }
190
191
197 @Override
198 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) {
199 return groupPersistence.findWithDynamicQuery(dynamicQuery);
200 }
201
202
214 @Override
215 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
216 int end) {
217 return groupPersistence.findWithDynamicQuery(dynamicQuery, start, end);
218 }
219
220
233 @Override
234 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
235 int end, OrderByComparator<T> orderByComparator) {
236 return groupPersistence.findWithDynamicQuery(dynamicQuery, start, end,
237 orderByComparator);
238 }
239
240
246 @Override
247 public long dynamicQueryCount(DynamicQuery dynamicQuery) {
248 return groupPersistence.countWithDynamicQuery(dynamicQuery);
249 }
250
251
258 @Override
259 public long dynamicQueryCount(DynamicQuery dynamicQuery,
260 Projection projection) {
261 return groupPersistence.countWithDynamicQuery(dynamicQuery, projection);
262 }
263
264 @Override
265 public Group fetchGroup(long groupId) {
266 return groupPersistence.fetchByPrimaryKey(groupId);
267 }
268
269
276 @Override
277 public Group fetchGroupByUuidAndCompanyId(String uuid, long companyId) {
278 return groupPersistence.fetchByUuid_C_First(uuid, companyId, null);
279 }
280
281
288 @Override
289 public Group getGroup(long groupId) throws PortalException {
290 return groupPersistence.findByPrimaryKey(groupId);
291 }
292
293 @Override
294 public ActionableDynamicQuery getActionableDynamicQuery() {
295 ActionableDynamicQuery actionableDynamicQuery = new DefaultActionableDynamicQuery();
296
297 actionableDynamicQuery.setBaseLocalService(com.liferay.portal.service.GroupLocalServiceUtil.getService());
298 actionableDynamicQuery.setClass(Group.class);
299 actionableDynamicQuery.setClassLoader(getClassLoader());
300
301 actionableDynamicQuery.setPrimaryKeyPropertyName("groupId");
302
303 return actionableDynamicQuery;
304 }
305
306 protected void initActionableDynamicQuery(
307 ActionableDynamicQuery actionableDynamicQuery) {
308 actionableDynamicQuery.setBaseLocalService(com.liferay.portal.service.GroupLocalServiceUtil.getService());
309 actionableDynamicQuery.setClass(Group.class);
310 actionableDynamicQuery.setClassLoader(getClassLoader());
311
312 actionableDynamicQuery.setPrimaryKeyPropertyName("groupId");
313 }
314
315
318 @Override
319 public PersistedModel deletePersistedModel(PersistedModel persistedModel)
320 throws PortalException {
321 return groupLocalService.deleteGroup((Group)persistedModel);
322 }
323
324 @Override
325 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
326 throws PortalException {
327 return groupPersistence.findByPrimaryKey(primaryKeyObj);
328 }
329
330
338 @Override
339 public Group getGroupByUuidAndCompanyId(String uuid, long companyId)
340 throws PortalException {
341 return groupPersistence.findByUuid_C_First(uuid, companyId, null);
342 }
343
344
355 @Override
356 public List<Group> getGroups(int start, int end) {
357 return groupPersistence.findAll(start, end);
358 }
359
360
365 @Override
366 public int getGroupsCount() {
367 return groupPersistence.countAll();
368 }
369
370
376 @Indexable(type = IndexableType.REINDEX)
377 @Override
378 public Group updateGroup(Group group) {
379 return groupPersistence.update(group);
380 }
381
382
384 @Override
385 public void addOrganizationGroup(long organizationId, long groupId) {
386 organizationPersistence.addGroup(organizationId, groupId);
387 }
388
389
391 @Override
392 public void addOrganizationGroup(long organizationId, Group group) {
393 organizationPersistence.addGroup(organizationId, group);
394 }
395
396
398 @Override
399 public void addOrganizationGroups(long organizationId, long[] groupIds) {
400 organizationPersistence.addGroups(organizationId, groupIds);
401 }
402
403
405 @Override
406 public void addOrganizationGroups(long organizationId, List<Group> Groups) {
407 organizationPersistence.addGroups(organizationId, Groups);
408 }
409
410
412 @Override
413 public void clearOrganizationGroups(long organizationId) {
414 organizationPersistence.clearGroups(organizationId);
415 }
416
417
419 @Override
420 public void deleteOrganizationGroup(long organizationId, long groupId) {
421 organizationPersistence.removeGroup(organizationId, groupId);
422 }
423
424
426 @Override
427 public void deleteOrganizationGroup(long organizationId, Group group) {
428 organizationPersistence.removeGroup(organizationId, group);
429 }
430
431
433 @Override
434 public void deleteOrganizationGroups(long organizationId, long[] groupIds) {
435 organizationPersistence.removeGroups(organizationId, groupIds);
436 }
437
438
440 @Override
441 public void deleteOrganizationGroups(long organizationId, List<Group> Groups) {
442 organizationPersistence.removeGroups(organizationId, Groups);
443 }
444
445
451 @Override
452 public long[] getOrganizationPrimaryKeys(long groupId) {
453 return groupPersistence.getOrganizationPrimaryKeys(groupId);
454 }
455
456
458 @Override
459 public List<Group> getOrganizationGroups(long organizationId) {
460 return organizationPersistence.getGroups(organizationId);
461 }
462
463
465 @Override
466 public List<Group> getOrganizationGroups(long organizationId, int start,
467 int end) {
468 return organizationPersistence.getGroups(organizationId, start, end);
469 }
470
471
473 @Override
474 public List<Group> getOrganizationGroups(long organizationId, int start,
475 int end, OrderByComparator<Group> orderByComparator) {
476 return organizationPersistence.getGroups(organizationId, start, end,
477 orderByComparator);
478 }
479
480
482 @Override
483 public int getOrganizationGroupsCount(long organizationId) {
484 return organizationPersistence.getGroupsSize(organizationId);
485 }
486
487
489 @Override
490 public boolean hasOrganizationGroup(long organizationId, long groupId) {
491 return organizationPersistence.containsGroup(organizationId, groupId);
492 }
493
494
496 @Override
497 public boolean hasOrganizationGroups(long organizationId) {
498 return organizationPersistence.containsGroups(organizationId);
499 }
500
501
503 @Override
504 public void setOrganizationGroups(long organizationId, long[] groupIds) {
505 organizationPersistence.setGroups(organizationId, groupIds);
506 }
507
508
510 @Override
511 public void addRoleGroup(long roleId, long groupId) {
512 rolePersistence.addGroup(roleId, groupId);
513 }
514
515
517 @Override
518 public void addRoleGroup(long roleId, Group group) {
519 rolePersistence.addGroup(roleId, group);
520 }
521
522
524 @Override
525 public void addRoleGroups(long roleId, long[] groupIds) {
526 rolePersistence.addGroups(roleId, groupIds);
527 }
528
529
531 @Override
532 public void addRoleGroups(long roleId, List<Group> Groups) {
533 rolePersistence.addGroups(roleId, Groups);
534 }
535
536
538 @Override
539 public void clearRoleGroups(long roleId) {
540 rolePersistence.clearGroups(roleId);
541 }
542
543
545 @Override
546 public void deleteRoleGroup(long roleId, long groupId) {
547 rolePersistence.removeGroup(roleId, groupId);
548 }
549
550
552 @Override
553 public void deleteRoleGroup(long roleId, Group group) {
554 rolePersistence.removeGroup(roleId, group);
555 }
556
557
559 @Override
560 public void deleteRoleGroups(long roleId, long[] groupIds) {
561 rolePersistence.removeGroups(roleId, groupIds);
562 }
563
564
566 @Override
567 public void deleteRoleGroups(long roleId, List<Group> Groups) {
568 rolePersistence.removeGroups(roleId, Groups);
569 }
570
571
577 @Override
578 public long[] getRolePrimaryKeys(long groupId) {
579 return groupPersistence.getRolePrimaryKeys(groupId);
580 }
581
582
584 @Override
585 public List<Group> getRoleGroups(long roleId) {
586 return rolePersistence.getGroups(roleId);
587 }
588
589
591 @Override
592 public List<Group> getRoleGroups(long roleId, int start, int end) {
593 return rolePersistence.getGroups(roleId, start, end);
594 }
595
596
598 @Override
599 public List<Group> getRoleGroups(long roleId, int start, int end,
600 OrderByComparator<Group> orderByComparator) {
601 return rolePersistence.getGroups(roleId, start, end, orderByComparator);
602 }
603
604
606 @Override
607 public int getRoleGroupsCount(long roleId) {
608 return rolePersistence.getGroupsSize(roleId);
609 }
610
611
613 @Override
614 public boolean hasRoleGroup(long roleId, long groupId) {
615 return rolePersistence.containsGroup(roleId, groupId);
616 }
617
618
620 @Override
621 public boolean hasRoleGroups(long roleId) {
622 return rolePersistence.containsGroups(roleId);
623 }
624
625
627 @Override
628 public void setRoleGroups(long roleId, long[] groupIds) {
629 rolePersistence.setGroups(roleId, groupIds);
630 }
631
632
634 @Override
635 public void addUserGroupGroup(long userGroupId, long groupId) {
636 userGroupPersistence.addGroup(userGroupId, groupId);
637 }
638
639
641 @Override
642 public void addUserGroupGroup(long userGroupId, Group group) {
643 userGroupPersistence.addGroup(userGroupId, group);
644 }
645
646
648 @Override
649 public void addUserGroupGroups(long userGroupId, long[] groupIds) {
650 userGroupPersistence.addGroups(userGroupId, groupIds);
651 }
652
653
655 @Override
656 public void addUserGroupGroups(long userGroupId, List<Group> Groups) {
657 userGroupPersistence.addGroups(userGroupId, Groups);
658 }
659
660
662 @Override
663 public void clearUserGroupGroups(long userGroupId) {
664 userGroupPersistence.clearGroups(userGroupId);
665 }
666
667
669 @Override
670 public void deleteUserGroupGroup(long userGroupId, long groupId) {
671 userGroupPersistence.removeGroup(userGroupId, groupId);
672 }
673
674
676 @Override
677 public void deleteUserGroupGroup(long userGroupId, Group group) {
678 userGroupPersistence.removeGroup(userGroupId, group);
679 }
680
681
683 @Override
684 public void deleteUserGroupGroups(long userGroupId, long[] groupIds) {
685 userGroupPersistence.removeGroups(userGroupId, groupIds);
686 }
687
688
690 @Override
691 public void deleteUserGroupGroups(long userGroupId, List<Group> Groups) {
692 userGroupPersistence.removeGroups(userGroupId, Groups);
693 }
694
695
701 @Override
702 public long[] getUserGroupPrimaryKeys(long groupId) {
703 return groupPersistence.getUserGroupPrimaryKeys(groupId);
704 }
705
706
708 @Override
709 public List<Group> getUserGroupGroups(long userGroupId) {
710 return userGroupPersistence.getGroups(userGroupId);
711 }
712
713
715 @Override
716 public List<Group> getUserGroupGroups(long userGroupId, int start, int end) {
717 return userGroupPersistence.getGroups(userGroupId, start, end);
718 }
719
720
722 @Override
723 public List<Group> getUserGroupGroups(long userGroupId, int start, int end,
724 OrderByComparator<Group> orderByComparator) {
725 return userGroupPersistence.getGroups(userGroupId, start, end,
726 orderByComparator);
727 }
728
729
731 @Override
732 public int getUserGroupGroupsCount(long userGroupId) {
733 return userGroupPersistence.getGroupsSize(userGroupId);
734 }
735
736
738 @Override
739 public boolean hasUserGroupGroup(long userGroupId, long groupId) {
740 return userGroupPersistence.containsGroup(userGroupId, groupId);
741 }
742
743
745 @Override
746 public boolean hasUserGroupGroups(long userGroupId) {
747 return userGroupPersistence.containsGroups(userGroupId);
748 }
749
750
752 @Override
753 public void setUserGroupGroups(long userGroupId, long[] groupIds) {
754 userGroupPersistence.setGroups(userGroupId, groupIds);
755 }
756
757
759 @Override
760 public void addUserGroup(long userId, long groupId) {
761 userPersistence.addGroup(userId, groupId);
762 }
763
764
766 @Override
767 public void addUserGroup(long userId, Group group) {
768 userPersistence.addGroup(userId, group);
769 }
770
771
773 @Override
774 public void addUserGroups(long userId, long[] groupIds) {
775 userPersistence.addGroups(userId, groupIds);
776 }
777
778
780 @Override
781 public void addUserGroups(long userId, List<Group> Groups) {
782 userPersistence.addGroups(userId, Groups);
783 }
784
785
787 @Override
788 public void clearUserGroups(long userId) {
789 userPersistence.clearGroups(userId);
790 }
791
792
794 @Override
795 public void deleteUserGroup(long userId, long groupId) {
796 userPersistence.removeGroup(userId, groupId);
797 }
798
799
801 @Override
802 public void deleteUserGroup(long userId, Group group) {
803 userPersistence.removeGroup(userId, group);
804 }
805
806
808 @Override
809 public void deleteUserGroups(long userId, long[] groupIds) {
810 userPersistence.removeGroups(userId, groupIds);
811 }
812
813
815 @Override
816 public void deleteUserGroups(long userId, List<Group> Groups) {
817 userPersistence.removeGroups(userId, Groups);
818 }
819
820
826 @Override
827 public long[] getUserPrimaryKeys(long groupId) {
828 return groupPersistence.getUserPrimaryKeys(groupId);
829 }
830
831
833 @Override
834 public List<Group> getUserGroups(long userId) {
835 return userPersistence.getGroups(userId);
836 }
837
838
840 @Override
841 public List<Group> getUserGroups(long userId, int start, int end) {
842 return userPersistence.getGroups(userId, start, end);
843 }
844
845
848 @Override
849 public List<Group> getUserGroups(long userId, int start, int end,
850 OrderByComparator<Group> orderByComparator) throws PortalException {
851 return userPersistence.getGroups(userId, start, end, orderByComparator);
852 }
853
854
856 @Override
857 public int getUserGroupsCount(long userId) {
858 return userPersistence.getGroupsSize(userId);
859 }
860
861
863 @Override
864 public boolean hasUserGroup(long userId, long groupId) {
865 return userPersistence.containsGroup(userId, groupId);
866 }
867
868
870 @Override
871 public boolean hasUserGroups(long userId) {
872 return userPersistence.containsGroups(userId);
873 }
874
875
877 @Override
878 public void setUserGroups(long userId, long[] groupIds) {
879 userPersistence.setGroups(userId, groupIds);
880 }
881
882
887 public GroupLocalService getGroupLocalService() {
888 return groupLocalService;
889 }
890
891
896 public void setGroupLocalService(GroupLocalService groupLocalService) {
897 this.groupLocalService = groupLocalService;
898 }
899
900
905 public com.liferay.portal.service.GroupService getGroupService() {
906 return groupService;
907 }
908
909
914 public void setGroupService(
915 com.liferay.portal.service.GroupService groupService) {
916 this.groupService = groupService;
917 }
918
919
924 public GroupPersistence getGroupPersistence() {
925 return groupPersistence;
926 }
927
928
933 public void setGroupPersistence(GroupPersistence groupPersistence) {
934 this.groupPersistence = groupPersistence;
935 }
936
937
942 public GroupFinder getGroupFinder() {
943 return groupFinder;
944 }
945
946
951 public void setGroupFinder(GroupFinder groupFinder) {
952 this.groupFinder = groupFinder;
953 }
954
955
960 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
961 return counterLocalService;
962 }
963
964
969 public void setCounterLocalService(
970 com.liferay.counter.service.CounterLocalService counterLocalService) {
971 this.counterLocalService = counterLocalService;
972 }
973
974
979 public com.liferay.portal.service.AccountLocalService getAccountLocalService() {
980 return accountLocalService;
981 }
982
983
988 public void setAccountLocalService(
989 com.liferay.portal.service.AccountLocalService accountLocalService) {
990 this.accountLocalService = accountLocalService;
991 }
992
993
998 public com.liferay.portal.service.AccountService getAccountService() {
999 return accountService;
1000 }
1001
1002
1007 public void setAccountService(
1008 com.liferay.portal.service.AccountService accountService) {
1009 this.accountService = accountService;
1010 }
1011
1012
1017 public AccountPersistence getAccountPersistence() {
1018 return accountPersistence;
1019 }
1020
1021
1026 public void setAccountPersistence(AccountPersistence accountPersistence) {
1027 this.accountPersistence = accountPersistence;
1028 }
1029
1030
1035 public com.liferay.portal.service.BackgroundTaskLocalService getBackgroundTaskLocalService() {
1036 return backgroundTaskLocalService;
1037 }
1038
1039
1044 public void setBackgroundTaskLocalService(
1045 com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService) {
1046 this.backgroundTaskLocalService = backgroundTaskLocalService;
1047 }
1048
1049
1054 public com.liferay.portal.service.BackgroundTaskService getBackgroundTaskService() {
1055 return backgroundTaskService;
1056 }
1057
1058
1063 public void setBackgroundTaskService(
1064 com.liferay.portal.service.BackgroundTaskService backgroundTaskService) {
1065 this.backgroundTaskService = backgroundTaskService;
1066 }
1067
1068
1073 public BackgroundTaskPersistence getBackgroundTaskPersistence() {
1074 return backgroundTaskPersistence;
1075 }
1076
1077
1082 public void setBackgroundTaskPersistence(
1083 BackgroundTaskPersistence backgroundTaskPersistence) {
1084 this.backgroundTaskPersistence = backgroundTaskPersistence;
1085 }
1086
1087
1092 public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
1093 return classNameLocalService;
1094 }
1095
1096
1101 public void setClassNameLocalService(
1102 com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
1103 this.classNameLocalService = classNameLocalService;
1104 }
1105
1106
1111 public com.liferay.portal.service.ClassNameService getClassNameService() {
1112 return classNameService;
1113 }
1114
1115
1120 public void setClassNameService(
1121 com.liferay.portal.service.ClassNameService classNameService) {
1122 this.classNameService = classNameService;
1123 }
1124
1125
1130 public ClassNamePersistence getClassNamePersistence() {
1131 return classNamePersistence;
1132 }
1133
1134
1139 public void setClassNamePersistence(
1140 ClassNamePersistence classNamePersistence) {
1141 this.classNamePersistence = classNamePersistence;
1142 }
1143
1144
1149 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
1150 return companyLocalService;
1151 }
1152
1153
1158 public void setCompanyLocalService(
1159 com.liferay.portal.service.CompanyLocalService companyLocalService) {
1160 this.companyLocalService = companyLocalService;
1161 }
1162
1163
1168 public com.liferay.portal.service.CompanyService getCompanyService() {
1169 return companyService;
1170 }
1171
1172
1177 public void setCompanyService(
1178 com.liferay.portal.service.CompanyService companyService) {
1179 this.companyService = companyService;
1180 }
1181
1182
1187 public CompanyPersistence getCompanyPersistence() {
1188 return companyPersistence;
1189 }
1190
1191
1196 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
1197 this.companyPersistence = companyPersistence;
1198 }
1199
1200
1205 public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
1206 return assetCategoryLocalService;
1207 }
1208
1209
1214 public void setAssetCategoryLocalService(
1215 com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
1216 this.assetCategoryLocalService = assetCategoryLocalService;
1217 }
1218
1219
1224 public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
1225 return assetCategoryService;
1226 }
1227
1228
1233 public void setAssetCategoryService(
1234 com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
1235 this.assetCategoryService = assetCategoryService;
1236 }
1237
1238
1243 public AssetCategoryPersistence getAssetCategoryPersistence() {
1244 return assetCategoryPersistence;
1245 }
1246
1247
1252 public void setAssetCategoryPersistence(
1253 AssetCategoryPersistence assetCategoryPersistence) {
1254 this.assetCategoryPersistence = assetCategoryPersistence;
1255 }
1256
1257
1262 public AssetCategoryFinder getAssetCategoryFinder() {
1263 return assetCategoryFinder;
1264 }
1265
1266
1271 public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1272 this.assetCategoryFinder = assetCategoryFinder;
1273 }
1274
1275
1280 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1281 return assetEntryLocalService;
1282 }
1283
1284
1289 public void setAssetEntryLocalService(
1290 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1291 this.assetEntryLocalService = assetEntryLocalService;
1292 }
1293
1294
1299 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1300 return assetEntryService;
1301 }
1302
1303
1308 public void setAssetEntryService(
1309 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1310 this.assetEntryService = assetEntryService;
1311 }
1312
1313
1318 public AssetEntryPersistence getAssetEntryPersistence() {
1319 return assetEntryPersistence;
1320 }
1321
1322
1327 public void setAssetEntryPersistence(
1328 AssetEntryPersistence assetEntryPersistence) {
1329 this.assetEntryPersistence = assetEntryPersistence;
1330 }
1331
1332
1337 public AssetEntryFinder getAssetEntryFinder() {
1338 return assetEntryFinder;
1339 }
1340
1341
1346 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1347 this.assetEntryFinder = assetEntryFinder;
1348 }
1349
1350
1355 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1356 return assetTagLocalService;
1357 }
1358
1359
1364 public void setAssetTagLocalService(
1365 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1366 this.assetTagLocalService = assetTagLocalService;
1367 }
1368
1369
1374 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1375 return assetTagService;
1376 }
1377
1378
1383 public void setAssetTagService(
1384 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1385 this.assetTagService = assetTagService;
1386 }
1387
1388
1393 public AssetTagPersistence getAssetTagPersistence() {
1394 return assetTagPersistence;
1395 }
1396
1397
1402 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1403 this.assetTagPersistence = assetTagPersistence;
1404 }
1405
1406
1411 public AssetTagFinder getAssetTagFinder() {
1412 return assetTagFinder;
1413 }
1414
1415
1420 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1421 this.assetTagFinder = assetTagFinder;
1422 }
1423
1424
1429 public com.liferay.portlet.asset.service.AssetVocabularyLocalService getAssetVocabularyLocalService() {
1430 return assetVocabularyLocalService;
1431 }
1432
1433
1438 public void setAssetVocabularyLocalService(
1439 com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService) {
1440 this.assetVocabularyLocalService = assetVocabularyLocalService;
1441 }
1442
1443
1448 public com.liferay.portlet.asset.service.AssetVocabularyService getAssetVocabularyService() {
1449 return assetVocabularyService;
1450 }
1451
1452
1457 public void setAssetVocabularyService(
1458 com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService) {
1459 this.assetVocabularyService = assetVocabularyService;
1460 }
1461
1462
1467 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
1468 return assetVocabularyPersistence;
1469 }
1470
1471
1476 public void setAssetVocabularyPersistence(
1477 AssetVocabularyPersistence assetVocabularyPersistence) {
1478 this.assetVocabularyPersistence = assetVocabularyPersistence;
1479 }
1480
1481
1486 public AssetVocabularyFinder getAssetVocabularyFinder() {
1487 return assetVocabularyFinder;
1488 }
1489
1490
1495 public void setAssetVocabularyFinder(
1496 AssetVocabularyFinder assetVocabularyFinder) {
1497 this.assetVocabularyFinder = assetVocabularyFinder;
1498 }
1499
1500
1505 public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
1506 return dlAppLocalService;
1507 }
1508
1509
1514 public void setDLAppLocalService(
1515 com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
1516 this.dlAppLocalService = dlAppLocalService;
1517 }
1518
1519
1524 public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
1525 return dlAppService;
1526 }
1527
1528
1533 public void setDLAppService(
1534 com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
1535 this.dlAppService = dlAppService;
1536 }
1537
1538
1543 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1544 return expandoRowLocalService;
1545 }
1546
1547
1552 public void setExpandoRowLocalService(
1553 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1554 this.expandoRowLocalService = expandoRowLocalService;
1555 }
1556
1557
1562 public ExpandoRowPersistence getExpandoRowPersistence() {
1563 return expandoRowPersistence;
1564 }
1565
1566
1571 public void setExpandoRowPersistence(
1572 ExpandoRowPersistence expandoRowPersistence) {
1573 this.expandoRowPersistence = expandoRowPersistence;
1574 }
1575
1576
1581 public com.liferay.portlet.exportimport.service.ExportImportLocalService getExportImportLocalService() {
1582 return exportImportLocalService;
1583 }
1584
1585
1590 public void setExportImportLocalService(
1591 com.liferay.portlet.exportimport.service.ExportImportLocalService exportImportLocalService) {
1592 this.exportImportLocalService = exportImportLocalService;
1593 }
1594
1595
1600 public com.liferay.portlet.exportimport.service.ExportImportService getExportImportService() {
1601 return exportImportService;
1602 }
1603
1604
1609 public void setExportImportService(
1610 com.liferay.portlet.exportimport.service.ExportImportService exportImportService) {
1611 this.exportImportService = exportImportService;
1612 }
1613
1614
1619 public com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService getExportImportConfigurationLocalService() {
1620 return exportImportConfigurationLocalService;
1621 }
1622
1623
1628 public void setExportImportConfigurationLocalService(
1629 com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService) {
1630 this.exportImportConfigurationLocalService = exportImportConfigurationLocalService;
1631 }
1632
1633
1638 public com.liferay.portlet.exportimport.service.ExportImportConfigurationService getExportImportConfigurationService() {
1639 return exportImportConfigurationService;
1640 }
1641
1642
1647 public void setExportImportConfigurationService(
1648 com.liferay.portlet.exportimport.service.ExportImportConfigurationService exportImportConfigurationService) {
1649 this.exportImportConfigurationService = exportImportConfigurationService;
1650 }
1651
1652
1657 public ExportImportConfigurationPersistence getExportImportConfigurationPersistence() {
1658 return exportImportConfigurationPersistence;
1659 }
1660
1661
1666 public void setExportImportConfigurationPersistence(
1667 ExportImportConfigurationPersistence exportImportConfigurationPersistence) {
1668 this.exportImportConfigurationPersistence = exportImportConfigurationPersistence;
1669 }
1670
1671
1676 public com.liferay.portlet.exportimport.service.StagingLocalService getStagingLocalService() {
1677 return stagingLocalService;
1678 }
1679
1680
1685 public void setStagingLocalService(
1686 com.liferay.portlet.exportimport.service.StagingLocalService stagingLocalService) {
1687 this.stagingLocalService = stagingLocalService;
1688 }
1689
1690
1695 public com.liferay.portlet.exportimport.service.StagingService getStagingService() {
1696 return stagingService;
1697 }
1698
1699
1704 public void setStagingService(
1705 com.liferay.portlet.exportimport.service.StagingService stagingService) {
1706 this.stagingService = stagingService;
1707 }
1708
1709
1714 public com.liferay.portlet.shopping.service.ShoppingCartLocalService getShoppingCartLocalService() {
1715 return shoppingCartLocalService;
1716 }
1717
1718
1723 public void setShoppingCartLocalService(
1724 com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService) {
1725 this.shoppingCartLocalService = shoppingCartLocalService;
1726 }
1727
1728
1733 public ShoppingCartPersistence getShoppingCartPersistence() {
1734 return shoppingCartPersistence;
1735 }
1736
1737
1742 public void setShoppingCartPersistence(
1743 ShoppingCartPersistence shoppingCartPersistence) {
1744 this.shoppingCartPersistence = shoppingCartPersistence;
1745 }
1746
1747
1752 public com.liferay.portlet.shopping.service.ShoppingCategoryLocalService getShoppingCategoryLocalService() {
1753 return shoppingCategoryLocalService;
1754 }
1755
1756
1761 public void setShoppingCategoryLocalService(
1762 com.liferay.portlet.shopping.service.ShoppingCategoryLocalService shoppingCategoryLocalService) {
1763 this.shoppingCategoryLocalService = shoppingCategoryLocalService;
1764 }
1765
1766
1771 public com.liferay.portlet.shopping.service.ShoppingCategoryService getShoppingCategoryService() {
1772 return shoppingCategoryService;
1773 }
1774
1775
1780 public void setShoppingCategoryService(
1781 com.liferay.portlet.shopping.service.ShoppingCategoryService shoppingCategoryService) {
1782 this.shoppingCategoryService = shoppingCategoryService;
1783 }
1784
1785
1790 public ShoppingCategoryPersistence getShoppingCategoryPersistence() {
1791 return shoppingCategoryPersistence;
1792 }
1793
1794
1799 public void setShoppingCategoryPersistence(
1800 ShoppingCategoryPersistence shoppingCategoryPersistence) {
1801 this.shoppingCategoryPersistence = shoppingCategoryPersistence;
1802 }
1803
1804
1809 public com.liferay.portlet.shopping.service.ShoppingCouponLocalService getShoppingCouponLocalService() {
1810 return shoppingCouponLocalService;
1811 }
1812
1813
1818 public void setShoppingCouponLocalService(
1819 com.liferay.portlet.shopping.service.ShoppingCouponLocalService shoppingCouponLocalService) {
1820 this.shoppingCouponLocalService = shoppingCouponLocalService;
1821 }
1822
1823
1828 public com.liferay.portlet.shopping.service.ShoppingCouponService getShoppingCouponService() {
1829 return shoppingCouponService;
1830 }
1831
1832
1837 public void setShoppingCouponService(
1838 com.liferay.portlet.shopping.service.ShoppingCouponService shoppingCouponService) {
1839 this.shoppingCouponService = shoppingCouponService;
1840 }
1841
1842
1847 public ShoppingCouponPersistence getShoppingCouponPersistence() {
1848 return shoppingCouponPersistence;
1849 }
1850
1851
1856 public void setShoppingCouponPersistence(
1857 ShoppingCouponPersistence shoppingCouponPersistence) {
1858 this.shoppingCouponPersistence = shoppingCouponPersistence;
1859 }
1860
1861
1866 public ShoppingCouponFinder getShoppingCouponFinder() {
1867 return shoppingCouponFinder;
1868 }
1869
1870
1875 public void setShoppingCouponFinder(
1876 ShoppingCouponFinder shoppingCouponFinder) {
1877 this.shoppingCouponFinder = shoppingCouponFinder;
1878 }
1879
1880
1885 public com.liferay.portlet.shopping.service.ShoppingOrderLocalService getShoppingOrderLocalService() {
1886 return shoppingOrderLocalService;
1887 }
1888
1889
1894 public void setShoppingOrderLocalService(
1895 com.liferay.portlet.shopping.service.ShoppingOrderLocalService shoppingOrderLocalService) {
1896 this.shoppingOrderLocalService = shoppingOrderLocalService;
1897 }
1898
1899
1904 public com.liferay.portlet.shopping.service.ShoppingOrderService getShoppingOrderService() {
1905 return shoppingOrderService;
1906 }
1907
1908
1913 public void setShoppingOrderService(
1914 com.liferay.portlet.shopping.service.ShoppingOrderService shoppingOrderService) {
1915 this.shoppingOrderService = shoppingOrderService;
1916 }
1917
1918
1923 public ShoppingOrderPersistence getShoppingOrderPersistence() {
1924 return shoppingOrderPersistence;
1925 }
1926
1927
1932 public void setShoppingOrderPersistence(
1933 ShoppingOrderPersistence shoppingOrderPersistence) {
1934 this.shoppingOrderPersistence = shoppingOrderPersistence;
1935 }
1936
1937
1942 public ShoppingOrderFinder getShoppingOrderFinder() {
1943 return shoppingOrderFinder;
1944 }
1945
1946
1951 public void setShoppingOrderFinder(ShoppingOrderFinder shoppingOrderFinder) {
1952 this.shoppingOrderFinder = shoppingOrderFinder;
1953 }
1954
1955
1960 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1961 return socialActivityLocalService;
1962 }
1963
1964
1969 public void setSocialActivityLocalService(
1970 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1971 this.socialActivityLocalService = socialActivityLocalService;
1972 }
1973
1974
1979 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1980 return socialActivityService;
1981 }
1982
1983
1988 public void setSocialActivityService(
1989 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1990 this.socialActivityService = socialActivityService;
1991 }
1992
1993
1998 public SocialActivityPersistence getSocialActivityPersistence() {
1999 return socialActivityPersistence;
2000 }
2001
2002
2007 public void setSocialActivityPersistence(
2008 SocialActivityPersistence socialActivityPersistence) {
2009 this.socialActivityPersistence = socialActivityPersistence;
2010 }
2011
2012
2017 public SocialActivityFinder getSocialActivityFinder() {
2018 return socialActivityFinder;
2019 }
2020
2021
2026 public void setSocialActivityFinder(
2027 SocialActivityFinder socialActivityFinder) {
2028 this.socialActivityFinder = socialActivityFinder;
2029 }
2030
2031
2036 public com.liferay.portlet.social.service.SocialActivitySettingLocalService getSocialActivitySettingLocalService() {
2037 return socialActivitySettingLocalService;
2038 }
2039
2040
2045 public void setSocialActivitySettingLocalService(
2046 com.liferay.portlet.social.service.SocialActivitySettingLocalService socialActivitySettingLocalService) {
2047 this.socialActivitySettingLocalService = socialActivitySettingLocalService;
2048 }
2049
2050
2055 public com.liferay.portlet.social.service.SocialActivitySettingService getSocialActivitySettingService() {
2056 return socialActivitySettingService;
2057 }
2058
2059
2064 public void setSocialActivitySettingService(
2065 com.liferay.portlet.social.service.SocialActivitySettingService socialActivitySettingService) {
2066 this.socialActivitySettingService = socialActivitySettingService;
2067 }
2068
2069
2074 public SocialActivitySettingPersistence getSocialActivitySettingPersistence() {
2075 return socialActivitySettingPersistence;
2076 }
2077
2078
2083 public void setSocialActivitySettingPersistence(
2084 SocialActivitySettingPersistence socialActivitySettingPersistence) {
2085 this.socialActivitySettingPersistence = socialActivitySettingPersistence;
2086 }
2087
2088
2093 public com.liferay.portlet.social.service.SocialRequestLocalService getSocialRequestLocalService() {
2094 return socialRequestLocalService;
2095 }
2096
2097
2102 public void setSocialRequestLocalService(
2103 com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService) {
2104 this.socialRequestLocalService = socialRequestLocalService;
2105 }
2106
2107
2112 public com.liferay.portlet.social.service.SocialRequestService getSocialRequestService() {
2113 return socialRequestService;
2114 }
2115
2116
2121 public void setSocialRequestService(
2122 com.liferay.portlet.social.service.SocialRequestService socialRequestService) {
2123 this.socialRequestService = socialRequestService;
2124 }
2125
2126
2131 public SocialRequestPersistence getSocialRequestPersistence() {
2132 return socialRequestPersistence;
2133 }
2134
2135
2140 public void setSocialRequestPersistence(
2141 SocialRequestPersistence socialRequestPersistence) {
2142 this.socialRequestPersistence = socialRequestPersistence;
2143 }
2144
2145
2150 public com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService getSCFrameworkVersionLocalService() {
2151 return scFrameworkVersionLocalService;
2152 }
2153
2154
2159 public void setSCFrameworkVersionLocalService(
2160 com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
2161 this.scFrameworkVersionLocalService = scFrameworkVersionLocalService;
2162 }
2163
2164
2169 public com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService getSCFrameworkVersionService() {
2170 return scFrameworkVersionService;
2171 }
2172
2173
2178 public void setSCFrameworkVersionService(
2179 com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService scFrameworkVersionService) {
2180 this.scFrameworkVersionService = scFrameworkVersionService;
2181 }
2182
2183
2188 public SCFrameworkVersionPersistence getSCFrameworkVersionPersistence() {
2189 return scFrameworkVersionPersistence;
2190 }
2191
2192
2197 public void setSCFrameworkVersionPersistence(
2198 SCFrameworkVersionPersistence scFrameworkVersionPersistence) {
2199 this.scFrameworkVersionPersistence = scFrameworkVersionPersistence;
2200 }
2201
2202
2207 public com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService getSCProductEntryLocalService() {
2208 return scProductEntryLocalService;
2209 }
2210
2211
2216 public void setSCProductEntryLocalService(
2217 com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService scProductEntryLocalService) {
2218 this.scProductEntryLocalService = scProductEntryLocalService;
2219 }
2220
2221
2226 public com.liferay.portlet.softwarecatalog.service.SCProductEntryService getSCProductEntryService() {
2227 return scProductEntryService;
2228 }
2229
2230
2235 public void setSCProductEntryService(
2236 com.liferay.portlet.softwarecatalog.service.SCProductEntryService scProductEntryService) {
2237 this.scProductEntryService = scProductEntryService;
2238 }
2239
2240
2245 public SCProductEntryPersistence getSCProductEntryPersistence() {
2246 return scProductEntryPersistence;
2247 }
2248
2249
2254 public void setSCProductEntryPersistence(
2255 SCProductEntryPersistence scProductEntryPersistence) {
2256 this.scProductEntryPersistence = scProductEntryPersistence;
2257 }
2258
2259
2264 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
2265 return trashEntryLocalService;
2266 }
2267
2268
2273 public void setTrashEntryLocalService(
2274 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
2275 this.trashEntryLocalService = trashEntryLocalService;
2276 }
2277
2278
2283 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
2284 return trashEntryService;
2285 }
2286
2287
2292 public void setTrashEntryService(
2293 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
2294 this.trashEntryService = trashEntryService;
2295 }
2296
2297
2302 public TrashEntryPersistence getTrashEntryPersistence() {
2303 return trashEntryPersistence;
2304 }
2305
2306
2311 public void setTrashEntryPersistence(
2312 TrashEntryPersistence trashEntryPersistence) {
2313 this.trashEntryPersistence = trashEntryPersistence;
2314 }
2315
2316
2321 public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
2322 return layoutLocalService;
2323 }
2324
2325
2330 public void setLayoutLocalService(
2331 com.liferay.portal.service.LayoutLocalService layoutLocalService) {
2332 this.layoutLocalService = layoutLocalService;
2333 }
2334
2335
2340 public com.liferay.portal.service.LayoutService getLayoutService() {
2341 return layoutService;
2342 }
2343
2344
2349 public void setLayoutService(
2350 com.liferay.portal.service.LayoutService layoutService) {
2351 this.layoutService = layoutService;
2352 }
2353
2354
2359 public LayoutPersistence getLayoutPersistence() {
2360 return layoutPersistence;
2361 }
2362
2363
2368 public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
2369 this.layoutPersistence = layoutPersistence;
2370 }
2371
2372
2377 public LayoutFinder getLayoutFinder() {
2378 return layoutFinder;
2379 }
2380
2381
2386 public void setLayoutFinder(LayoutFinder layoutFinder) {
2387 this.layoutFinder = layoutFinder;
2388 }
2389
2390
2395 public com.liferay.portal.service.LayoutPrototypeLocalService getLayoutPrototypeLocalService() {
2396 return layoutPrototypeLocalService;
2397 }
2398
2399
2404 public void setLayoutPrototypeLocalService(
2405 com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService) {
2406 this.layoutPrototypeLocalService = layoutPrototypeLocalService;
2407 }
2408
2409
2414 public com.liferay.portal.service.LayoutPrototypeService getLayoutPrototypeService() {
2415 return layoutPrototypeService;
2416 }
2417
2418
2423 public void setLayoutPrototypeService(
2424 com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService) {
2425 this.layoutPrototypeService = layoutPrototypeService;
2426 }
2427
2428
2433 public LayoutPrototypePersistence getLayoutPrototypePersistence() {
2434 return layoutPrototypePersistence;
2435 }
2436
2437
2442 public void setLayoutPrototypePersistence(
2443 LayoutPrototypePersistence layoutPrototypePersistence) {
2444 this.layoutPrototypePersistence = layoutPrototypePersistence;
2445 }
2446
2447
2452 public com.liferay.portal.service.LayoutSetLocalService getLayoutSetLocalService() {
2453 return layoutSetLocalService;
2454 }
2455
2456
2461 public void setLayoutSetLocalService(
2462 com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService) {
2463 this.layoutSetLocalService = layoutSetLocalService;
2464 }
2465
2466
2471 public com.liferay.portal.service.LayoutSetService getLayoutSetService() {
2472 return layoutSetService;
2473 }
2474
2475
2480 public void setLayoutSetService(
2481 com.liferay.portal.service.LayoutSetService layoutSetService) {
2482 this.layoutSetService = layoutSetService;
2483 }
2484
2485
2490 public LayoutSetPersistence getLayoutSetPersistence() {
2491 return layoutSetPersistence;
2492 }
2493
2494
2499 public void setLayoutSetPersistence(
2500 LayoutSetPersistence layoutSetPersistence) {
2501 this.layoutSetPersistence = layoutSetPersistence;
2502 }
2503
2504
2509 public com.liferay.portal.service.LayoutSetBranchLocalService getLayoutSetBranchLocalService() {
2510 return layoutSetBranchLocalService;
2511 }
2512
2513
2518 public void setLayoutSetBranchLocalService(
2519 com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService) {
2520 this.layoutSetBranchLocalService = layoutSetBranchLocalService;
2521 }
2522
2523
2528 public com.liferay.portal.service.LayoutSetBranchService getLayoutSetBranchService() {
2529 return layoutSetBranchService;
2530 }
2531
2532
2537 public void setLayoutSetBranchService(
2538 com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService) {
2539 this.layoutSetBranchService = layoutSetBranchService;
2540 }
2541
2542
2547 public LayoutSetBranchPersistence getLayoutSetBranchPersistence() {
2548 return layoutSetBranchPersistence;
2549 }
2550
2551
2556 public void setLayoutSetBranchPersistence(
2557 LayoutSetBranchPersistence layoutSetBranchPersistence) {
2558 this.layoutSetBranchPersistence = layoutSetBranchPersistence;
2559 }
2560
2561
2566 public com.liferay.portal.service.LayoutSetPrototypeLocalService getLayoutSetPrototypeLocalService() {
2567 return layoutSetPrototypeLocalService;
2568 }
2569
2570
2575 public void setLayoutSetPrototypeLocalService(
2576 com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService) {
2577 this.layoutSetPrototypeLocalService = layoutSetPrototypeLocalService;
2578 }
2579
2580
2585 public com.liferay.portal.service.LayoutSetPrototypeService getLayoutSetPrototypeService() {
2586 return layoutSetPrototypeService;
2587 }
2588
2589
2594 public void setLayoutSetPrototypeService(
2595 com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService) {
2596 this.layoutSetPrototypeService = layoutSetPrototypeService;
2597 }
2598
2599
2604 public LayoutSetPrototypePersistence getLayoutSetPrototypePersistence() {
2605 return layoutSetPrototypePersistence;
2606 }
2607
2608
2613 public void setLayoutSetPrototypePersistence(
2614 LayoutSetPrototypePersistence layoutSetPrototypePersistence) {
2615 this.layoutSetPrototypePersistence = layoutSetPrototypePersistence;
2616 }
2617
2618
2623 public com.liferay.portal.service.MembershipRequestLocalService getMembershipRequestLocalService() {
2624 return membershipRequestLocalService;
2625 }
2626
2627
2632 public void setMembershipRequestLocalService(
2633 com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService) {
2634 this.membershipRequestLocalService = membershipRequestLocalService;
2635 }
2636
2637
2642 public com.liferay.portal.service.MembershipRequestService getMembershipRequestService() {
2643 return membershipRequestService;
2644 }
2645
2646
2651 public void setMembershipRequestService(
2652 com.liferay.portal.service.MembershipRequestService membershipRequestService) {
2653 this.membershipRequestService = membershipRequestService;
2654 }
2655
2656
2661 public MembershipRequestPersistence getMembershipRequestPersistence() {
2662 return membershipRequestPersistence;
2663 }
2664
2665
2670 public void setMembershipRequestPersistence(
2671 MembershipRequestPersistence membershipRequestPersistence) {
2672 this.membershipRequestPersistence = membershipRequestPersistence;
2673 }
2674
2675
2680 public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
2681 return organizationLocalService;
2682 }
2683
2684
2689 public void setOrganizationLocalService(
2690 com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
2691 this.organizationLocalService = organizationLocalService;
2692 }
2693
2694
2699 public com.liferay.portal.service.OrganizationService getOrganizationService() {
2700 return organizationService;
2701 }
2702
2703
2708 public void setOrganizationService(
2709 com.liferay.portal.service.OrganizationService organizationService) {
2710 this.organizationService = organizationService;
2711 }
2712
2713
2718 public OrganizationPersistence getOrganizationPersistence() {
2719 return organizationPersistence;
2720 }
2721
2722
2727 public void setOrganizationPersistence(
2728 OrganizationPersistence organizationPersistence) {
2729 this.organizationPersistence = organizationPersistence;
2730 }
2731
2732
2737 public OrganizationFinder getOrganizationFinder() {
2738 return organizationFinder;
2739 }
2740
2741
2746 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
2747 this.organizationFinder = organizationFinder;
2748 }
2749
2750
2755 public com.liferay.portal.service.PortletLocalService getPortletLocalService() {
2756 return portletLocalService;
2757 }
2758
2759
2764 public void setPortletLocalService(
2765 com.liferay.portal.service.PortletLocalService portletLocalService) {
2766 this.portletLocalService = portletLocalService;
2767 }
2768
2769
2774 public com.liferay.portal.service.PortletService getPortletService() {
2775 return portletService;
2776 }
2777
2778
2783 public void setPortletService(
2784 com.liferay.portal.service.PortletService portletService) {
2785 this.portletService = portletService;
2786 }
2787
2788
2793 public PortletPersistence getPortletPersistence() {
2794 return portletPersistence;
2795 }
2796
2797
2802 public void setPortletPersistence(PortletPersistence portletPersistence) {
2803 this.portletPersistence = portletPersistence;
2804 }
2805
2806
2811 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
2812 return portletPreferencesLocalService;
2813 }
2814
2815
2820 public void setPortletPreferencesLocalService(
2821 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
2822 this.portletPreferencesLocalService = portletPreferencesLocalService;
2823 }
2824
2825
2830 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
2831 return portletPreferencesService;
2832 }
2833
2834
2839 public void setPortletPreferencesService(
2840 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
2841 this.portletPreferencesService = portletPreferencesService;
2842 }
2843
2844
2849 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
2850 return portletPreferencesPersistence;
2851 }
2852
2853
2858 public void setPortletPreferencesPersistence(
2859 PortletPreferencesPersistence portletPreferencesPersistence) {
2860 this.portletPreferencesPersistence = portletPreferencesPersistence;
2861 }
2862
2863
2868 public PortletPreferencesFinder getPortletPreferencesFinder() {
2869 return portletPreferencesFinder;
2870 }
2871
2872
2877 public void setPortletPreferencesFinder(
2878 PortletPreferencesFinder portletPreferencesFinder) {
2879 this.portletPreferencesFinder = portletPreferencesFinder;
2880 }
2881
2882
2887 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
2888 return resourceLocalService;
2889 }
2890
2891
2896 public void setResourceLocalService(
2897 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
2898 this.resourceLocalService = resourceLocalService;
2899 }
2900
2901
2906 public com.liferay.portal.service.ResourceActionLocalService getResourceActionLocalService() {
2907 return resourceActionLocalService;
2908 }
2909
2910
2915 public void setResourceActionLocalService(
2916 com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService) {
2917 this.resourceActionLocalService = resourceActionLocalService;
2918 }
2919
2920
2925 public ResourceActionPersistence getResourceActionPersistence() {
2926 return resourceActionPersistence;
2927 }
2928
2929
2934 public void setResourceActionPersistence(
2935 ResourceActionPersistence resourceActionPersistence) {
2936 this.resourceActionPersistence = resourceActionPersistence;
2937 }
2938
2939
2944 public com.liferay.portal.service.ResourceBlockLocalService getResourceBlockLocalService() {
2945 return resourceBlockLocalService;
2946 }
2947
2948
2953 public void setResourceBlockLocalService(
2954 com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService) {
2955 this.resourceBlockLocalService = resourceBlockLocalService;
2956 }
2957
2958
2963 public com.liferay.portal.service.ResourceBlockService getResourceBlockService() {
2964 return resourceBlockService;
2965 }
2966
2967
2972 public void setResourceBlockService(
2973 com.liferay.portal.service.ResourceBlockService resourceBlockService) {
2974 this.resourceBlockService = resourceBlockService;
2975 }
2976
2977
2982 public ResourceBlockPersistence getResourceBlockPersistence() {
2983 return resourceBlockPersistence;
2984 }
2985
2986
2991 public void setResourceBlockPersistence(
2992 ResourceBlockPersistence resourceBlockPersistence) {
2993 this.resourceBlockPersistence = resourceBlockPersistence;
2994 }
2995
2996
3001 public ResourceBlockFinder getResourceBlockFinder() {
3002 return resourceBlockFinder;
3003 }
3004
3005
3010 public void setResourceBlockFinder(ResourceBlockFinder resourceBlockFinder) {
3011 this.resourceBlockFinder = resourceBlockFinder;
3012 }
3013
3014
3019 public com.liferay.portal.service.ResourcePermissionLocalService getResourcePermissionLocalService() {
3020 return resourcePermissionLocalService;
3021 }
3022
3023
3028 public void setResourcePermissionLocalService(
3029 com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService) {
3030 this.resourcePermissionLocalService = resourcePermissionLocalService;
3031 }
3032
3033
3038 public com.liferay.portal.service.ResourcePermissionService getResourcePermissionService() {
3039 return resourcePermissionService;
3040 }
3041
3042
3047 public void setResourcePermissionService(
3048 com.liferay.portal.service.ResourcePermissionService resourcePermissionService) {
3049 this.resourcePermissionService = resourcePermissionService;
3050 }
3051
3052
3057 public ResourcePermissionPersistence getResourcePermissionPersistence() {
3058 return resourcePermissionPersistence;
3059 }
3060
3061
3066 public void setResourcePermissionPersistence(
3067 ResourcePermissionPersistence resourcePermissionPersistence) {
3068 this.resourcePermissionPersistence = resourcePermissionPersistence;
3069 }
3070
3071
3076 public ResourcePermissionFinder getResourcePermissionFinder() {
3077 return resourcePermissionFinder;
3078 }
3079
3080
3085 public void setResourcePermissionFinder(
3086 ResourcePermissionFinder resourcePermissionFinder) {
3087 this.resourcePermissionFinder = resourcePermissionFinder;
3088 }
3089
3090
3095 public com.liferay.portal.service.ResourceTypePermissionLocalService getResourceTypePermissionLocalService() {
3096 return resourceTypePermissionLocalService;
3097 }
3098
3099
3104 public void setResourceTypePermissionLocalService(
3105 com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService) {
3106 this.resourceTypePermissionLocalService = resourceTypePermissionLocalService;
3107 }
3108
3109
3114 public ResourceTypePermissionPersistence getResourceTypePermissionPersistence() {
3115 return resourceTypePermissionPersistence;
3116 }
3117
3118
3123 public void setResourceTypePermissionPersistence(
3124 ResourceTypePermissionPersistence resourceTypePermissionPersistence) {
3125 this.resourceTypePermissionPersistence = resourceTypePermissionPersistence;
3126 }
3127
3128
3133 public ResourceTypePermissionFinder getResourceTypePermissionFinder() {
3134 return resourceTypePermissionFinder;
3135 }
3136
3137
3142 public void setResourceTypePermissionFinder(
3143 ResourceTypePermissionFinder resourceTypePermissionFinder) {
3144 this.resourceTypePermissionFinder = resourceTypePermissionFinder;
3145 }
3146
3147
3152 public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
3153 return roleLocalService;
3154 }
3155
3156
3161 public void setRoleLocalService(
3162 com.liferay.portal.service.RoleLocalService roleLocalService) {
3163 this.roleLocalService = roleLocalService;
3164 }
3165
3166
3171 public com.liferay.portal.service.RoleService getRoleService() {
3172 return roleService;
3173 }
3174
3175
3180 public void setRoleService(
3181 com.liferay.portal.service.RoleService roleService) {
3182 this.roleService = roleService;
3183 }
3184
3185
3190 public RolePersistence getRolePersistence() {
3191 return rolePersistence;
3192 }
3193
3194
3199 public void setRolePersistence(RolePersistence rolePersistence) {
3200 this.rolePersistence = rolePersistence;
3201 }
3202
3203
3208 public RoleFinder getRoleFinder() {
3209 return roleFinder;
3210 }
3211
3212
3217 public void setRoleFinder(RoleFinder roleFinder) {
3218 this.roleFinder = roleFinder;
3219 }
3220
3221
3226 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
3227 return subscriptionLocalService;
3228 }
3229
3230
3235 public void setSubscriptionLocalService(
3236 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
3237 this.subscriptionLocalService = subscriptionLocalService;
3238 }
3239
3240
3245 public SubscriptionPersistence getSubscriptionPersistence() {
3246 return subscriptionPersistence;
3247 }
3248
3249
3254 public void setSubscriptionPersistence(
3255 SubscriptionPersistence subscriptionPersistence) {
3256 this.subscriptionPersistence = subscriptionPersistence;
3257 }
3258
3259
3264 public com.liferay.portal.service.TeamLocalService getTeamLocalService() {
3265 return teamLocalService;
3266 }
3267
3268
3273 public void setTeamLocalService(
3274 com.liferay.portal.service.TeamLocalService teamLocalService) {
3275 this.teamLocalService = teamLocalService;
3276 }
3277
3278
3283 public com.liferay.portal.service.TeamService getTeamService() {
3284 return teamService;
3285 }
3286
3287
3292 public void setTeamService(
3293 com.liferay.portal.service.TeamService teamService) {
3294 this.teamService = teamService;
3295 }
3296
3297
3302 public TeamPersistence getTeamPersistence() {
3303 return teamPersistence;
3304 }
3305
3306
3311 public void setTeamPersistence(TeamPersistence teamPersistence) {
3312 this.teamPersistence = teamPersistence;
3313 }
3314
3315
3320 public TeamFinder getTeamFinder() {
3321 return teamFinder;
3322 }
3323
3324
3329 public void setTeamFinder(TeamFinder teamFinder) {
3330 this.teamFinder = teamFinder;
3331 }
3332
3333
3338 public com.liferay.portal.service.UserLocalService getUserLocalService() {
3339 return userLocalService;
3340 }
3341
3342
3347 public void setUserLocalService(
3348 com.liferay.portal.service.UserLocalService userLocalService) {
3349 this.userLocalService = userLocalService;
3350 }
3351
3352
3357 public com.liferay.portal.service.UserService getUserService() {
3358 return userService;
3359 }
3360
3361
3366 public void setUserService(
3367 com.liferay.portal.service.UserService userService) {
3368 this.userService = userService;
3369 }
3370
3371
3376 public UserPersistence getUserPersistence() {
3377 return userPersistence;
3378 }
3379
3380
3385 public void setUserPersistence(UserPersistence userPersistence) {
3386 this.userPersistence = userPersistence;
3387 }
3388
3389
3394 public UserFinder getUserFinder() {
3395 return userFinder;
3396 }
3397
3398
3403 public void setUserFinder(UserFinder userFinder) {
3404 this.userFinder = userFinder;
3405 }
3406
3407
3412 public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
3413 return userGroupLocalService;
3414 }
3415
3416
3421 public void setUserGroupLocalService(
3422 com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
3423 this.userGroupLocalService = userGroupLocalService;
3424 }
3425
3426
3431 public com.liferay.portal.service.UserGroupService getUserGroupService() {
3432 return userGroupService;
3433 }
3434
3435
3440 public void setUserGroupService(
3441 com.liferay.portal.service.UserGroupService userGroupService) {
3442 this.userGroupService = userGroupService;
3443 }
3444
3445
3450 public UserGroupPersistence getUserGroupPersistence() {
3451 return userGroupPersistence;
3452 }
3453
3454
3459 public void setUserGroupPersistence(
3460 UserGroupPersistence userGroupPersistence) {
3461 this.userGroupPersistence = userGroupPersistence;
3462 }
3463
3464
3469 public UserGroupFinder getUserGroupFinder() {
3470 return userGroupFinder;
3471 }
3472
3473
3478 public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
3479 this.userGroupFinder = userGroupFinder;
3480 }
3481
3482
3487 public com.liferay.portal.service.UserGroupGroupRoleLocalService getUserGroupGroupRoleLocalService() {
3488 return userGroupGroupRoleLocalService;
3489 }
3490
3491
3496 public void setUserGroupGroupRoleLocalService(
3497 com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService) {
3498 this.userGroupGroupRoleLocalService = userGroupGroupRoleLocalService;
3499 }
3500
3501
3506 public com.liferay.portal.service.UserGroupGroupRoleService getUserGroupGroupRoleService() {
3507 return userGroupGroupRoleService;
3508 }
3509
3510
3515 public void setUserGroupGroupRoleService(
3516 com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService) {
3517 this.userGroupGroupRoleService = userGroupGroupRoleService;
3518 }
3519
3520
3525 public UserGroupGroupRolePersistence getUserGroupGroupRolePersistence() {
3526 return userGroupGroupRolePersistence;
3527 }
3528
3529
3534 public void setUserGroupGroupRolePersistence(
3535 UserGroupGroupRolePersistence userGroupGroupRolePersistence) {
3536 this.userGroupGroupRolePersistence = userGroupGroupRolePersistence;
3537 }
3538
3539
3544 public UserGroupGroupRoleFinder getUserGroupGroupRoleFinder() {
3545 return userGroupGroupRoleFinder;
3546 }
3547
3548
3553 public void setUserGroupGroupRoleFinder(
3554 UserGroupGroupRoleFinder userGroupGroupRoleFinder) {
3555 this.userGroupGroupRoleFinder = userGroupGroupRoleFinder;
3556 }
3557
3558
3563 public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
3564 return userGroupRoleLocalService;
3565 }
3566
3567
3572 public void setUserGroupRoleLocalService(
3573 com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
3574 this.userGroupRoleLocalService = userGroupRoleLocalService;
3575 }
3576
3577
3582 public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
3583 return userGroupRoleService;
3584 }
3585
3586
3591 public void setUserGroupRoleService(
3592 com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
3593 this.userGroupRoleService = userGroupRoleService;
3594 }
3595
3596
3601 public UserGroupRolePersistence getUserGroupRolePersistence() {
3602 return userGroupRolePersistence;
3603 }
3604
3605
3610 public void setUserGroupRolePersistence(
3611 UserGroupRolePersistence userGroupRolePersistence) {
3612 this.userGroupRolePersistence = userGroupRolePersistence;
3613 }
3614
3615
3620 public UserGroupRoleFinder getUserGroupRoleFinder() {
3621 return userGroupRoleFinder;
3622 }
3623
3624
3629 public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
3630 this.userGroupRoleFinder = userGroupRoleFinder;
3631 }
3632
3633
3638 public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
3639 return workflowDefinitionLinkLocalService;
3640 }
3641
3642
3647 public void setWorkflowDefinitionLinkLocalService(
3648 com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
3649 this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
3650 }
3651
3652
3657 public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
3658 return workflowDefinitionLinkPersistence;
3659 }
3660
3661
3666 public void setWorkflowDefinitionLinkPersistence(
3667 WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
3668 this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
3669 }
3670
3671 public void afterPropertiesSet() {
3672 persistedModelLocalServiceRegistry.register("com.liferay.portal.model.Group",
3673 groupLocalService);
3674 }
3675
3676 public void destroy() {
3677 persistedModelLocalServiceRegistry.unregister(
3678 "com.liferay.portal.model.Group");
3679 }
3680
3681
3686 @Override
3687 public String getBeanIdentifier() {
3688 return _beanIdentifier;
3689 }
3690
3691
3696 @Override
3697 public void setBeanIdentifier(String beanIdentifier) {
3698 _beanIdentifier = beanIdentifier;
3699 }
3700
3701 protected Class<?> getModelClass() {
3702 return Group.class;
3703 }
3704
3705 protected String getModelClassName() {
3706 return Group.class.getName();
3707 }
3708
3709
3714 protected void runSQL(String sql) {
3715 try {
3716 DataSource dataSource = groupPersistence.getDataSource();
3717
3718 DB db = DBFactoryUtil.getDB();
3719
3720 sql = db.buildSQL(sql);
3721 sql = PortalUtil.transformSQL(sql);
3722
3723 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
3724 sql, new int[0]);
3725
3726 sqlUpdate.update();
3727 }
3728 catch (Exception e) {
3729 throw new SystemException(e);
3730 }
3731 }
3732
3733 @BeanReference(type = GroupLocalService.class)
3734 protected GroupLocalService groupLocalService;
3735 @BeanReference(type = com.liferay.portal.service.GroupService.class)
3736 protected com.liferay.portal.service.GroupService groupService;
3737 @BeanReference(type = GroupPersistence.class)
3738 protected GroupPersistence groupPersistence;
3739 @BeanReference(type = GroupFinder.class)
3740 protected GroupFinder groupFinder;
3741 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
3742 protected com.liferay.counter.service.CounterLocalService counterLocalService;
3743 @BeanReference(type = com.liferay.portal.service.AccountLocalService.class)
3744 protected com.liferay.portal.service.AccountLocalService accountLocalService;
3745 @BeanReference(type = com.liferay.portal.service.AccountService.class)
3746 protected com.liferay.portal.service.AccountService accountService;
3747 @BeanReference(type = AccountPersistence.class)
3748 protected AccountPersistence accountPersistence;
3749 @BeanReference(type = com.liferay.portal.service.BackgroundTaskLocalService.class)
3750 protected com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService;
3751 @BeanReference(type = com.liferay.portal.service.BackgroundTaskService.class)
3752 protected com.liferay.portal.service.BackgroundTaskService backgroundTaskService;
3753 @BeanReference(type = BackgroundTaskPersistence.class)
3754 protected BackgroundTaskPersistence backgroundTaskPersistence;
3755 @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
3756 protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
3757 @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
3758 protected com.liferay.portal.service.ClassNameService classNameService;
3759 @BeanReference(type = ClassNamePersistence.class)
3760 protected ClassNamePersistence classNamePersistence;
3761 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
3762 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
3763 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
3764 protected com.liferay.portal.service.CompanyService companyService;
3765 @BeanReference(type = CompanyPersistence.class)
3766 protected CompanyPersistence companyPersistence;
3767 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
3768 protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
3769 @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
3770 protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
3771 @BeanReference(type = AssetCategoryPersistence.class)
3772 protected AssetCategoryPersistence assetCategoryPersistence;
3773 @BeanReference(type = AssetCategoryFinder.class)
3774 protected AssetCategoryFinder assetCategoryFinder;
3775 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
3776 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
3777 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
3778 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
3779 @BeanReference(type = AssetEntryPersistence.class)
3780 protected AssetEntryPersistence assetEntryPersistence;
3781 @BeanReference(type = AssetEntryFinder.class)
3782 protected AssetEntryFinder assetEntryFinder;
3783 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
3784 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
3785 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
3786 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
3787 @BeanReference(type = AssetTagPersistence.class)
3788 protected AssetTagPersistence assetTagPersistence;
3789 @BeanReference(type = AssetTagFinder.class)
3790 protected AssetTagFinder assetTagFinder;
3791 @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyLocalService.class)
3792 protected com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService;
3793 @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyService.class)
3794 protected com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService;
3795 @BeanReference(type = AssetVocabularyPersistence.class)
3796 protected AssetVocabularyPersistence assetVocabularyPersistence;
3797 @BeanReference(type = AssetVocabularyFinder.class)
3798 protected AssetVocabularyFinder assetVocabularyFinder;
3799 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
3800 protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
3801 @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
3802 protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
3803 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
3804 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
3805 @BeanReference(type = ExpandoRowPersistence.class)
3806 protected ExpandoRowPersistence expandoRowPersistence;
3807 @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportLocalService.class)
3808 protected com.liferay.portlet.exportimport.service.ExportImportLocalService exportImportLocalService;
3809 @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportService.class)
3810 protected com.liferay.portlet.exportimport.service.ExportImportService exportImportService;
3811 @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService.class)
3812 protected com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService;
3813 @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportConfigurationService.class)
3814 protected com.liferay.portlet.exportimport.service.ExportImportConfigurationService exportImportConfigurationService;
3815 @BeanReference(type = ExportImportConfigurationPersistence.class)
3816 protected ExportImportConfigurationPersistence exportImportConfigurationPersistence;
3817 @BeanReference(type = com.liferay.portlet.exportimport.service.StagingLocalService.class)
3818 protected com.liferay.portlet.exportimport.service.StagingLocalService stagingLocalService;
3819 @BeanReference(type = com.liferay.portlet.exportimport.service.StagingService.class)
3820 protected com.liferay.portlet.exportimport.service.StagingService stagingService;
3821 @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCartLocalService.class)
3822 protected com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService;
3823 @BeanReference(type = ShoppingCartPersistence.class)
3824 protected ShoppingCartPersistence shoppingCartPersistence;
3825 @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCategoryLocalService.class)
3826 protected com.liferay.portlet.shopping.service.ShoppingCategoryLocalService shoppingCategoryLocalService;
3827 @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCategoryService.class)
3828 protected com.liferay.portlet.shopping.service.ShoppingCategoryService shoppingCategoryService;
3829 @BeanReference(type = ShoppingCategoryPersistence.class)
3830 protected ShoppingCategoryPersistence shoppingCategoryPersistence;
3831 @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCouponLocalService.class)
3832 protected com.liferay.portlet.shopping.service.ShoppingCouponLocalService shoppingCouponLocalService;
3833 @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCouponService.class)
3834 protected com.liferay.portlet.shopping.service.ShoppingCouponService shoppingCouponService;
3835 @BeanReference(type = ShoppingCouponPersistence.class)
3836 protected ShoppingCouponPersistence shoppingCouponPersistence;
3837 @BeanReference(type = ShoppingCouponFinder.class)
3838 protected ShoppingCouponFinder shoppingCouponFinder;
3839 @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingOrderLocalService.class)
3840 protected com.liferay.portlet.shopping.service.ShoppingOrderLocalService shoppingOrderLocalService;
3841 @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingOrderService.class)
3842 protected com.liferay.portlet.shopping.service.ShoppingOrderService shoppingOrderService;
3843 @BeanReference(type = ShoppingOrderPersistence.class)
3844 protected ShoppingOrderPersistence shoppingOrderPersistence;
3845 @BeanReference(type = ShoppingOrderFinder.class)
3846 protected ShoppingOrderFinder shoppingOrderFinder;
3847 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
3848 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
3849 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
3850 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
3851 @BeanReference(type = SocialActivityPersistence.class)
3852 protected SocialActivityPersistence socialActivityPersistence;
3853 @BeanReference(type = SocialActivityFinder.class)
3854 protected SocialActivityFinder socialActivityFinder;
3855 @BeanReference(type = com.liferay.portlet.social.service.SocialActivitySettingLocalService.class)
3856 protected com.liferay.portlet.social.service.SocialActivitySettingLocalService socialActivitySettingLocalService;
3857 @BeanReference(type = com.liferay.portlet.social.service.SocialActivitySettingService.class)
3858 protected com.liferay.portlet.social.service.SocialActivitySettingService socialActivitySettingService;
3859 @BeanReference(type = SocialActivitySettingPersistence.class)
3860 protected SocialActivitySettingPersistence socialActivitySettingPersistence;
3861 @BeanReference(type = com.liferay.portlet.social.service.SocialRequestLocalService.class)
3862 protected com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService;
3863 @BeanReference(type = com.liferay.portlet.social.service.SocialRequestService.class)
3864 protected com.liferay.portlet.social.service.SocialRequestService socialRequestService;
3865 @BeanReference(type = SocialRequestPersistence.class)
3866 protected SocialRequestPersistence socialRequestPersistence;
3867 @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService.class)
3868 protected com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService scFrameworkVersionLocalService;
3869 @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService.class)
3870 protected com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService scFrameworkVersionService;
3871 @BeanReference(type = SCFrameworkVersionPersistence.class)
3872 protected SCFrameworkVersionPersistence scFrameworkVersionPersistence;
3873 @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService.class)
3874 protected com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService scProductEntryLocalService;
3875 @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCProductEntryService.class)
3876 protected com.liferay.portlet.softwarecatalog.service.SCProductEntryService scProductEntryService;
3877 @BeanReference(type = SCProductEntryPersistence.class)
3878 protected SCProductEntryPersistence scProductEntryPersistence;
3879 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
3880 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
3881 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
3882 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
3883 @BeanReference(type = TrashEntryPersistence.class)
3884 protected TrashEntryPersistence trashEntryPersistence;
3885 @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
3886 protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
3887 @BeanReference(type = com.liferay.portal.service.LayoutService.class)
3888 protected com.liferay.portal.service.LayoutService layoutService;
3889 @BeanReference(type = LayoutPersistence.class)
3890 protected LayoutPersistence layoutPersistence;
3891 @BeanReference(type = LayoutFinder.class)
3892 protected LayoutFinder layoutFinder;
3893 @BeanReference(type = com.liferay.portal.service.LayoutPrototypeLocalService.class)
3894 protected com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService;
3895 @BeanReference(type = com.liferay.portal.service.LayoutPrototypeService.class)
3896 protected com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService;
3897 @BeanReference(type = LayoutPrototypePersistence.class)
3898 protected LayoutPrototypePersistence layoutPrototypePersistence;
3899 @BeanReference(type = com.liferay.portal.service.LayoutSetLocalService.class)
3900 protected com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService;
3901 @BeanReference(type = com.liferay.portal.service.LayoutSetService.class)
3902 protected com.liferay.portal.service.LayoutSetService layoutSetService;
3903 @BeanReference(type = LayoutSetPersistence.class)
3904 protected LayoutSetPersistence layoutSetPersistence;
3905 @BeanReference(type = com.liferay.portal.service.LayoutSetBranchLocalService.class)
3906 protected com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService;
3907 @BeanReference(type = com.liferay.portal.service.LayoutSetBranchService.class)
3908 protected com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService;
3909 @BeanReference(type = LayoutSetBranchPersistence.class)
3910 protected LayoutSetBranchPersistence layoutSetBranchPersistence;
3911 @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeLocalService.class)
3912 protected com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService;
3913 @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeService.class)
3914 protected com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService;
3915 @BeanReference(type = LayoutSetPrototypePersistence.class)
3916 protected LayoutSetPrototypePersistence layoutSetPrototypePersistence;
3917 @BeanReference(type = com.liferay.portal.service.MembershipRequestLocalService.class)
3918 protected com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService;
3919 @BeanReference(type = com.liferay.portal.service.MembershipRequestService.class)
3920 protected com.liferay.portal.service.MembershipRequestService membershipRequestService;
3921 @BeanReference(type = MembershipRequestPersistence.class)
3922 protected MembershipRequestPersistence membershipRequestPersistence;
3923 @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
3924 protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
3925 @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
3926 protected com.liferay.portal.service.OrganizationService organizationService;
3927 @BeanReference(type = OrganizationPersistence.class)
3928 protected OrganizationPersistence organizationPersistence;
3929 @BeanReference(type = OrganizationFinder.class)
3930 protected OrganizationFinder organizationFinder;
3931 @BeanReference(type = com.liferay.portal.service.PortletLocalService.class)
3932 protected com.liferay.portal.service.PortletLocalService portletLocalService;
3933 @BeanReference(type = com.liferay.portal.service.PortletService.class)
3934 protected com.liferay.portal.service.PortletService portletService;
3935 @BeanReference(type = PortletPersistence.class)
3936 protected PortletPersistence portletPersistence;
3937 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
3938 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
3939 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
3940 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
3941 @BeanReference(type = PortletPreferencesPersistence.class)
3942 protected PortletPreferencesPersistence portletPreferencesPersistence;
3943 @BeanReference(type = PortletPreferencesFinder.class)
3944 protected PortletPreferencesFinder portletPreferencesFinder;
3945 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
3946 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
3947 @BeanReference(type = com.liferay.portal.service.ResourceActionLocalService.class)
3948 protected com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService;
3949 @BeanReference(type = ResourceActionPersistence.class)
3950 protected ResourceActionPersistence resourceActionPersistence;
3951 @BeanReference(type = com.liferay.portal.service.ResourceBlockLocalService.class)
3952 protected com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService;
3953 @BeanReference(type = com.liferay.portal.service.ResourceBlockService.class)
3954 protected com.liferay.portal.service.ResourceBlockService resourceBlockService;
3955 @BeanReference(type = ResourceBlockPersistence.class)
3956 protected ResourceBlockPersistence resourceBlockPersistence;
3957 @BeanReference(type = ResourceBlockFinder.class)
3958 protected ResourceBlockFinder resourceBlockFinder;
3959 @BeanReference(type = com.liferay.portal.service.ResourcePermissionLocalService.class)
3960 protected com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService;
3961 @BeanReference(type = com.liferay.portal.service.ResourcePermissionService.class)
3962 protected com.liferay.portal.service.ResourcePermissionService resourcePermissionService;
3963 @BeanReference(type = ResourcePermissionPersistence.class)
3964 protected ResourcePermissionPersistence resourcePermissionPersistence;
3965 @BeanReference(type = ResourcePermissionFinder.class)
3966 protected ResourcePermissionFinder resourcePermissionFinder;
3967 @BeanReference(type = com.liferay.portal.service.ResourceTypePermissionLocalService.class)
3968 protected com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService;
3969 @BeanReference(type = ResourceTypePermissionPersistence.class)
3970 protected ResourceTypePermissionPersistence resourceTypePermissionPersistence;
3971 @BeanReference(type = ResourceTypePermissionFinder.class)
3972 protected ResourceTypePermissionFinder resourceTypePermissionFinder;
3973 @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
3974 protected com.liferay.portal.service.RoleLocalService roleLocalService;
3975 @BeanReference(type = com.liferay.portal.service.RoleService.class)
3976 protected com.liferay.portal.service.RoleService roleService;
3977 @BeanReference(type = RolePersistence.class)
3978 protected RolePersistence rolePersistence;
3979 @BeanReference(type = RoleFinder.class)
3980 protected RoleFinder roleFinder;
3981 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
3982 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
3983 @BeanReference(type = SubscriptionPersistence.class)
3984 protected SubscriptionPersistence subscriptionPersistence;
3985 @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
3986 protected com.liferay.portal.service.TeamLocalService teamLocalService;
3987 @BeanReference(type = com.liferay.portal.service.TeamService.class)
3988 protected com.liferay.portal.service.TeamService teamService;
3989 @BeanReference(type = TeamPersistence.class)
3990 protected TeamPersistence teamPersistence;
3991 @BeanReference(type = TeamFinder.class)
3992 protected TeamFinder teamFinder;
3993 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
3994 protected com.liferay.portal.service.UserLocalService userLocalService;
3995 @BeanReference(type = com.liferay.portal.service.UserService.class)
3996 protected com.liferay.portal.service.UserService userService;
3997 @BeanReference(type = UserPersistence.class)
3998 protected UserPersistence userPersistence;
3999 @BeanReference(type = UserFinder.class)
4000 protected UserFinder userFinder;
4001 @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
4002 protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
4003 @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
4004 protected com.liferay.portal.service.UserGroupService userGroupService;
4005 @BeanReference(type = UserGroupPersistence.class)
4006 protected UserGroupPersistence userGroupPersistence;
4007 @BeanReference(type = UserGroupFinder.class)
4008 protected UserGroupFinder userGroupFinder;
4009 @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleLocalService.class)
4010 protected com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService;
4011 @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleService.class)
4012 protected com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService;
4013 @BeanReference(type = UserGroupGroupRolePersistence.class)
4014 protected UserGroupGroupRolePersistence userGroupGroupRolePersistence;
4015 @BeanReference(type = UserGroupGroupRoleFinder.class)
4016 protected UserGroupGroupRoleFinder userGroupGroupRoleFinder;
4017 @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
4018 protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
4019 @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
4020 protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
4021 @BeanReference(type = UserGroupRolePersistence.class)
4022 protected UserGroupRolePersistence userGroupRolePersistence;
4023 @BeanReference(type = UserGroupRoleFinder.class)
4024 protected UserGroupRoleFinder userGroupRoleFinder;
4025 @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
4026 protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
4027 @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
4028 protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
4029 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
4030 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
4031 private String _beanIdentifier;
4032 }