1
22
23 package com.liferay.portal.service;
24
25
26
47 public class UserGroupServiceUtil {
48 public static void addGroupUserGroups(long groupId, long[] userGroupIds)
49 throws com.liferay.portal.PortalException,
50 com.liferay.portal.SystemException, java.rmi.RemoteException {
51 getService().addGroupUserGroups(groupId, userGroupIds);
52 }
53
54 public static com.liferay.portal.model.UserGroup addUserGroup(
55 java.lang.String name, java.lang.String description)
56 throws com.liferay.portal.PortalException,
57 com.liferay.portal.SystemException, java.rmi.RemoteException {
58 return getService().addUserGroup(name, description);
59 }
60
61 public static void deleteUserGroup(long userGroupId)
62 throws com.liferay.portal.PortalException,
63 com.liferay.portal.SystemException, java.rmi.RemoteException {
64 getService().deleteUserGroup(userGroupId);
65 }
66
67 public static com.liferay.portal.model.UserGroup getUserGroup(
68 long userGroupId)
69 throws com.liferay.portal.PortalException,
70 com.liferay.portal.SystemException, java.rmi.RemoteException {
71 return getService().getUserGroup(userGroupId);
72 }
73
74 public static com.liferay.portal.model.UserGroup getUserGroup(
75 java.lang.String name)
76 throws com.liferay.portal.PortalException,
77 com.liferay.portal.SystemException, java.rmi.RemoteException {
78 return getService().getUserGroup(name);
79 }
80
81 public static java.util.List<com.liferay.portal.model.UserGroup> getUserUserGroups(
82 long userId)
83 throws com.liferay.portal.SystemException, java.rmi.RemoteException {
84 return getService().getUserUserGroups(userId);
85 }
86
87 public static void unsetGroupUserGroups(long groupId, long[] userGroupIds)
88 throws com.liferay.portal.PortalException,
89 com.liferay.portal.SystemException, java.rmi.RemoteException {
90 getService().unsetGroupUserGroups(groupId, userGroupIds);
91 }
92
93 public static com.liferay.portal.model.UserGroup updateUserGroup(
94 long userGroupId, java.lang.String name, java.lang.String description)
95 throws com.liferay.portal.PortalException,
96 com.liferay.portal.SystemException, java.rmi.RemoteException {
97 return getService().updateUserGroup(userGroupId, name, description);
98 }
99
100 public static UserGroupService getService() {
101 if (_service == null) {
102 throw new RuntimeException("UserGroupService is not set");
103 }
104
105 return _service;
106 }
107
108 public void setService(UserGroupService service) {
109 _service = service;
110 }
111
112 private static UserGroupService _service;
113 }