001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
033 public class UserGroupRoleLocalServiceUtil {
034
039
040
047 public static com.liferay.portal.model.UserGroupRole addUserGroupRole(
048 com.liferay.portal.model.UserGroupRole userGroupRole)
049 throws com.liferay.portal.kernel.exception.SystemException {
050 return getService().addUserGroupRole(userGroupRole);
051 }
052
053
059 public static com.liferay.portal.model.UserGroupRole createUserGroupRole(
060 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK) {
061 return getService().createUserGroupRole(userGroupRolePK);
062 }
063
064
072 public static com.liferay.portal.model.UserGroupRole deleteUserGroupRole(
073 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
074 throws com.liferay.portal.kernel.exception.PortalException,
075 com.liferay.portal.kernel.exception.SystemException {
076 return getService().deleteUserGroupRole(userGroupRolePK);
077 }
078
079
086 public static com.liferay.portal.model.UserGroupRole deleteUserGroupRole(
087 com.liferay.portal.model.UserGroupRole userGroupRole)
088 throws com.liferay.portal.kernel.exception.SystemException {
089 return getService().deleteUserGroupRole(userGroupRole);
090 }
091
092 public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
093 return getService().dynamicQuery();
094 }
095
096
103 @SuppressWarnings("rawtypes")
104 public static java.util.List dynamicQuery(
105 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return getService().dynamicQuery(dynamicQuery);
108 }
109
110
123 @SuppressWarnings("rawtypes")
124 public static java.util.List dynamicQuery(
125 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126 int end) throws com.liferay.portal.kernel.exception.SystemException {
127 return getService().dynamicQuery(dynamicQuery, start, end);
128 }
129
130
144 @SuppressWarnings("rawtypes")
145 public static java.util.List dynamicQuery(
146 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
147 int end,
148 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return getService()
151 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
152 }
153
154
161 public static long dynamicQueryCount(
162 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
163 throws com.liferay.portal.kernel.exception.SystemException {
164 return getService().dynamicQueryCount(dynamicQuery);
165 }
166
167 public static com.liferay.portal.model.UserGroupRole fetchUserGroupRole(
168 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
169 throws com.liferay.portal.kernel.exception.SystemException {
170 return getService().fetchUserGroupRole(userGroupRolePK);
171 }
172
173
181 public static com.liferay.portal.model.UserGroupRole getUserGroupRole(
182 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
183 throws com.liferay.portal.kernel.exception.PortalException,
184 com.liferay.portal.kernel.exception.SystemException {
185 return getService().getUserGroupRole(userGroupRolePK);
186 }
187
188 public static com.liferay.portal.model.PersistedModel getPersistedModel(
189 java.io.Serializable primaryKeyObj)
190 throws com.liferay.portal.kernel.exception.PortalException,
191 com.liferay.portal.kernel.exception.SystemException {
192 return getService().getPersistedModel(primaryKeyObj);
193 }
194
195
207 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
208 int start, int end)
209 throws com.liferay.portal.kernel.exception.SystemException {
210 return getService().getUserGroupRoles(start, end);
211 }
212
213
219 public static int getUserGroupRolesCount()
220 throws com.liferay.portal.kernel.exception.SystemException {
221 return getService().getUserGroupRolesCount();
222 }
223
224
231 public static com.liferay.portal.model.UserGroupRole updateUserGroupRole(
232 com.liferay.portal.model.UserGroupRole userGroupRole)
233 throws com.liferay.portal.kernel.exception.SystemException {
234 return getService().updateUserGroupRole(userGroupRole);
235 }
236
237
245 public static com.liferay.portal.model.UserGroupRole updateUserGroupRole(
246 com.liferay.portal.model.UserGroupRole userGroupRole, boolean merge)
247 throws com.liferay.portal.kernel.exception.SystemException {
248 return getService().updateUserGroupRole(userGroupRole, merge);
249 }
250
251
256 public static java.lang.String getBeanIdentifier() {
257 return getService().getBeanIdentifier();
258 }
259
260
265 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
266 getService().setBeanIdentifier(beanIdentifier);
267 }
268
269 public static void addUserGroupRoles(long userId, long groupId,
270 long[] roleIds)
271 throws com.liferay.portal.kernel.exception.PortalException,
272 com.liferay.portal.kernel.exception.SystemException {
273 getService().addUserGroupRoles(userId, groupId, roleIds);
274 }
275
276 public static void addUserGroupRoles(long[] userIds, long groupId,
277 long roleId)
278 throws com.liferay.portal.kernel.exception.PortalException,
279 com.liferay.portal.kernel.exception.SystemException {
280 getService().addUserGroupRoles(userIds, groupId, roleId);
281 }
282
283 public static void deleteUserGroupRoles(long userId, long groupId,
284 long[] roleIds)
285 throws com.liferay.portal.kernel.exception.SystemException {
286 getService().deleteUserGroupRoles(userId, groupId, roleIds);
287 }
288
289 public static void deleteUserGroupRoles(long userId, long[] groupIds)
290 throws com.liferay.portal.kernel.exception.SystemException {
291 getService().deleteUserGroupRoles(userId, groupIds);
292 }
293
294 public static void deleteUserGroupRoles(long[] userIds, long groupId)
295 throws com.liferay.portal.kernel.exception.SystemException {
296 getService().deleteUserGroupRoles(userIds, groupId);
297 }
298
299 public static void deleteUserGroupRoles(long[] userIds, long groupId,
300 int roleType)
301 throws com.liferay.portal.kernel.exception.SystemException {
302 getService().deleteUserGroupRoles(userIds, groupId, roleType);
303 }
304
305 public static void deleteUserGroupRoles(long[] userIds, long groupId,
306 long roleId) throws com.liferay.portal.kernel.exception.SystemException {
307 getService().deleteUserGroupRoles(userIds, groupId, roleId);
308 }
309
310 public static void deleteUserGroupRolesByGroupId(long groupId)
311 throws com.liferay.portal.kernel.exception.SystemException {
312 getService().deleteUserGroupRolesByGroupId(groupId);
313 }
314
315 public static void deleteUserGroupRolesByRoleId(long roleId)
316 throws com.liferay.portal.kernel.exception.SystemException {
317 getService().deleteUserGroupRolesByRoleId(roleId);
318 }
319
320 public static void deleteUserGroupRolesByUserId(long userId)
321 throws com.liferay.portal.kernel.exception.SystemException {
322 getService().deleteUserGroupRolesByUserId(userId);
323 }
324
325 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
326 long userId) throws com.liferay.portal.kernel.exception.SystemException {
327 return getService().getUserGroupRoles(userId);
328 }
329
330 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
331 long userId, long groupId)
332 throws com.liferay.portal.kernel.exception.SystemException {
333 return getService().getUserGroupRoles(userId, groupId);
334 }
335
336 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRolesByGroupAndRole(
337 long groupId, long roleId)
338 throws com.liferay.portal.kernel.exception.SystemException {
339 return getService().getUserGroupRolesByGroupAndRole(groupId, roleId);
340 }
341
342 public static java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRolesByUserUserGroupAndGroup(
343 long userId, long groupId)
344 throws com.liferay.portal.kernel.exception.SystemException {
345 return getService()
346 .getUserGroupRolesByUserUserGroupAndGroup(userId, groupId);
347 }
348
349 public static boolean hasUserGroupRole(long userId, long groupId,
350 long roleId) throws com.liferay.portal.kernel.exception.SystemException {
351 return getService().hasUserGroupRole(userId, groupId, roleId);
352 }
353
354 public static boolean hasUserGroupRole(long userId, long groupId,
355 long roleId, boolean inherit)
356 throws com.liferay.portal.kernel.exception.SystemException {
357 return getService().hasUserGroupRole(userId, groupId, roleId, inherit);
358 }
359
360 public static boolean hasUserGroupRole(long userId, long groupId,
361 java.lang.String roleName)
362 throws com.liferay.portal.kernel.exception.PortalException,
363 com.liferay.portal.kernel.exception.SystemException {
364 return getService().hasUserGroupRole(userId, groupId, roleName);
365 }
366
367 public static boolean hasUserGroupRole(long userId, long groupId,
368 java.lang.String roleName, boolean inherit)
369 throws com.liferay.portal.kernel.exception.PortalException,
370 com.liferay.portal.kernel.exception.SystemException {
371 return getService().hasUserGroupRole(userId, groupId, roleName, inherit);
372 }
373
374 public static UserGroupRoleLocalService getService() {
375 if (_service == null) {
376 _service = (UserGroupRoleLocalService)PortalBeanLocatorUtil.locate(UserGroupRoleLocalService.class.getName());
377
378 ReferenceRegistry.registerReference(UserGroupRoleLocalServiceUtil.class,
379 "_service");
380 }
381
382 return _service;
383 }
384
385
388 public void setService(UserGroupRoleLocalService service) {
389 }
390
391 private static UserGroupRoleLocalService _service;
392 }