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 _service.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 _service.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 _service.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 _service.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 _service.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 _service.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 _service.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 _service.updateUserGroup(userGroupId, name, description);
98 }
99
100 public static UserGroupService getService() {
101 return _service;
102 }
103
104 public void setService(UserGroupService service) {
105 _service = service;
106 }
107
108 private static UserGroupService _service;
109 }