Liferay 7.0-ce-b4

com.liferay.portal.service
Interface UserGroupGroupRoleService

All Superinterfaces:
BaseService
All Known Implementing Classes:
UserGroupGroupRoleServiceWrapper

@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface UserGroupGroupRoleService
extends BaseService

Provides the remote service interface for UserGroupGroupRole. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
UserGroupGroupRoleServiceUtil, UserGroupGroupRoleServiceBaseImpl, com.liferay.portal.service.impl.UserGroupGroupRoleServiceImpl

Method Summary
 void addUserGroupGroupRoles(long[] userGroupIds, long groupId, long roleId)
           
 void addUserGroupGroupRoles(long userGroupId, long groupId, long[] roleIds)
           
 void deleteUserGroupGroupRoles(long[] userGroupIds, long groupId, long roleId)
           
 void deleteUserGroupGroupRoles(long userGroupId, long groupId, long[] roleIds)
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 

Method Detail

addUserGroupGroupRoles

void addUserGroupGroupRoles(long userGroupId,
                            long groupId,
                            long[] roleIds)
                            throws PortalException
Throws:
PortalException

addUserGroupGroupRoles

void addUserGroupGroupRoles(long[] userGroupIds,
                            long groupId,
                            long roleId)
                            throws PortalException
Throws:
PortalException

deleteUserGroupGroupRoles

void deleteUserGroupGroupRoles(long userGroupId,
                               long groupId,
                               long[] roleIds)
                               throws PortalException
Throws:
PortalException

deleteUserGroupGroupRoles

void deleteUserGroupGroupRoles(long[] userGroupIds,
                               long groupId,
                               long roleId)
                               throws PortalException
Throws:
PortalException

getOSGiServiceIdentifier

String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Returns:
the OSGi service identifier

Liferay 7.0-ce-b4