Interface UserGroupRoleService
- All Superinterfaces:
BaseService
- All Known Implementing Classes:
UserGroupRoleServiceWrapper
@AccessControlled
@CTAware
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface UserGroupRoleService
extends BaseService
Provides the remote service interface for UserGroupRole. Methods of this
service are expected to have security checks based on the propagated JAAS
credentials because this service can be accessed remotely.
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addUserGroupRoles
(long[] userIds, long groupId, long roleId) void
addUserGroupRoles
(long userId, long groupId, long[] roleIds) void
deleteUserGroupRoles
(long[] userIds, long groupId, long roleId) void
deleteUserGroupRoles
(long userId, long groupId, long[] roleIds) Returns the OSGi service identifier.void
updateUserGroupRoles
(long userId, long groupId, long[] addedRoleIds, long[] deletedRoleIds)
-
Method Details
-
addUserGroupRoles
- Throws:
PortalException
-
addUserGroupRoles
- Throws:
PortalException
-
deleteUserGroupRoles
- Throws:
PortalException
-
deleteUserGroupRoles
- Throws:
PortalException
-
getOSGiServiceIdentifier
String getOSGiServiceIdentifier()Returns the OSGi service identifier.- Returns:
- the OSGi service identifier
-
updateUserGroupRoles
void updateUserGroupRoles(long userId, long groupId, long[] addedRoleIds, long[] deletedRoleIds) throws PortalException - Throws:
PortalException
-