All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.kernel.service.RoleLocalServiceUtil Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * 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.portal.kernel.bean.PortalBeanLocatorUtil;

/**
 * Provides the local service utility for Role. This utility wraps
 * com.liferay.portal.service.impl.RoleLocalServiceImpl and
 * is an access point for service operations in application layer code running
 * on the local server. 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 RoleLocalService
 * @generated
 */
@ProviderType
public class RoleLocalServiceUtil {

	/*
	 * NOTE FOR DEVELOPERS:
	 *
	 * Never modify this class directly. Add custom service methods to com.liferay.portal.service.impl.RoleLocalServiceImpl and rerun ServiceBuilder to regenerate this class.
	 */
	public static void addGroupRole(long groupId, long roleId) {
		getService().addGroupRole(groupId, roleId);
	}

	public static void addGroupRole(
		long groupId, com.liferay.portal.kernel.model.Role role) {

		getService().addGroupRole(groupId, role);
	}

	public static void addGroupRoles(
		long groupId,
		java.util.List roles) {

		getService().addGroupRoles(groupId, roles);
	}

	public static void addGroupRoles(long groupId, long[] roleIds) {
		getService().addGroupRoles(groupId, roleIds);
	}

	/**
	 * 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 null)
	 * @param classPK the primary key of the class for which the role is
	 created (optionally 0)
	 * @param name the role's name
	 * @param titleMap the role's localized titles (optionally
	 null)
	 * @param descriptionMap the role's localized descriptions (optionally
	 null)
	 * @param type the role's type (optionally 0)
	 * @param subtype the role's subtype (optionally null)
	 * @param serviceContext the service context to be applied (optionally
	 null). Can set expando bridge attributes for the
	 role.
	 * @return the role
	 */
	public static com.liferay.portal.kernel.model.Role addRole(
			long userId, String className, long classPK, String name,
			java.util.Map titleMap,
			java.util.Map descriptionMap, int type,
			String subtype, ServiceContext serviceContext)
		throws com.liferay.portal.kernel.exception.PortalException {

		return getService().addRole(
			userId, className, classPK, name, titleMap, descriptionMap, type,
			subtype, serviceContext);
	}

	/**
	 * Adds the role to the database. Also notifies the appropriate model listeners.
	 *
	 * @param role the role
	 * @return the role that was added
	 */
	public static com.liferay.portal.kernel.model.Role addRole(
		com.liferay.portal.kernel.model.Role role) {

		return getService().addRole(role);
	}

