001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018 import com.liferay.portal.kernel.exception.SystemException;
019 import com.liferay.portal.kernel.transaction.Isolation;
020 import com.liferay.portal.kernel.transaction.Propagation;
021 import com.liferay.portal.kernel.transaction.Transactional;
022
023
036 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
037 PortalException.class, SystemException.class})
038 public interface UserGroupRoleLocalService extends BaseLocalService,
039 PersistedModelLocalService {
040
045
046
053 public com.liferay.portal.model.UserGroupRole addUserGroupRole(
054 com.liferay.portal.model.UserGroupRole userGroupRole)
055 throws com.liferay.portal.kernel.exception.SystemException;
056
057
063 public com.liferay.portal.model.UserGroupRole createUserGroupRole(
064 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK);
065
066
074 public com.liferay.portal.model.UserGroupRole deleteUserGroupRole(
075 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
076 throws com.liferay.portal.kernel.exception.PortalException,
077 com.liferay.portal.kernel.exception.SystemException;
078
079
086 public com.liferay.portal.model.UserGroupRole deleteUserGroupRole(
087 com.liferay.portal.model.UserGroupRole userGroupRole)
088 throws com.liferay.portal.kernel.exception.SystemException;
089
090 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery();
091
092
099 @SuppressWarnings("rawtypes")
100 public java.util.List dynamicQuery(
101 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102 throws com.liferay.portal.kernel.exception.SystemException;
103
104
117 @SuppressWarnings("rawtypes")
118 public java.util.List dynamicQuery(
119 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
120 int end) throws com.liferay.portal.kernel.exception.SystemException;
121
122
136 @SuppressWarnings("rawtypes")
137 public java.util.List dynamicQuery(
138 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
139 int end,
140 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
141 throws com.liferay.portal.kernel.exception.SystemException;
142
143
150 public long dynamicQueryCount(
151 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
152 throws com.liferay.portal.kernel.exception.SystemException;
153
154 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
155 public com.liferay.portal.model.UserGroupRole fetchUserGroupRole(
156 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
157 throws com.liferay.portal.kernel.exception.SystemException;
158
159
167 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
168 public com.liferay.portal.model.UserGroupRole getUserGroupRole(
169 com.liferay.portal.service.persistence.UserGroupRolePK userGroupRolePK)
170 throws com.liferay.portal.kernel.exception.PortalException,
171 com.liferay.portal.kernel.exception.SystemException;
172
173 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
174 public com.liferay.portal.model.PersistedModel getPersistedModel(
175 java.io.Serializable primaryKeyObj)
176 throws com.liferay.portal.kernel.exception.PortalException,
177 com.liferay.portal.kernel.exception.SystemException;
178
179
191 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
192 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
193 int start, int end)
194 throws com.liferay.portal.kernel.exception.SystemException;
195
196
202 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
203 public int getUserGroupRolesCount()
204 throws com.liferay.portal.kernel.exception.SystemException;
205
206
213 public com.liferay.portal.model.UserGroupRole updateUserGroupRole(
214 com.liferay.portal.model.UserGroupRole userGroupRole)
215 throws com.liferay.portal.kernel.exception.SystemException;
216
217
225 public com.liferay.portal.model.UserGroupRole updateUserGroupRole(
226 com.liferay.portal.model.UserGroupRole userGroupRole, boolean merge)
227 throws com.liferay.portal.kernel.exception.SystemException;
228
229
234 public java.lang.String getBeanIdentifier();
235
236
241 public void setBeanIdentifier(java.lang.String beanIdentifier);
242
243 public void addUserGroupRoles(long userId, long groupId, long[] roleIds)
244 throws com.liferay.portal.kernel.exception.PortalException,
245 com.liferay.portal.kernel.exception.SystemException;
246
247 public void addUserGroupRoles(long[] userIds, long groupId, long roleId)
248 throws com.liferay.portal.kernel.exception.PortalException,
249 com.liferay.portal.kernel.exception.SystemException;
250
251 public void deleteUserGroupRoles(long userId, long groupId, long[] roleIds)
252 throws com.liferay.portal.kernel.exception.SystemException;
253
254 public void deleteUserGroupRoles(long userId, long[] groupIds)
255 throws com.liferay.portal.kernel.exception.SystemException;
256
257 public void deleteUserGroupRoles(long[] userIds, long groupId)
258 throws com.liferay.portal.kernel.exception.SystemException;
259
260 public void deleteUserGroupRoles(long[] userIds, long groupId, int roleType)
261 throws com.liferay.portal.kernel.exception.SystemException;
262
263 public void deleteUserGroupRoles(long[] userIds, long groupId, long roleId)
264 throws com.liferay.portal.kernel.exception.SystemException;
265
266 public void deleteUserGroupRolesByGroupId(long groupId)
267 throws com.liferay.portal.kernel.exception.SystemException;
268
269 public void deleteUserGroupRolesByRoleId(long roleId)
270 throws com.liferay.portal.kernel.exception.SystemException;
271
272 public void deleteUserGroupRolesByUserId(long userId)
273 throws com.liferay.portal.kernel.exception.SystemException;
274
275 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
276 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
277 long userId) throws com.liferay.portal.kernel.exception.SystemException;
278
279 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
280 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
281 long userId, long groupId)
282 throws com.liferay.portal.kernel.exception.SystemException;
283
284 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
285 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRolesByGroupAndRole(
286 long groupId, long roleId)
287 throws com.liferay.portal.kernel.exception.SystemException;
288
289 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
290 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRolesByUserUserGroupAndGroup(
291 long userId, long groupId)
292 throws com.liferay.portal.kernel.exception.SystemException;
293
294 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
295 public boolean hasUserGroupRole(long userId, long groupId, long roleId)
296 throws com.liferay.portal.kernel.exception.SystemException;
297
298 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
299 public boolean hasUserGroupRole(long userId, long groupId, long roleId,
300 boolean inherit)
301 throws com.liferay.portal.kernel.exception.SystemException;
302
303 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
304 public boolean hasUserGroupRole(long userId, long groupId,
305 java.lang.String roleName)
306 throws com.liferay.portal.kernel.exception.PortalException,
307 com.liferay.portal.kernel.exception.SystemException;
308
309 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
310 public boolean hasUserGroupRole(long userId, long groupId,
311 java.lang.String roleName, boolean inherit)
312 throws com.liferay.portal.kernel.exception.PortalException,
313 com.liferay.portal.kernel.exception.SystemException;
314 }