1
22
23 package com.liferay.portal.service;
24
25
26
47 public class UserGroupRoleLocalServiceUtil {
48 public static com.liferay.portal.model.UserGroupRole addUserGroupRole(
49 com.liferay.portal.model.UserGroupRole userGroupRole)
50 throws com.liferay.portal.SystemException {
51 return getService().addUserGroupRole(userGroupRole);
52 }
53
54 public static com.liferay.portal.model.UserGroupRole createUserGroupRole(
55 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK) {
56 return getService().createUserGroupRole(userGroupRolePK);
57 }
58
59 public static void deleteUserGroupRole(
60 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
61 throws com.liferay.portal.PortalException,
62 com.liferay.portal.SystemException {
63 getService().deleteUserGroupRole(userGroupRolePK);
64 }
65
66 public static void deleteUserGroupRole(
67 com.liferay.portal.model.UserGroupRole userGroupRole)
68 throws com.liferay.portal.SystemException {
69 getService().deleteUserGroupRole(userGroupRole);
70 }
71
72 public static java.util.List<Object> dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
74 throws com.liferay.portal.SystemException {
75 return getService().dynamicQuery(dynamicQuery);
76 }
77
78 public static java.util.List<Object> dynamicQuery(
79 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80 int end) throws com.liferay.portal.SystemException {
81 return getService().dynamicQuery(dynamicQuery, start, end);
82 }
83
84 public static com.liferay.portal.model.UserGroupRole getUserGroupRole(
85 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
86 throws com.liferay.portal.PortalException,
87 com.liferay.portal.SystemException {
88 return getService().getUserGroupRole(userGroupRolePK);
89 }
90
91 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
92 int start, int end) throws com.liferay.portal.SystemException {
93 return getService().getUserGroupRoles(start, end);
94 }
95
96 public static int getUserGroupRolesCount()
97 throws com.liferay.portal.SystemException {
98 return getService().getUserGroupRolesCount();
99 }
100
101 public static com.liferay.portal.model.UserGroupRole updateUserGroupRole(
102 com.liferay.portal.model.UserGroupRole userGroupRole)
103 throws com.liferay.portal.SystemException {
104 return getService().updateUserGroupRole(userGroupRole);
105 }
106
107 public static com.liferay.portal.model.UserGroupRole updateUserGroupRole(
108 com.liferay.portal.model.UserGroupRole userGroupRole, boolean merge)
109 throws com.liferay.portal.SystemException {
110 return getService().updateUserGroupRole(userGroupRole, merge);
111 }
112
113 public static void addUserGroupRoles(long userId, long groupId,
114 long[] roleIds)
115 throws com.liferay.portal.PortalException,
116 com.liferay.portal.SystemException {
117 getService().addUserGroupRoles(userId, groupId, roleIds);
118 }
119
120 public static void addUserGroupRoles(long[] userIds, long groupId,
121 long roleId)
122 throws com.liferay.portal.PortalException,
123 com.liferay.portal.SystemException {
124 getService().addUserGroupRoles(userIds, groupId, roleId);
125 }
126
127 public static void deleteUserGroupRoles(long userId, long[] groupIds)
128 throws com.liferay.portal.SystemException {
129 getService().deleteUserGroupRoles(userId, groupIds);
130 }
131
132 public static void deleteUserGroupRoles(long[] userIds, long groupId)
133 throws com.liferay.portal.SystemException {
134 getService().deleteUserGroupRoles(userIds, groupId);
135 }
136
137 public static void deleteUserGroupRoles(long userId, long groupId,
138 long[] roleIds) throws com.liferay.portal.SystemException {
139 getService().deleteUserGroupRoles(userId, groupId, roleIds);
140 }
141
142 public static void deleteUserGroupRoles(long[] userIds, long groupId,
143 long roleId) throws com.liferay.portal.SystemException {
144 getService().deleteUserGroupRoles(userIds, groupId, roleId);
145 }
146
147 public static void deleteUserGroupRolesByGroupId(long groupId)
148 throws com.liferay.portal.SystemException {
149 getService().deleteUserGroupRolesByGroupId(groupId);
150 }
151
152 public static void deleteUserGroupRolesByRoleId(long roleId)
153 throws com.liferay.portal.SystemException {
154 getService().deleteUserGroupRolesByRoleId(roleId);
155 }
156
157 public static void deleteUserGroupRolesByUserId(long userId)
158 throws com.liferay.portal.SystemException {
159 getService().deleteUserGroupRolesByUserId(userId);
160 }
161
162 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
163 long userId) throws com.liferay.portal.SystemException {
164 return getService().getUserGroupRoles(userId);
165 }
166
167 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
168 long userId, long groupId) throws com.liferay.portal.SystemException {
169 return getService().getUserGroupRoles(userId, groupId);
170 }
171
172 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRolesByGroupAndRole(
173 long groupId, long roleId) throws com.liferay.portal.SystemException {
174 return getService().getUserGroupRolesByGroupAndRole(groupId, roleId);
175 }
176
177 public static boolean hasUserGroupRole(long userId, long groupId,
178 long roleId) throws com.liferay.portal.SystemException {
179 return getService().hasUserGroupRole(userId, groupId, roleId);
180 }
181
182 public static boolean hasUserGroupRole(long userId, long groupId,
183 java.lang.String roleName)
184 throws com.liferay.portal.PortalException,
185 com.liferay.portal.SystemException {
186 return getService().hasUserGroupRole(userId, groupId, roleName);
187 }
188
189 public static UserGroupRoleLocalService getService() {
190 if (_service == null) {
191 throw new RuntimeException("UserGroupRoleLocalService is not set");
192 }
193
194 return _service;
195 }
196
197 public void setService(UserGroupRoleLocalService service) {
198 _service = service;
199 }
200
201 private static UserGroupRoleLocalService _service;
202 }