	/**
	 * @throws PortalException
	 */
	public static void addUserRole(long userId, long roleId)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().addUserRole(userId, roleId);
	}

	/**
	 * @throws PortalException
	 */
	public static void addUserRole(
			long userId, com.liferay.portal.kernel.model.Role role)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().addUserRole(userId, role);
	}

	/**
	 * @throws PortalException
	 */
	public static void addUserRoles(
			long userId,
			java.util.List roles)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().addUserRoles(userId, roles);
	}

	/**
	 * @throws PortalException
	 */
	public static void addUserRoles(long userId, long[] roleIds)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().addUserRoles(userId, roleIds);
	}

	/**
	 * Checks to ensure that the system roles map has appropriate default roles
	 * in each company.
	 */
	public static void checkSystemRoles()
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().checkSystemRoles();
	}

	/**
	 * Checks to ensure that the system roles map has appropriate default roles
	 * in the company.
	 *
	 * @param companyId the primary key of the company
	 */
	public static void checkSystemRoles(long companyId)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().checkSystemRoles(companyId);
	}

	public static void clearGroupRoles(long groupId) {
		getService().clearGroupRoles(groupId);
	}

	/**
	 * @throws PortalException
	 */
	public static void clearUserRoles(long userId)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().clearUserRoles(userId);
	}

	/**
	 * 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 static com.liferay.portal.kernel.model.Role createRole(long roleId) {
		return getService().createRole(roleId);
	}

	public static void deleteGroupRole(long groupId, long roleId) {
		getService().deleteGroupRole(groupId, roleId);
	}

	public static void deleteGroupRole(
		long groupId, com.liferay.portal.kernel.model.Role role) {

		getService().deleteGroupRole(groupId, role);
	}

	public static void deleteGroupRoles(
		long groupId,
		java.util.List roles) {

		getService().deleteGroupRoles(groupId, roles);
	}

	public static void deleteGroupRoles(long groupId, long[] roleIds) {
		getService().deleteGroupRoles(groupId, roleIds);
	}

	/**
	 * @throws PortalException
	 */
	public static com.liferay.portal.kernel.model.PersistedModel
			deletePersistedModel(
				com.liferay.portal.kernel.model.PersistedModel persistedModel)
		throws com.liferay.portal.kernel.exception.PortalException {

		return getService().deletePersistedModel(persistedModel);
	}

	/**
	 * 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
	 */
	public static com.liferay.portal.kernel.model.Role deleteRole(long roleId)
		throws com.liferay.portal.kernel.exception.PortalException {

		return getService().deleteRole(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
	 */
	public static com.liferay.portal.kernel.model.Role deleteRole(
			com.liferay.portal.kernel.model.Role role)
		throws com.liferay.portal.kernel.exception.PortalException {

		return getService().deleteRole(role);
	}

	/**
	 * @throws PortalException
	 */
	public static void deleteUserRole(long userId, long roleId)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().deleteUserRole(userId, roleId);
	}

	/**
	 * @throws PortalException
	 */
	public static void deleteUserRole(
			long userId, com.liferay.portal.kernel.model.Role role)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().deleteUserRole(userId, role);
	}

	/**
	 * @throws PortalException
	 */
	public static void deleteUserRoles(
			long userId,
			java.util.List roles)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().deleteUserRoles(userId, roles);
	}

	/**
	 * @throws PortalException
	 */
	public static void deleteUserRoles(long userId, long[] roleIds)
		throws com.liferay.portal.kernel.exception.PortalException {

		getService().deleteUserRoles(userId, roleIds);
	}

	public static com.liferay.portal.kernel.dao.orm.DynamicQuery
		dynamicQuery() {

		return getService().dynamicQuery();
	}

	/**
	 * Performs a dynamic query on the database and returns the matching rows.
	 *
	 * @param dynamicQuery the dynamic query
	 * @return the matching rows
	 */
	public static  java.util.List dynamicQuery(
		com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {

		return getService().dynamicQuery(dynamicQuery);
	}

	/**
	 * Performs a dynamic query on the database and returns a range of the matching rows.
	 *
	 * 

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.RoleModelImpl. If both orderByComparator 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. *

* * @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 static java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end) { return getService().dynamicQuery(dynamicQuery, start, end); } /** * Performs a dynamic query on the database and returns an ordered range of the matching rows. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.RoleModelImpl. If both orderByComparator 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. *

* * @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 null) * @return the ordered range of matching rows */ public static java.util.List dynamicQuery( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) { return getService().dynamicQuery( dynamicQuery, start, end, orderByComparator); } /** * Returns the number of rows matching the dynamic query. * * @param dynamicQuery the dynamic query * @return the number of rows matching the dynamic query */ public static long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) { return getService().dynamicQueryCount(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 static long dynamicQueryCount( com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) { return getService().dynamicQueryCount(dynamicQuery, projection); } public static com.liferay.portal.kernel.model.Role fetchRole(long roleId) { return getService().fetchRole(roleId); } /** * Returns the role with the name in the company. * *

* 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. *

* * @param companyId the primary key of the company * @param name the role's name * @return Returns the role with the name or null if a role with the name could not be found in the company */ public static com.liferay.portal.kernel.model.Role fetchRole( long companyId, String name) { return getService().fetchRole(companyId, name); } /** * 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 null if a matching role could not be found */ public static com.liferay.portal.kernel.model.Role fetchRoleByUuidAndCompanyId(String uuid, long companyId) { return getService().fetchRoleByUuidAndCompanyId(uuid, companyId); } public static com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() { return getService().getActionableDynamicQuery(); } public static int getAssigneesTotal(long roleId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getAssigneesTotal(roleId); } /** * Returns the default role for the group with the primary key. * *

* 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}. *

* * @param groupId the primary key of the group * @return the default role for the group with the primary key */ public static com.liferay.portal.kernel.model.Role getDefaultGroupRole( long groupId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getDefaultGroupRole(groupId); } public static com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery getExportActionableDynamicQuery( com.liferay.exportimport.kernel.lar.PortletDataContext portletDataContext) { return getService().getExportActionableDynamicQuery(portletDataContext); } /** * 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 */ public static long[] getGroupPrimaryKeys(long roleId) { return getService().getGroupPrimaryKeys(roleId); } public static java.util.List getGroupRelatedRoles(long groupId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getGroupRelatedRoles(groupId); } public static java.util.List getGroupRoles(long groupId) { return getService().getGroupRoles(groupId); } public static java.util.List getGroupRoles(long groupId, int start, int end) { return getService().getGroupRoles(groupId, start, end); } public static java.util.List getGroupRoles( long groupId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) { return getService().getGroupRoles( groupId, start, end, orderByComparator); } public static java.util.List getGroupRolesAndTeamRoles( long companyId, String keywords, java.util.List excludedNames, int[] types, long excludedTeamRoleId, long teamGroupId, int start, int end) { return getService().getGroupRolesAndTeamRoles( companyId, keywords, excludedNames, types, excludedTeamRoleId, teamGroupId, start, end); } public static int getGroupRolesAndTeamRolesCount( long companyId, String keywords, java.util.List excludedNames, int[] types, long excludedTeamRoleId, long teamGroupId) { return getService().getGroupRolesAndTeamRolesCount( companyId, keywords, excludedNames, types, excludedTeamRoleId, teamGroupId); } public static int getGroupRolesCount(long groupId) { return getService().getGroupRolesCount(groupId); } public static com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery() { return getService().getIndexableActionableDynamicQuery(); } /** * Returns the OSGi service identifier. * * @return the OSGi service identifier */ public static String getOSGiServiceIdentifier() { return getService().getOSGiServiceIdentifier(); } public static com.liferay.portal.kernel.model.PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException { return getService().getPersistedModel(primaryKeyObj); } /** * @deprecated As of Judson (7.1.x), with no direct replacement */ @Deprecated public static java.util.List getResourceBlockRoles( long resourceBlockId, String className, String actionId) { return getService().getResourceBlockRoles( resourceBlockId, className, actionId); } /** * 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) */ public static java.util.Map> getResourceRoles( long companyId, String name, int scope, String primKey) { return getService().getResourceRoles(companyId, name, scope, primKey); } /** * 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) */ public static java.util.List getResourceRoles( long companyId, String name, int scope, String primKey, String actionId) { return getService().getResourceRoles( companyId, name, scope, primKey, actionId); } /** * 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 */ public static com.liferay.portal.kernel.model.Role getRole(long roleId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRole(roleId); } /** * Returns the role with the name in the company. * *

* 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. *

* * @param companyId the primary key of the company * @param name the role's name * @return the role with the name */ public static com.liferay.portal.kernel.model.Role getRole( long companyId, String name) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRole(companyId, name); } /** * 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 */ public static com.liferay.portal.kernel.model.Role getRoleByUuidAndCompanyId(String uuid, long companyId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRoleByUuidAndCompanyId(uuid, companyId); } /** * Returns a range of all the roles. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.RoleModelImpl. If both orderByComparator 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. *

* * @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 */ public static java.util.List getRoles( int start, int end) { return getService().getRoles(start, end); } /** * Returns all the roles of the type and subtype. * * @param type the role's type (optionally 0) * @param subtype the role's subtype (optionally null) * @return the roles of the type and subtype */ public static java.util.List getRoles( int type, String subtype) { return getService().getRoles(type, subtype); } /** * Returns all the roles in the company. * * @param companyId the primary key of the company * @return the roles in the company */ public static java.util.List getRoles( long companyId) { return getService().getRoles(companyId); } /** * Returns all the roles with the types. * * @param companyId the primary key of the company * @param types the role types (optionally null) * @return the roles with the types */ public static java.util.List getRoles( long companyId, int[] types) { return getService().getRoles(companyId, types); } /** * Returns all the roles with the primary keys. * * @param roleIds the primary keys of the roles * @return the roles with the primary keys */ public static java.util.List getRoles( long[] roleIds) throws com.liferay.portal.kernel.exception.PortalException { return getService().getRoles(roleIds); } /** * Returns the number of roles. * * @return the number of roles */ public static int getRolesCount() { return getService().getRolesCount(); } /** * Returns all the roles of the subtype. * * @param subtype the role's subtype (optionally null) * @return the roles of the subtype */ public static java.util.List getSubtypeRoles(String subtype) { return getService().getSubtypeRoles(subtype); } /** * Returns the number of roles of the subtype. * * @param subtype the role's subtype (optionally null) * @return the number of roles of the subtype */ public static int getSubtypeRolesCount(String subtype) { return getService().getSubtypeRolesCount(subtype); } /** * 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 */ public static com.liferay.portal.kernel.model.Role getTeamRole( long companyId, long teamId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getTeamRole(companyId, teamId); } /** * Returns the team role map for the group. * * @param groupId the primary key of the group * @return the team role map for the group */ public static java.util.Map getTeamRoleMap(long groupId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getTeamRoleMap(groupId); } /** * Returns the team roles in the group. * * @param groupId the primary key of the group * @return the team roles in the group */ public static java.util.List getTeamRoles(long groupId) throws com.liferay.portal.kernel.exception.PortalException { return getService().getTeamRoles(groupId); } /** * 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 null) * @return the team roles in the group, excluding the specified role IDs */ public static java.util.List getTeamRoles(long groupId, long[] excludedRoleIds) throws com.liferay.portal.kernel.exception.PortalException { return getService().getTeamRoles(groupId, excludedRoleIds); } /** * 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 */ public static java.util.List getTeamsRoles(long companyId, long[] teamIds) throws com.liferay.portal.kernel.exception.PortalException { return getService().getTeamsRoles(companyId, teamIds); } /** * Returns all the roles of the type. * * @param type the role's type (optionally 0) * @return the range of the roles of the type */ public static java.util.List getTypeRoles(int type) { return getService().getTypeRoles(type); } /** * Returns a range of all the roles of the type. * * @param type the role's type (optionally 0) * @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 */ public static java.util.List getTypeRoles(int type, int start, int end) { return getService().getTypeRoles(type, start, end); } /** * Returns the number of roles of the type. * * @param type the role's type (optionally 0) * @return the number of roles of the type */ public static int getTypeRolesCount(int type) { return getService().getTypeRolesCount(type); } /** * 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) */ public static java.util.List getUserGroupGroupRoles(long userId, long groupId) { return getService().getUserGroupGroupRoles(userId, groupId); } public static java.util.List getUserGroupGroupRoles(long userId, long groupId, int start, int end) { return getService().getUserGroupGroupRoles(userId, groupId, start, end); } public static int getUserGroupGroupRolesCount(long userId, long groupId) { return getService().getUserGroupGroupRolesCount(userId, groupId); } /** * 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) */ public static java.util.List getUserGroupRoles(long userId, long groupId) { return getService().getUserGroupRoles(userId, groupId); } /** * 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 */ public static long[] getUserPrimaryKeys(long roleId) { return getService().getUserPrimaryKeys(roleId); } /** * 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 null) * @return the union of all the user's roles within the groups * @see com.liferay.portal.kernel.service.persistence.RoleFinder#findByU_G( long, List) */ public static java.util.List getUserRelatedRoles( long userId, java.util.List groups) { return getService().getUserRelatedRoles(userId, 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) */ public static java.util.List getUserRelatedRoles(long userId, long groupId) { return getService().getUserRelatedRoles(userId, 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[]) */ public static java.util.List getUserRelatedRoles(long userId, long[] groupIds) { return getService().getUserRelatedRoles(userId, groupIds); } public static java.util.List getUserRoles(long userId) { return getService().getUserRoles(userId); } public static java.util.List getUserRoles(long userId, int start, int end) { return getService().getUserRoles(userId, start, end); } public static java.util.List getUserRoles( long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) { return getService().getUserRoles(userId, start, end, orderByComparator); } public static int getUserRolesCount(long userId) { return getService().getUserRolesCount(userId); } public static java.util.List getUserTeamRoles(long userId, long groupId) { return getService().getUserTeamRoles(userId, groupId); } public static boolean hasGroupRole(long groupId, long roleId) { return getService().hasGroupRole(groupId, roleId); } public static boolean hasGroupRoles(long groupId) { return getService().hasGroupRoles(groupId); } public static boolean hasUserRole(long userId, long roleId) { return getService().hasUserRole(userId, roleId); } /** * Returns true 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 true if the user is associated with the regular role; false otherwise */ public static boolean hasUserRole( long userId, long companyId, String name, boolean inherited) throws com.liferay.portal.kernel.exception.PortalException { return getService().hasUserRole(userId, companyId, name, inherited); } public static boolean hasUserRoles(long userId) { return getService().hasUserRoles(userId); } /** * Returns true 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 true if the user has any one of the regular roles; false otherwise */ public static boolean hasUserRoles( long userId, long companyId, String[] names, boolean inherited) throws com.liferay.portal.kernel.exception.PortalException { return getService().hasUserRoles(userId, companyId, names, inherited); } /** * Returns a role with the name in the company. * * @param companyId the primary key of the company * @param name the role's name (optionally null) * @return the role with the name, or null if a role with the name could not be found in the company */ public static com.liferay.portal.kernel.model.Role loadFetchRole( long companyId, String name) { return getService().loadFetchRole(companyId, 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 */ public static com.liferay.portal.kernel.model.Role loadGetRole( long companyId, String name) throws com.liferay.portal.kernel.exception.PortalException { return getService().loadGetRole(companyId, name); } /** * Returns an ordered range of all the roles that match the keywords and * types. * *

* Useful when paginating results. Returns a maximum of end - * start instances. start and end are not * primary keys, they are indexes in the result set. Thus, 0 * refers to the first result in the set. Setting both start * and end to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. *

* * @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 null) * @param types the role types (optionally null) * @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 null) * @return the ordered range of the matching roles, ordered by obc * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ public static java.util.List search( long companyId, String keywords, Integer[] types, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc) { return getService().search(companyId, keywords, types, start, end, obc); } /** * Returns an ordered range of all the roles that match the keywords, types, * and params. * *

* Useful when paginating results. Returns a maximum of end - * start instances. start and end are not * primary keys, they are indexes in the result set. Thus, 0 * refers to the first result in the set. Setting both start * and end to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. *

* * @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 null) * @param types the role types (optionally null) * @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 null) * @return the ordered range of the matching roles, ordered by obc * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ public static java.util.List search( long companyId, String keywords, Integer[] types, java.util.LinkedHashMap params, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc) { return getService().search( companyId, keywords, types, params, start, end, obc); } /** * Returns an ordered range of all the roles that match the name, * description, and types. * *

* Useful when paginating results. Returns a maximum of end - * start instances. start and end are not * primary keys, they are indexes in the result set. Thus, 0 * refers to the first result in the set. Setting both start * and end to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. *

* * @param companyId the primary key of the company * @param name the role's name (optionally null) * @param description the role's description (optionally null) * @param types the role types (optionally null) * @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 null) * @return the ordered range of the matching roles, ordered by obc * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ public static java.util.List search( long companyId, String name, String description, Integer[] types, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc) { return getService().search( companyId, name, description, types, start, end, obc); } /** * Returns an ordered range of all the roles that match the name, * description, types, and params. * *

* Useful when paginating results. Returns a maximum of end - * start instances. start and end are not * primary keys, they are indexes in the result set. Thus, 0 * refers to the first result in the set. Setting both start * and end to {@link * com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full * result set. *

* * @param companyId the primary key of the company * @param name the role's name (optionally null) * @param description the role's description (optionally null) * @param types the role types (optionally null) * @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 null) * @return the ordered range of the matching roles, ordered by obc * @see com.liferay.portal.kernel.service.persistence.RoleFinder */ public static java.util.List search( long companyId, String name, String description, Integer[] types, java.util.LinkedHashMap params, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc) { return getService().search( companyId, name, description, types, params, start, end, obc); } /** * 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 null) * @param types the role types (optionally null) * @return the number of matching roles */ public static int searchCount( long companyId, String keywords, Integer[] types) { return getService().searchCount(companyId, keywords, 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 null) * @param types the role types (optionally null) * @param params the finder parameters. For more information, see {@link com.liferay.portal.kernel.service.persistence.RoleFinder} * @return the number of matching roles */ public static int searchCount( long companyId, String keywords, Integer[] types, java.util.LinkedHashMap params) { return getService().searchCount(companyId, keywords, types, 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 null) * @param description the role's description (optionally null) * @param types the role types (optionally null) * @return the number of matching roles */ public static int searchCount( long companyId, String name, String description, Integer[] types) { return getService().searchCount(companyId, name, description, 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 null) * @param description the role's description (optionally null) * @param types the role types (optionally null) * @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 */ public static int searchCount( long companyId, String name, String description, Integer[] types, java.util.LinkedHashMap params) { return getService().searchCount( companyId, name, description, types, params); } public static void setGroupRoles(long groupId, long[] roleIds) { getService().setGroupRoles(groupId, roleIds); } /** * @throws PortalException */ public static void setUserRoles(long userId, long[] roleIds) throws com.liferay.portal.kernel.exception.PortalException { getService().setUserRoles(userId, roleIds); } /** * 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 static void unsetUserRoles(long userId, long[] roleIds) throws com.liferay.portal.kernel.exception.PortalException { getService().unsetUserRoles(userId, roleIds); } /** * 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 null) to replace those existing for the role * @param descriptionMap the new localized descriptions (optionally null) to replace those existing for the role * @param subtype the role's new subtype (optionally null) * @param serviceContext the service context to be applied (optionally null). Can set expando bridge attributes for the role. * @return the role with the primary key */ public static com.liferay.portal.kernel.model.Role updateRole( long roleId, String name, java.util.Map titleMap, java.util.Map descriptionMap, String subtype, ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { return getService().updateRole( roleId, name, titleMap, descriptionMap, subtype, serviceContext); } /** * 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 */ public static com.liferay.portal.kernel.model.Role updateRole( com.liferay.portal.kernel.model.Role role) { return getService().updateRole(role); } public static RoleLocalService getService() { if (_service == null) { _service = (RoleLocalService)PortalBeanLocatorUtil.locate( RoleLocalService.class.getName()); } return _service; } private static RoleLocalService _service; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy