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
222 public java.lang.String getBeanIdentifier();
223
224
229 public void setBeanIdentifier(java.lang.String beanIdentifier);
230
231 public void addUserGroupRoles(long userId, long groupId, long[] roleIds)
232 throws com.liferay.portal.kernel.exception.SystemException;
233
234 public void addUserGroupRoles(long[] userIds, long groupId, long roleId)
235 throws com.liferay.portal.kernel.exception.SystemException;
236
237 public void deleteUserGroupRoles(long userId, long groupId, long[] roleIds)
238 throws com.liferay.portal.kernel.exception.SystemException;
239
240 public void deleteUserGroupRoles(long userId, long[] groupIds)
241 throws com.liferay.portal.kernel.exception.SystemException;
242
243 public void deleteUserGroupRoles(long[] userIds, long groupId)
244 throws com.liferay.portal.kernel.exception.SystemException;
245
246 public void deleteUserGroupRoles(long[] userIds, long groupId, long roleId)
247 throws com.liferay.portal.kernel.exception.SystemException;
248
249 public void deleteUserGroupRolesByGroupId(long groupId)
250 throws com.liferay.portal.kernel.exception.SystemException;
251
252 public void deleteUserGroupRolesByRoleId(long roleId)
253 throws com.liferay.portal.kernel.exception.SystemException;
254
255 public void deleteUserGroupRolesByUserId(long userId)
256 throws com.liferay.portal.kernel.exception.SystemException;
257
258 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
259 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
260 long userId) throws com.liferay.portal.kernel.exception.SystemException;
261
262 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
263 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRoles(
264 long userId, long groupId)
265 throws com.liferay.portal.kernel.exception.SystemException;
266
267 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
268 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRolesByGroupAndRole(
269 long groupId, long roleId)
270 throws com.liferay.portal.kernel.exception.SystemException;
271
272 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
273 public java.util.List<com.liferay.portal.model.UserGroupRole> getUserGroupRolesByUserUserGroupAndGroup(
274 long userId, long groupId)
275 throws com.liferay.portal.kernel.exception.SystemException;
276
277 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
278 public boolean hasUserGroupRole(long userId, long groupId, long roleId)
279 throws com.liferay.portal.kernel.exception.SystemException;
280
281 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
282 public boolean hasUserGroupRole(long userId, long groupId, long roleId,
283 boolean inherit)
284 throws com.liferay.portal.kernel.exception.SystemException;
285
286 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
287 public boolean hasUserGroupRole(long userId, long groupId,
288 java.lang.String roleName)
289 throws com.liferay.portal.kernel.exception.PortalException,
290 com.liferay.portal.kernel.exception.SystemException;
291
292 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
293 public boolean hasUserGroupRole(long userId, long groupId,
294 java.lang.String roleName, boolean inherit)
295 throws com.liferay.portal.kernel.exception.PortalException,
296 com.liferay.portal.kernel.exception.SystemException;
297 }