/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.kernel.service; import aQute.bnd.annotation.ProviderType; import com.liferay.exportimport.kernel.lar.PortletDataContext; import com.liferay.portal.kernel.cache.thread.local.ThreadLocalCachable; import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery; import com.liferay.portal.kernel.dao.orm.DynamicQuery; import com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery; import com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery; import com.liferay.portal.kernel.dao.orm.Projection; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.exception.SystemException; import com.liferay.portal.kernel.model.Group; import com.liferay.portal.kernel.model.PersistedModel; import com.liferay.portal.kernel.model.Role; import com.liferay.portal.kernel.model.SystemEventConstants; import com.liferay.portal.kernel.model.Team; import com.liferay.portal.kernel.search.Indexable; import com.liferay.portal.kernel.search.IndexableType; import com.liferay.portal.kernel.spring.aop.Skip; import com.liferay.portal.kernel.systemevent.SystemEvent; import com.liferay.portal.kernel.transaction.Isolation; import com.liferay.portal.kernel.transaction.Propagation; import com.liferay.portal.kernel.transaction.Transactional; import com.liferay.portal.kernel.util.OrderByComparator; import java.io.Serializable; import java.util.LinkedHashMap; import java.util.List; import java.util.Locale; import java.util.Map; /** * Provides the local service interface for Role. Methods of this * service will not have security checks based on the propagated JAAS * credentials because this service can only be accessed from within the same * VM. * * @author Brian Wing Shun Chan * @see RoleLocalServiceUtil * @see com.liferay.portal.service.base.RoleLocalServiceBaseImpl * @see com.liferay.portal.service.impl.RoleLocalServiceImpl * @generated */ @ProviderType @Transactional(isolation = Isolation.PORTAL, rollbackFor = { PortalException.class, SystemException.class}) public interface RoleLocalService extends BaseLocalService, PersistedModelLocalService { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link RoleLocalServiceUtil} to access the role local service. Add custom service methods to {@link com.liferay.portal.service.impl.RoleLocalServiceImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface. */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasGroupRole(long groupId, long roleId); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasGroupRoles(long groupId); /** * Returns <code>true</code> if the user is associated with the named * regular role. * * @param userId the primary key of the user * @param companyId the primary key of the company * @param name the name of the role * @param inherited whether to include the user's inherited roles in the search * @return <code>true</code> if the user is associated with the regular role; <code>false</code> otherwise */ @ThreadLocalCachable @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasUserRole(long userId, long companyId, java.lang.String name, boolean inherited) throws PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasUserRole(long userId, long roleId); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasUserRoles(long userId); /** * Returns <code>true</code> if the user has any one of the named regular * roles. * * @param userId the primary key of the user * @param companyId the primary key of the company * @param names the names of the roles * @param inherited whether to include the user's inherited roles in the search * @return <code>true</code> if the user has any one of the regular roles; <code>false</code> otherwise */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public boolean hasUserRoles(long userId, long companyId, java.lang.String[] names, boolean inherited) throws PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public ActionableDynamicQuery getActionableDynamicQuery(); public DynamicQuery dynamicQuery(); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public ExportActionableDynamicQuery getExportActionableDynamicQuery( PortletDataContext portletDataContext); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery(); /** * @throws PortalException */ @Override public PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException; @Override @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException; /** * Adds the role to the database. Also notifies the appropriate model listeners. * * @param role the role * @return the role that was added */ @Indexable(type = IndexableType.REINDEX) public Role addRole(Role role); /** * Adds a role with additional parameters. The user is reindexed after role * is added. * * @param userId the primary key of the user * @param className the name of the class for which the role is created (optionally <code>null</code>) * @param classPK the primary key of the class for which the role is created (optionally <code>0</code>) * @param name the role's name * @param titleMap the role's localized titles (optionally <code>null</code>) * @param descriptionMap the role's localized descriptions (optionally <code>null</code>) * @param type the role's type (optionally <code>0</code>) * @param subtype the role's subtype (optionally <code>null</code>) * @param serviceContext the service context to be applied (optionally <code>null</code>). Can set expando bridge attributes for the role. * @return the role */ public Role addRole(long userId, java.lang.String className, long classPK, java.lang.String name, Map<Locale, java.lang.String> titleMap, Map<Locale, java.lang.String> descriptionMap, int type, java.lang.String subtype, ServiceContext serviceContext) throws PortalException; /** * Creates a new role with the primary key. Does not add the role to the database. * * @param roleId the primary key for the new role * @return the new role */ public Role createRole(long roleId); /** * Deletes the role from the database. Also notifies the appropriate model listeners. * * @param role the role * @return the role that was removed * @throws PortalException */ @Indexable(type = IndexableType.DELETE) @SystemEvent(action = SystemEventConstants.ACTION_SKIP, type = SystemEventConstants.TYPE_DELETE) public Role deleteRole(Role role) throws PortalException; /** * Deletes the role with the primary key from the database. Also notifies the appropriate model listeners. * * @param roleId the primary key of the role * @return the role that was removed * @throws PortalException if a role with the primary key could not be found */ @Indexable(type = IndexableType.DELETE) public Role deleteRole(long roleId) throws PortalException; /** * Returns the role with the name in the company. * * <p> * The method searches the system roles map first for default roles. If a * role with the name is not found, then the method will query the database. * </p> * * @param companyId the primary key of the company * @param name the role's name * @return Returns the role with the name or <code>null</code> if a role with the name could not be found in the company */ @Skip @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role fetchRole(long companyId, java.lang.String name); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role fetchRole(long roleId); /** * Returns the role with the matching UUID and company. * * @param uuid the role's UUID * @param companyId the primary key of the company * @return the matching role, or <code>null</code> if a matching role could not be found */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role fetchRoleByUuidAndCompanyId(java.lang.String uuid, long companyId); /** * Returns the default role for the group with the primary key. * * <p> * If the group is a site, then the default role is {@link * RoleConstants#SITE_MEMBER}. If the group is an organization, then the * default role is {@link RoleConstants#ORGANIZATION_USER}. If the group is * a user or user group, then the default role is {@link * RoleConstants#POWER_USER}. For all other group types, the default role is * {@link RoleConstants#USER}. * </p> * * @param groupId the primary key of the group * @return the default role for the group with the primary key */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role getDefaultGroupRole(long groupId) throws PortalException; /** * Returns the role with the name in the company. * * <p> * The method searches the system roles map first for default roles. If a * role with the name is not found, then the method will query the database. * </p> * * @param companyId the primary key of the company * @param name the role's name * @return the role with the name */ @Skip @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role getRole(long companyId, java.lang.String name) throws PortalException; /** * Returns the role with the primary key. * * @param roleId the primary key of the role * @return the role * @throws PortalException if a role with the primary key could not be found */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role getRole(long roleId) throws PortalException; /** * Returns the role with the matching UUID and company. * * @param uuid the role's UUID * @param companyId the primary key of the company * @return the matching role * @throws PortalException if a matching role could not be found */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role getRoleByUuidAndCompanyId(java.lang.String uuid, long companyId) throws PortalException; /** * Returns the team role in the company. * * @param companyId the primary key of the company * @param teamId the primary key of the team * @return the team role in the company */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role getTeamRole(long companyId, long teamId) throws PortalException; /** * Returns a role with the name in the company. * * @param companyId the primary key of the company * @param name the role's name (optionally <code>null</code>) * @return the role with the name, or <code>null</code> if a role with the name could not be found in the company */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role loadFetchRole(long companyId, java.lang.String name); /** * Returns a role with the name in the company. * * @param companyId the primary key of the company * @param name the role's name * @return the role with the name in the company */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Role loadGetRole(long companyId, java.lang.String name) throws PortalException; /** * Updates the role in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners. * * @param role the role * @return the role that was updated */ @Indexable(type = IndexableType.REINDEX) public Role updateRole(Role role); /** * Updates the role with the primary key. * * @param roleId the primary key of the role * @param name the role's new name * @param titleMap the new localized titles (optionally <code>null</code>) to replace those existing for the role * @param descriptionMap the new localized descriptions (optionally <code>null</code>) to replace those existing for the role * @param subtype the role's new subtype (optionally <code>null</code>) * @param serviceContext the service context to be applied (optionally <code>null</code>). Can set expando bridge attributes for the role. * @return the role with the primary key */ public Role updateRole(long roleId, java.lang.String name, Map<Locale, java.lang.String> titleMap, Map<Locale, java.lang.String> descriptionMap, java.lang.String subtype, ServiceContext serviceContext) throws PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getAssigneesTotal(long roleId) throws PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getGroupRolesAndTeamRolesCount(long companyId, java.lang.String keywords, List<java.lang.String> excludedNames, int[] types, long excludedTeamRoleId, long teamGroupId); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getGroupRolesCount(long groupId); /** * Returns the number of roles. * * @return the number of roles */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getRolesCount(); /** * Returns the number of roles of the subtype. * * @param subtype the role's subtype (optionally <code>null</code>) * @return the number of roles of the subtype */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getSubtypeRolesCount(java.lang.String subtype); /** * Returns the number of roles of the type. * * @param type the role's type (optionally <code>0</code>) * @return the number of roles of the type */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getTypeRolesCount(int type); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getUserGroupGroupRolesCount(long userId, long groupId); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int getUserRolesCount(long userId); /** * Returns the number of roles that match the keywords and types. * * @param companyId the primary key of the company * @param keywords the keywords (space separated), which may occur in the role's name or description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @return the number of matching roles */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int searchCount(long companyId, java.lang.String keywords, java.lang.Integer[] types); /** * Returns the number of roles that match the keywords, types and params. * * @param companyId the primary key of the company * @param keywords the keywords (space separated), which may occur in the role's name or description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @param params the finder parameters. For more information, see {@link com.liferay.portal.kernel.service.persistence.RoleFinder} * @return the number of matching roles */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int searchCount(long companyId, java.lang.String keywords, java.lang.Integer[] types, LinkedHashMap<java.lang.String, java.lang.Object> params); /** * Returns the number of roles that match the name, description, and types. * * @param companyId the primary key of the company * @param name the role's name (optionally <code>null</code>) * @param description the role's description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @return the number of matching roles */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int searchCount(long companyId, java.lang.String name, java.lang.String description, java.lang.Integer[] types); /** * Returns the number of roles that match the name, description, types, and * params. * * @param companyId the primary key of the company * @param name the role's name (optionally <code>null</code>) * @param description the role's description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @param params the finder parameters. Can specify values for the "usersRoles" key. For more information, see {@link com.liferay.portal.kernel.service.persistence.RoleFinder} * @return the number of matching roles */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public int searchCount(long companyId, java.lang.String name, java.lang.String description, java.lang.Integer[] types, LinkedHashMap<java.lang.String, java.lang.Object> params); /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ public java.lang.String getOSGiServiceIdentifier(); /** * Performs a dynamic query on the database and returns the matching rows. * * @param dynamicQuery the dynamic query * @return the matching rows */ public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery); /** * Performs a dynamic query on the database and returns a range of the matching rows. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.RoleModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param dynamicQuery the dynamic query * @param start the lower bound of the range of model instances * @param end the upper bound of the range of model instances (not inclusive) * @return the range of matching rows */ public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end); /** * Performs a dynamic query on the database and returns an ordered range of the matching rows. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.RoleModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param dynamicQuery the dynamic query * @param start the lower bound of the range of model instances * @param end the upper bound of the range of model instances (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching rows */ public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getGroupRelatedRoles(long groupId) throws PortalException; @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getGroupRoles(long groupId); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getGroupRoles(long groupId, int start, int end); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getGroupRoles(long groupId, int start, int end, OrderByComparator<Role> orderByComparator); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getGroupRolesAndTeamRoles(long companyId, java.lang.String keywords, List<java.lang.String> excludedNames, int[] types, long excludedTeamRoleId, long teamGroupId, int start, int end); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getResourceBlockRoles(long resourceBlockId, java.lang.String className, java.lang.String actionId); /** * Returns all the roles associated with the action ID in the company within * the permission scope. * * @param companyId the primary key of the company * @param name the resource name * @param scope the permission scope * @param primKey the primary key of the resource's class * @param actionId the name of the resource action * @return the roles * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByC_N_S_P_A( long, String, int, String, String) */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getResourceRoles(long companyId, java.lang.String name, int scope, java.lang.String primKey, java.lang.String actionId); /** * Returns a range of all the roles. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.RoleModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of roles * @param end the upper bound of the range of roles (not inclusive) * @return the range of roles */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getRoles(int start, int end); /** * Returns all the roles of the type and subtype. * * @param type the role's type (optionally <code>0</code>) * @param subtype the role's subtype (optionally <code>null</code>) * @return the roles of the type and subtype */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getRoles(int type, java.lang.String subtype); /** * Returns all the roles in the company. * * @param companyId the primary key of the company * @return the roles in the company */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getRoles(long companyId); /** * Returns all the roles with the types. * * @param companyId the primary key of the company * @param types the role types (optionally <code>null</code>) * @return the roles with the types */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getRoles(long companyId, int[] types); /** * Returns all the roles with the primary keys. * * @param roleIds the primary keys of the roles * @return the roles with the primary keys */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getRoles(long[] roleIds) throws PortalException; /** * Returns all the roles of the subtype. * * @param subtype the role's subtype (optionally <code>null</code>) * @return the roles of the subtype */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getSubtypeRoles(java.lang.String subtype); /** * Returns the team roles in the group. * * @param groupId the primary key of the group * @return the team roles in the group */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getTeamRoles(long groupId) throws PortalException; /** * Returns the team roles in the group, excluding the specified role IDs. * * @param groupId the primary key of the group * @param excludedRoleIds the primary keys of the roles to exclude (optionally <code>null</code>) * @return the team roles in the group, excluding the specified role IDs */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getTeamRoles(long groupId, long[] excludedRoleIds) throws PortalException; /** * Returns the team roles in the company. * * @param companyId the primary key of the company * @param teamIds the primary keys of the teams * @return the team roles in the company */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getTeamsRoles(long companyId, long[] teamIds) throws PortalException; /** * Returns all the roles of the type. * * @param type the role's type (optionally <code>0</code>) * @return the range of the roles of the type */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getTypeRoles(int type); /** * Returns a range of all the roles of the type. * * @param type the role's type (optionally <code>0</code>) * @param start the lower bound of the range of roles to return * @param end the upper bound of the range of roles to return (not inclusive) * @return the range of the roles of the type */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getTypeRoles(int type, int start, int end); /** * Returns all the user's roles within the user group. * * @param userId the primary key of the user * @param groupId the primary key of the group * @return the user's roles within the user group * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByUserGroupGroupRole( long, long) */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserGroupGroupRoles(long userId, long groupId); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserGroupGroupRoles(long userId, long groupId, int start, int end); /** * Returns all the user's roles within the user group. * * @param userId the primary key of the user * @param groupId the primary key of the group * @return the user's roles within the user group * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByUserGroupRole( long, long) */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserGroupRoles(long userId, long groupId); /** * Returns the union of all the user's roles within the groups. * * @param userId the primary key of the user * @param groups the groups (optionally <code>null</code>) * @return the union of all the user's roles within the groups * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByU_G( long, List) */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserRelatedRoles(long userId, List<Group> groups); /** * Returns all the user's roles within the group. * * @param userId the primary key of the user * @param groupId the primary key of the group * @return the user's roles within the group * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByU_G( long, long) */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserRelatedRoles(long userId, long groupId); /** * Returns the union of all the user's roles within the groups. * * @param userId the primary key of the user * @param groupIds the primary keys of the groups * @return the union of all the user's roles within the groups * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByU_G( long, long[]) */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserRelatedRoles(long userId, long[] groupIds); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserRoles(long userId); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserRoles(long userId, int start, int end); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserRoles(long userId, int start, int end, OrderByComparator<Role> orderByComparator); @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> getUserTeamRoles(long userId, long groupId); /** * Returns an ordered range of all the roles that match the keywords and * types. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. * </p> * * @param companyId the primary key of the company * @param keywords the keywords (space separated), which may occur in the role's name or description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @param start the lower bound of the range of roles to return * @param end the upper bound of the range of roles to return (not inclusive) * @param obc the comparator to order the roles (optionally <code>null</code>) * @return the ordered range of the matching roles, ordered by <code>obc</code> * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> search(long companyId, java.lang.String keywords, java.lang.Integer[] types, int start, int end, OrderByComparator<Role> obc); /** * Returns an ordered range of all the roles that match the keywords, types, * and params. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. * </p> * * @param companyId the primary key of the company * @param keywords the keywords (space separated), which may occur in the role's name or description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @param params the finder parameters. Can specify values for the "usersRoles" key. For more information, see {@link com.liferay.portal.kernel.service.persistence.RoleFinder} * @param start the lower bound of the range of roles to return * @param end the upper bound of the range of roles to return (not inclusive) * @param obc the comparator to order the roles (optionally <code>null</code>) * @return the ordered range of the matching roles, ordered by <code>obc</code> * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> search(long companyId, java.lang.String keywords, java.lang.Integer[] types, LinkedHashMap<java.lang.String, java.lang.Object> params, int start, int end, OrderByComparator<Role> obc); /** * Returns an ordered range of all the roles that match the name, * description, and types. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. * </p> * * @param companyId the primary key of the company * @param name the role's name (optionally <code>null</code>) * @param description the role's description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @param start the lower bound of the range of the roles to return * @param end the upper bound of the range of the roles to return (not inclusive) * @param obc the comparator to order the roles (optionally <code>null</code>) * @return the ordered range of the matching roles, ordered by <code>obc</code> * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> search(long companyId, java.lang.String name, java.lang.String description, java.lang.Integer[] types, int start, int end, OrderByComparator<Role> obc); /** * Returns an ordered range of all the roles that match the name, * description, types, and params. * * <p> * Useful when paginating results. Returns a maximum of <code>end - * start</code> instances. <code>start</code> and <code>end</code> are not * primary keys, they are indexes in the result set. Thus, <code>0</code> * refers to the first result in the set. Setting both <code>start</code> * and <code>end</code> to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. * </p> * * @param companyId the primary key of the company * @param name the role's name (optionally <code>null</code>) * @param description the role's description (optionally <code>null</code>) * @param types the role types (optionally <code>null</code>) * @param params the finder's parameters. Can specify values for the "usersRoles" key. For more information, see {@link com.liferay.portal.kernel.service.persistence.RoleFinder} * @param start the lower bound of the range of the roles to return * @param end the upper bound of the range of the roles to return (not inclusive) * @param obc the comparator to order the roles (optionally <code>null</code>) * @return the ordered range of the matching roles, ordered by <code>obc</code> * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public List<Role> search(long companyId, java.lang.String name, java.lang.String description, java.lang.Integer[] types, LinkedHashMap<java.lang.String, java.lang.Object> params, int start, int end, OrderByComparator<Role> obc); /** * Returns a map of role names to associated action IDs for the named * resource in the company within the permission scope. * * @param companyId the primary key of the company * @param name the resource name * @param scope the permission scope * @param primKey the primary key of the resource's class * @return the role names and action IDs * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByC_N_S_P( long, String, int, String) */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Map<java.lang.String, List<java.lang.String>> getResourceRoles( long companyId, java.lang.String name, int scope, java.lang.String primKey); /** * Returns the team role map for the group. * * @param groupId the primary key of the group * @return the team role map for the group */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public Map<Team, Role> getTeamRoleMap(long groupId) throws PortalException; /** * Returns the number of rows matching the dynamic query. * * @param dynamicQuery the dynamic query * @return the number of rows matching the dynamic query */ public long dynamicQueryCount(DynamicQuery dynamicQuery); /** * Returns the number of rows matching the dynamic query. * * @param dynamicQuery the dynamic query * @param projection the projection to apply to the query * @return the number of rows matching the dynamic query */ public long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection); /** * Returns the groupIds of the groups associated with the role. * * @param roleId the roleId of the role * @return long[] the groupIds of groups associated with the role */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public long[] getGroupPrimaryKeys(long roleId); /** * Returns the userIds of the users associated with the role. * * @param roleId the roleId of the role * @return long[] the userIds of users associated with the role */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public long[] getUserPrimaryKeys(long roleId); public void addGroupRole(long groupId, Role role); public void addGroupRole(long groupId, long roleId); public void addGroupRoles(long groupId, List<Role> roles); public void addGroupRoles(long groupId, long[] roleIds); /** * @throws PortalException */ public void addUserRole(long userId, Role role) throws PortalException; /** * @throws PortalException */ public void addUserRole(long userId, long roleId) throws PortalException; /** * @throws PortalException */ public void addUserRoles(long userId, List<Role> roles) throws PortalException; /** * @throws PortalException */ public void addUserRoles(long userId, long[] roleIds) throws PortalException; /** * Checks to ensure that the system roles map has appropriate default roles * in each company. */ public void checkSystemRoles() throws PortalException; /** * Checks to ensure that the system roles map has appropriate default roles * in the company. * * @param companyId the primary key of the company */ @Transactional(propagation = Propagation.SUPPORTS, readOnly = true) public void checkSystemRoles(long companyId) throws PortalException; public void clearGroupRoles(long groupId); /** * @throws PortalException */ public void clearUserRoles(long userId) throws PortalException; public void deleteGroupRole(long groupId, Role role); public void deleteGroupRole(long groupId, long roleId); public void deleteGroupRoles(long groupId, List<Role> roles); public void deleteGroupRoles(long groupId, long[] roleIds); /** * @throws PortalException */ public void deleteUserRole(long userId, Role role) throws PortalException; /** * @throws PortalException */ public void deleteUserRole(long userId, long roleId) throws PortalException; /** * @throws PortalException */ public void deleteUserRoles(long userId, List<Role> roles) throws PortalException; /** * @throws PortalException */ public void deleteUserRoles(long userId, long[] roleIds) throws PortalException; public void setGroupRoles(long groupId, long[] roleIds); /** * @throws PortalException */ public void setUserRoles(long userId, long[] roleIds) throws PortalException; /** * Removes the matching roles associated with the user. The user is * reindexed after the roles are removed. * * @param userId the primary key of the user * @param roleIds the primary keys of the roles */ public void unsetUserRoles(long userId, long[] roleIds) throws PortalException; }