Object
com.liferay.portal.kernel.service.persistence.RoleUtil

public class RoleUtil extends Object
The persistence utility for the role service. This utility wraps com.liferay.portal.service.persistence.impl.RolePersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static boolean
    addGroup(long pk, long groupPK)
    Adds an association between the role and the group.
    static boolean
    addGroup(long pk, Group group)
    Adds an association between the role and the group.
    static boolean
    addGroups(long pk, long[] groupPKs)
    Adds an association between the role and the groups.
    static boolean
    addGroups(long pk, List<Group> groups)
    Adds an association between the role and the groups.
    static boolean
    addUser(long pk, long userPK)
    Adds an association between the role and the user.
    static boolean
    addUser(long pk, User user)
    Adds an association between the role and the user.
    static boolean
    addUsers(long pk, long[] userPKs)
    Adds an association between the role and the users.
    static boolean
    addUsers(long pk, List<User> users)
    Adds an association between the role and the users.
    static void
    Caches the role in the entity cache if it is enabled.
    static void
    Caches the roles in the entity cache if it is enabled.
    static void
     
    static void
     
    static void
    clearGroups(long pk)
    Clears all associations between the role and its groups.
    static void
    clearUsers(long pk)
    Clears all associations between the role and its users.
    static boolean
    containsGroup(long pk, long groupPK)
    Returns true if the group is associated with the role.
    static boolean
    containsGroups(long pk)
    Returns true if the role has any groups associated with it.
    static boolean
    containsUser(long pk, long userPK)
    Returns true if the user is associated with the role.
    static boolean
    containsUsers(long pk)
    Returns true if the role has any users associated with it.
    static int
    Returns the number of roles.
    static int
    countByC_C_C(long companyId, long classNameId, long classPK)
    Returns the number of roles where companyId = ? and classNameId = ? and classPK = ?.
    static int
    countByC_C_C(long companyId, long classNameId, long[] classPKs)
    Returns the number of roles where companyId = ? and classNameId = ? and classPK = any ?.
    static int
    countByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type)
    Returns the number of roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.
    static int
    countByC_C_C_T(long companyId, long classNameId, long classPK, int type)
    Returns the number of roles where companyId = ? and classNameId = ? and classPK = ? and type = ?.
    static int
    countByC_N(long companyId, String name)
    Returns the number of roles where companyId = ? and name = ?.
    static int
    countByC_T(long companyId, int type)
    Returns the number of roles where companyId = ? and type = ?.
    static int
    countByC_T(long companyId, int[] types)
    Returns the number of roles where companyId = ? and type = any ?.
    static int
    countByCompanyId(long companyId)
    Returns the number of roles where companyId = ?.
    static int
    countByERC_C(String externalReferenceCode, long companyId)
    Returns the number of roles where externalReferenceCode = ? and companyId = ?.
    static int
    Returns the number of roles where name = ?.
    static int
    Returns the number of roles where subtype = ?.
    static int
    countByT_S(int type, String subtype)
    Returns the number of roles where type = ? and subtype = ?.
    static int
    countByType(int type)
    Returns the number of roles where type = ?.
    static int
    Returns the number of roles where uuid = ?.
    static int
    countByUuid_C(String uuid, long companyId)
    Returns the number of roles where uuid = ? and companyId = ?.
    static long
     
    static Role
    create(long roleId)
    Creates a new role with the primary key.
    static Role
    fetchByC_C_C(long companyId, long classNameId, long classPK)
    Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found.
    static Role
    fetchByC_C_C(long companyId, long classNameId, long classPK, boolean useFinderCache)
    Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
    static Role
    fetchByC_C_C_T(long companyId, long classNameId, long classPK, int type)
    Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or returns null if it could not be found.
    static Role
    fetchByC_C_C_T(long companyId, long classNameId, long classPK, int type, boolean useFinderCache)
    Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or returns null if it could not be found, optionally using the finder cache.
    static Role
    fetchByC_N(long companyId, String name)
    Returns the role where companyId = ? and name = ? or returns null if it could not be found.
    static Role
    fetchByC_N(long companyId, String name, boolean useFinderCache)
    Returns the role where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
    static Role
    fetchByC_T_First(long companyId, int type, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where companyId = ? and type = ?.
    static Role
    fetchByC_T_Last(long companyId, int type, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where companyId = ? and type = ?.
    static Role
    fetchByCompanyId_First(long companyId, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where companyId = ?.
    static Role
    fetchByCompanyId_Last(long companyId, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where companyId = ?.
    static Role
    fetchByERC_C(String externalReferenceCode, long companyId)
    Returns the role where externalReferenceCode = ? and companyId = ? or returns null if it could not be found.
    static Role
    fetchByERC_C(String externalReferenceCode, long companyId, boolean useFinderCache)
    Returns the role where externalReferenceCode = ? and companyId = ? or returns null if it could not be found, optionally using the finder cache.
    static Role
    fetchByName_First(String name, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where name = ?.
    static Role
    fetchByName_Last(String name, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where name = ?.
    static Role
    fetchByPrimaryKey(long roleId)
    Returns the role with the primary key or returns null if it could not be found.
     
    static Role
    fetchBySubtype_First(String subtype, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where subtype = ?.
    static Role
    fetchBySubtype_Last(String subtype, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where subtype = ?.
    static Role
    fetchByT_S_First(int type, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where type = ? and subtype = ?.
    static Role
    fetchByT_S_Last(int type, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where type = ? and subtype = ?.
    static Role
    fetchByType_First(int type, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where type = ?.
    static Role
    fetchByType_Last(int type, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where type = ?.
    static Role
    fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where uuid = ? and companyId = ?.
    static Role
    fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where uuid = ? and companyId = ?.
    static Role
    fetchByUuid_First(String uuid, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where uuid = ?.
    static Role
    fetchByUuid_Last(String uuid, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where uuid = ?.
    static int
    filterCountByC_C_C(long companyId, long classNameId, long classPK)
    Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = ?.
    static int
    filterCountByC_C_C(long companyId, long classNameId, long[] classPKs)
    Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = any ?.
    static int
    filterCountByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type)
    Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = any ? and type = ?.
    static int
    filterCountByC_C_C_T(long companyId, long classNameId, long classPK, int type)
    Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = ? and type = ?.
    static int
    filterCountByC_T(long companyId, int type)
    Returns the number of roles that the user has permission to view where companyId = ? and type = ?.
    static int
    filterCountByC_T(long companyId, int[] types)
    Returns the number of roles that the user has permission to view where companyId = ? and type = any ?.
    static int
    filterCountByCompanyId(long companyId)
    Returns the number of roles that the user has permission to view where companyId = ?.
    static int
    Returns the number of roles that the user has permission to view where name = ?.
    static int
    Returns the number of roles that the user has permission to view where subtype = ?.
    static int
    filterCountByT_S(int type, String subtype)
    Returns the number of roles that the user has permission to view where type = ? and subtype = ?.
    static int
    Returns the number of roles that the user has permission to view where type = ?.
    static int
    Returns the number of roles that the user has permission to view where uuid = ?.
    static int
    filterCountByUuid_C(String uuid, long companyId)
    Returns the number of roles that the user has permission to view where uuid = ? and companyId = ?.
    static List<Role>
    filterFindByC_T(long companyId, int type)
    Returns all the roles that the user has permission to view where companyId = ? and type = ?.
    static List<Role>
    filterFindByC_T(long companyId, int[] types)
    Returns all the roles that the user has permission to view where companyId = ? and type = any ?.
    static List<Role>
    filterFindByC_T(long companyId, int[] types, int start, int end)
    Returns a range of all the roles that the user has permission to view where companyId = ? and type = any ?.
    static List<Role>
    filterFindByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permission to view where companyId = ? and type = any ?.
    static List<Role>
    filterFindByC_T(long companyId, int type, int start, int end)
    Returns a range of all the roles that the user has permission to view where companyId = ? and type = ?.
    static List<Role>
    filterFindByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where companyId = ? and type = ?.
    static Role[]
    filterFindByC_T_PrevAndNext(long roleId, long companyId, int type, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where companyId = ? and type = ?.
    static List<Role>
    filterFindByCompanyId(long companyId)
    Returns all the roles that the user has permission to view where companyId = ?.
    static List<Role>
    filterFindByCompanyId(long companyId, int start, int end)
    Returns a range of all the roles that the user has permission to view where companyId = ?.
    static List<Role>
    filterFindByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where companyId = ?.
    static Role[]
    filterFindByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where companyId = ?.
    static List<Role>
    Returns all the roles that the user has permission to view where name = ?.
    static List<Role>
    filterFindByName(String name, int start, int end)
    Returns a range of all the roles that the user has permission to view where name = ?.
    static List<Role>
    filterFindByName(String name, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where name = ?.
    static Role[]
    filterFindByName_PrevAndNext(long roleId, String name, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where name = ?.
    static List<Role>
    Returns all the roles that the user has permission to view where subtype = ?.
    static List<Role>
    filterFindBySubtype(String subtype, int start, int end)
    Returns a range of all the roles that the user has permission to view where subtype = ?.
    static List<Role>
    filterFindBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where subtype = ?.
    static Role[]
    filterFindBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where subtype = ?.
    static List<Role>
    filterFindByT_S(int type, String subtype)
    Returns all the roles that the user has permission to view where type = ? and subtype = ?.
    static List<Role>
    filterFindByT_S(int type, String subtype, int start, int end)
    Returns a range of all the roles that the user has permission to view where type = ? and subtype = ?.
    static List<Role>
    filterFindByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where type = ? and subtype = ?.
    static Role[]
    filterFindByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where type = ? and subtype = ?.
    static List<Role>
    filterFindByType(int type)
    Returns all the roles that the user has permission to view where type = ?.
    static List<Role>
    filterFindByType(int type, int start, int end)
    Returns a range of all the roles that the user has permission to view where type = ?.
    static List<Role>
    filterFindByType(int type, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where type = ?.
    static Role[]
    filterFindByType_PrevAndNext(long roleId, int type, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where type = ?.
    static List<Role>
    Returns all the roles that the user has permission to view where uuid = ?.
    static List<Role>
    filterFindByUuid(String uuid, int start, int end)
    Returns a range of all the roles that the user has permission to view where uuid = ?.
    static List<Role>
    filterFindByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where uuid = ?.
    static List<Role>
    filterFindByUuid_C(String uuid, long companyId)
    Returns all the roles that the user has permission to view where uuid = ? and companyId = ?.
    static List<Role>
    filterFindByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the roles that the user has permission to view where uuid = ? and companyId = ?.
    static List<Role>
    filterFindByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles that the user has permissions to view where uuid = ? and companyId = ?.
    static Role[]
    filterFindByUuid_C_PrevAndNext(long roleId, String uuid, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where uuid = ? and companyId = ?.
    static Role[]
    filterFindByUuid_PrevAndNext(long roleId, String uuid, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where uuid = ?.
    static List<Role>
    Returns all the roles.
    static List<Role>
    findAll(int start, int end)
    Returns a range of all the roles.
    static List<Role>
    findAll(int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles.
    static List<Role>
    findAll(int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles.
    static Role
    findByC_C_C(long companyId, long classNameId, long classPK)
    Returns the role where companyId = ? and classNameId = ? and classPK = ? or throws a NoSuchRoleException if it could not be found.
    static List<Role>
    findByC_C_C(long companyId, long classNameId, long[] classPKs)
    Returns all the roles where companyId = ? and classNameId = ? and classPK = any ?.
    static List<Role>
    findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end)
    Returns a range of all the roles where companyId = ? and classNameId = ? and classPK = any ?.
    static List<Role>
    findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = any ?.
    static List<Role>
    findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = ?, optionally using the finder cache.
    static List<Role>
    findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type)
    Returns all the roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.
    static List<Role>
    findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type, int start, int end)
    Returns a range of all the roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.
    static List<Role>
    findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.
    static List<Role>
    findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = ? and type = ?, optionally using the finder cache.
    static Role
    findByC_C_C_T(long companyId, long classNameId, long classPK, int type)
    Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or throws a NoSuchRoleException if it could not be found.
    static Role
    findByC_N(long companyId, String name)
    Returns the role where companyId = ? and name = ? or throws a NoSuchRoleException if it could not be found.
    static List<Role>
    findByC_T(long companyId, int type)
    Returns all the roles where companyId = ? and type = ?.
    static List<Role>
    findByC_T(long companyId, int[] types)
    Returns all the roles where companyId = ? and type = any ?.
    static List<Role>
    findByC_T(long companyId, int[] types, int start, int end)
    Returns a range of all the roles where companyId = ? and type = any ?.
    static List<Role>
    findByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where companyId = ? and type = any ?.
    static List<Role>
    findByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where companyId = ? and type = ?, optionally using the finder cache.
    static List<Role>
    findByC_T(long companyId, int type, int start, int end)
    Returns a range of all the roles where companyId = ? and type = ?.
    static List<Role>
    findByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where companyId = ? and type = ?.
    static List<Role>
    findByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where companyId = ? and type = ?.
    static Role
    findByC_T_First(long companyId, int type, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where companyId = ? and type = ?.
    static Role
    findByC_T_Last(long companyId, int type, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where companyId = ? and type = ?.
    static Role[]
    findByC_T_PrevAndNext(long roleId, long companyId, int type, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where companyId = ? and type = ?.
    static List<Role>
    findByCompanyId(long companyId)
    Returns all the roles where companyId = ?.
    static List<Role>
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the roles where companyId = ?.
    static List<Role>
    findByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where companyId = ?.
    static List<Role>
    findByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where companyId = ?.
    static Role
    findByCompanyId_First(long companyId, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where companyId = ?.
    static Role
    findByCompanyId_Last(long companyId, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where companyId = ?.
    static Role[]
    findByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where companyId = ?.
    static Role
    findByERC_C(String externalReferenceCode, long companyId)
    Returns the role where externalReferenceCode = ? and companyId = ? or throws a NoSuchRoleException if it could not be found.
    static List<Role>
    Returns all the roles where name = ?.
    static List<Role>
    findByName(String name, int start, int end)
    Returns a range of all the roles where name = ?.
    static List<Role>
    findByName(String name, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where name = ?.
    static List<Role>
    findByName(String name, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where name = ?.
    static Role
    findByName_First(String name, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where name = ?.
    static Role
    findByName_Last(String name, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where name = ?.
    static Role[]
    findByName_PrevAndNext(long roleId, String name, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where name = ?.
    static Role
    findByPrimaryKey(long roleId)
    Returns the role with the primary key or throws a NoSuchRoleException if it could not be found.
    static List<Role>
    Returns all the roles where subtype = ?.
    static List<Role>
    findBySubtype(String subtype, int start, int end)
    Returns a range of all the roles where subtype = ?.
    static List<Role>
    findBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where subtype = ?.
    static List<Role>
    findBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where subtype = ?.
    static Role
    findBySubtype_First(String subtype, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where subtype = ?.
    static Role
    findBySubtype_Last(String subtype, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where subtype = ?.
    static Role[]
    findBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where subtype = ?.
    static List<Role>
    findByT_S(int type, String subtype)
    Returns all the roles where type = ? and subtype = ?.
    static List<Role>
    findByT_S(int type, String subtype, int start, int end)
    Returns a range of all the roles where type = ? and subtype = ?.
    static List<Role>
    findByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where type = ? and subtype = ?.
    static List<Role>
    findByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where type = ? and subtype = ?.
    static Role
    findByT_S_First(int type, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where type = ? and subtype = ?.
    static Role
    findByT_S_Last(int type, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where type = ? and subtype = ?.
    static Role[]
    findByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where type = ? and subtype = ?.
    static List<Role>
    findByType(int type)
    Returns all the roles where type = ?.
    static List<Role>
    findByType(int type, int start, int end)
    Returns a range of all the roles where type = ?.
    static List<Role>
    findByType(int type, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where type = ?.
    static List<Role>
    findByType(int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where type = ?.
    static Role
    findByType_First(int type, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where type = ?.
    static Role
    findByType_Last(int type, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where type = ?.
    static Role[]
    findByType_PrevAndNext(long roleId, int type, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where type = ?.
    static List<Role>
    Returns all the roles where uuid = ?.
    static List<Role>
    findByUuid(String uuid, int start, int end)
    Returns a range of all the roles where uuid = ?.
    static List<Role>
    findByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where uuid = ?.
    static List<Role>
    findByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where uuid = ?.
    static List<Role>
    findByUuid_C(String uuid, long companyId)
    Returns all the roles where uuid = ? and companyId = ?.
    static List<Role>
    findByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the roles where uuid = ? and companyId = ?.
    static List<Role>
    findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
    Returns an ordered range of all the roles where uuid = ? and companyId = ?.
    static List<Role>
    findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the roles where uuid = ? and companyId = ?.
    static Role
    findByUuid_C_First(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where uuid = ? and companyId = ?.
    static Role
    findByUuid_C_Last(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where uuid = ? and companyId = ?.
    static Role[]
    findByUuid_C_PrevAndNext(long roleId, String uuid, long companyId, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where uuid = ? and companyId = ?.
    static Role
    findByUuid_First(String uuid, OrderByComparator<Role> orderByComparator)
    Returns the first role in the ordered set where uuid = ?.
    static Role
    findByUuid_Last(String uuid, OrderByComparator<Role> orderByComparator)
    Returns the last role in the ordered set where uuid = ?.
    static Role[]
    findByUuid_PrevAndNext(long roleId, String uuid, OrderByComparator<Role> orderByComparator)
    Returns the roles before and after the current role in the ordered set where uuid = ?.
    static List<Role>
     
    static List<Role>
    findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
     
    static List<Role>
    findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<Role> orderByComparator)
     
    static long[]
    Returns the primaryKeys of groups associated with the role.
    static List<Group>
    getGroups(long pk)
    Returns all the groups associated with the role.
    static List<Group>
    getGroups(long pk, int start, int end)
    Returns a range of all the groups associated with the role.
    static List<Group>
    getGroups(long pk, int start, int end, OrderByComparator<Group> orderByComparator)
    Returns an ordered range of all the groups associated with the role.
    static int
    getGroupsSize(long pk)
    Returns the number of groups associated with the role.
     
    static long[]
    Returns the primaryKeys of users associated with the role.
    static List<User>
    getUsers(long pk)
    Returns all the users associated with the role.
    static List<User>
    getUsers(long pk, int start, int end)
    Returns a range of all the users associated with the role.
    static List<User>
    getUsers(long pk, int start, int end, OrderByComparator<User> orderByComparator)
    Returns an ordered range of all the users associated with the role.
    static int
    getUsersSize(long pk)
    Returns the number of users associated with the role.
    static Role
    remove(long roleId)
    Removes the role with the primary key from the database.
    static void
    Removes all the roles from the database.
    static Role
    removeByC_C_C(long companyId, long classNameId, long classPK)
    Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.
    static Role
    removeByC_C_C_T(long companyId, long classNameId, long classPK, int type)
    Removes the role where companyId = ? and classNameId = ? and classPK = ? and type = ? from the database.
    static Role
    removeByC_N(long companyId, String name)
    Removes the role where companyId = ? and name = ? from the database.
    static void
    removeByC_T(long companyId, int type)
    Removes all the roles where companyId = ? and type = ? from the database.
    static void
    removeByCompanyId(long companyId)
    Removes all the roles where companyId = ? from the database.
    static Role
    removeByERC_C(String externalReferenceCode, long companyId)
    Removes the role where externalReferenceCode = ? and companyId = ? from the database.
    static void
    Removes all the roles where name = ? from the database.
    static void
    Removes all the roles where subtype = ? from the database.
    static void
    removeByT_S(int type, String subtype)
    Removes all the roles where type = ? and subtype = ? from the database.
    static void
    removeByType(int type)
    Removes all the roles where type = ? from the database.
    static void
    Removes all the roles where uuid = ? from the database.
    static void
    removeByUuid_C(String uuid, long companyId)
    Removes all the roles where uuid = ? and companyId = ? from the database.
    static void
    removeGroup(long pk, long groupPK)
    Removes the association between the role and the group.
    static void
    removeGroup(long pk, Group group)
    Removes the association between the role and the group.
    static void
    removeGroups(long pk, long[] groupPKs)
    Removes the association between the role and the groups.
    static void
    removeGroups(long pk, List<Group> groups)
    Removes the association between the role and the groups.
    static void
    removeUser(long pk, long userPK)
    Removes the association between the role and the user.
    static void
    removeUser(long pk, User user)
    Removes the association between the role and the user.
    static void
    removeUsers(long pk, long[] userPKs)
    Removes the association between the role and the users.
    static void
    removeUsers(long pk, List<User> users)
    Removes the association between the role and the users.
    static void
    setGroups(long pk, long[] groupPKs)
    Sets the groups associated with the role, removing and adding associations as necessary.
    static void
    setGroups(long pk, List<Group> groups)
    Sets the groups associated with the role, removing and adding associations as necessary.
    static void
     
    static void
    setUsers(long pk, long[] userPKs)
    Sets the users associated with the role, removing and adding associations as necessary.
    static void
    setUsers(long pk, List<User> users)
    Sets the users associated with the role, removing and adding associations as necessary.
    static Role
    update(Role role)
     
    static Role
    update(Role role, ServiceContext serviceContext)
     
    static Role
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • RoleUtil

      public RoleUtil()
  • Method Details

    • clearCache

      public static void clearCache()
      See Also:
    • clearCache

      public static void clearCache(Role role)
      See Also:
    • countWithDynamicQuery

      public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
      See Also:
    • fetchByPrimaryKeys

      public static Map<Serializable,Role> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
    • findWithDynamicQuery

      public static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery)
      See Also:
    • findWithDynamicQuery

      public static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
      See Also:
    • findWithDynamicQuery

      public static List<Role> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<Role> orderByComparator)
      See Also:
    • update

      public static Role update(Role role)
      See Also:
    • update

      public static Role update(Role role, ServiceContext serviceContext)
      See Also:
    • findByUuid

      public static List<Role> findByUuid(String uuid)
      Returns all the roles where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching roles
    • findByUuid

      public static List<Role> findByUuid(String uuid, int start, int end)
      Returns a range of all the roles where uuid = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByUuid

      public static List<Role> findByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where uuid = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByUuid

      public static List<Role> findByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where uuid = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByUuid_First

      public static Role findByUuid_First(String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByUuid_First

      public static Role fetchByUuid_First(String uuid, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findByUuid_Last

      public static Role findByUuid_Last(String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByUuid_Last

      public static Role fetchByUuid_Last(String uuid, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findByUuid_PrevAndNext

      public static Role[] findByUuid_PrevAndNext(long roleId, String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where uuid = ?.
      Parameters:
      roleId - the primary key of the current role
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByUuid

      public static List<Role> filterFindByUuid(String uuid)
      Returns all the roles that the user has permission to view where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching roles that the user has permission to view
    • filterFindByUuid

      public static List<Role> filterFindByUuid(String uuid, int start, int end)
      Returns a range of all the roles that the user has permission to view where uuid = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByUuid

      public static List<Role> filterFindByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where uuid = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindByUuid_PrevAndNext

      public static Role[] filterFindByUuid_PrevAndNext(long roleId, String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where uuid = ?.
      Parameters:
      roleId - the primary key of the current role
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • removeByUuid

      public static void removeByUuid(String uuid)
      Removes all the roles where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      public static int countByUuid(String uuid)
      Returns the number of roles where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching roles
    • filterCountByUuid

      public static int filterCountByUuid(String uuid)
      Returns the number of roles that the user has permission to view where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching roles that the user has permission to view
    • findByUuid_C

      public static List<Role> findByUuid_C(String uuid, long companyId)
      Returns all the roles where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching roles
    • findByUuid_C

      public static List<Role> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the roles where uuid = ? and companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByUuid_C

      public static List<Role> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where uuid = ? and companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByUuid_C

      public static List<Role> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where uuid = ? and companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByUuid_C_First

      public static Role findByUuid_C_First(String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByUuid_C_First

      public static Role fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findByUuid_C_Last

      public static Role findByUuid_C_Last(String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByUuid_C_Last

      public static Role fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findByUuid_C_PrevAndNext

      public static Role[] findByUuid_C_PrevAndNext(long roleId, String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      roleId - the primary key of the current role
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByUuid_C

      public static List<Role> filterFindByUuid_C(String uuid, long companyId)
      Returns all the roles that the user has permission to view where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching roles that the user has permission to view
    • filterFindByUuid_C

      public static List<Role> filterFindByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the roles that the user has permission to view where uuid = ? and companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByUuid_C

      public static List<Role> filterFindByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where uuid = ? and companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindByUuid_C_PrevAndNext

      public static Role[] filterFindByUuid_C_PrevAndNext(long roleId, String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where uuid = ? and companyId = ?.
      Parameters:
      roleId - the primary key of the current role
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • removeByUuid_C

      public static void removeByUuid_C(String uuid, long companyId)
      Removes all the roles where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      public static int countByUuid_C(String uuid, long companyId)
      Returns the number of roles where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching roles
    • filterCountByUuid_C

      public static int filterCountByUuid_C(String uuid, long companyId)
      Returns the number of roles that the user has permission to view where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching roles that the user has permission to view
    • findByCompanyId

      public static List<Role> findByCompanyId(long companyId)
      Returns all the roles where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching roles
    • findByCompanyId

      public static List<Role> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the roles where companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByCompanyId

      public static List<Role> findByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByCompanyId

      public static List<Role> findByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByCompanyId_First

      public static Role findByCompanyId_First(long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByCompanyId_First

      public static Role fetchByCompanyId_First(long companyId, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findByCompanyId_Last

      public static Role findByCompanyId_Last(long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByCompanyId_Last

      public static Role fetchByCompanyId_Last(long companyId, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findByCompanyId_PrevAndNext

      public static Role[] findByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where companyId = ?.
      Parameters:
      roleId - the primary key of the current role
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByCompanyId

      public static List<Role> filterFindByCompanyId(long companyId)
      Returns all the roles that the user has permission to view where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching roles that the user has permission to view
    • filterFindByCompanyId

      public static List<Role> filterFindByCompanyId(long companyId, int start, int end)
      Returns a range of all the roles that the user has permission to view where companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByCompanyId

      public static List<Role> filterFindByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where companyId = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindByCompanyId_PrevAndNext

      public static Role[] filterFindByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where companyId = ?.
      Parameters:
      roleId - the primary key of the current role
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • removeByCompanyId

      public static void removeByCompanyId(long companyId)
      Removes all the roles where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      public static int countByCompanyId(long companyId)
      Returns the number of roles where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching roles
    • filterCountByCompanyId

      public static int filterCountByCompanyId(long companyId)
      Returns the number of roles that the user has permission to view where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching roles that the user has permission to view
    • findByName

      public static List<Role> findByName(String name)
      Returns all the roles where name = ?.
      Parameters:
      name - the name
      Returns:
      the matching roles
    • findByName

      public static List<Role> findByName(String name, int start, int end)
      Returns a range of all the roles where name = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      name - the name
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByName

      public static List<Role> findByName(String name, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where name = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      name - the name
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByName

      public static List<Role> findByName(String name, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where name = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      name - the name
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByName_First

      public static Role findByName_First(String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where name = ?.
      Parameters:
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByName_First

      public static Role fetchByName_First(String name, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where name = ?.
      Parameters:
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findByName_Last

      public static Role findByName_Last(String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where name = ?.
      Parameters:
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByName_Last

      public static Role fetchByName_Last(String name, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where name = ?.
      Parameters:
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findByName_PrevAndNext

      public static Role[] findByName_PrevAndNext(long roleId, String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where name = ?.
      Parameters:
      roleId - the primary key of the current role
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByName

      public static List<Role> filterFindByName(String name)
      Returns all the roles that the user has permission to view where name = ?.
      Parameters:
      name - the name
      Returns:
      the matching roles that the user has permission to view
    • filterFindByName

      public static List<Role> filterFindByName(String name, int start, int end)
      Returns a range of all the roles that the user has permission to view where name = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      name - the name
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByName

      public static List<Role> filterFindByName(String name, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where name = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      name - the name
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindByName_PrevAndNext

      public static Role[] filterFindByName_PrevAndNext(long roleId, String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where name = ?.
      Parameters:
      roleId - the primary key of the current role
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • removeByName

      public static void removeByName(String name)
      Removes all the roles where name = ? from the database.
      Parameters:
      name - the name
    • countByName

      public static int countByName(String name)
      Returns the number of roles where name = ?.
      Parameters:
      name - the name
      Returns:
      the number of matching roles
    • filterCountByName

      public static int filterCountByName(String name)
      Returns the number of roles that the user has permission to view where name = ?.
      Parameters:
      name - the name
      Returns:
      the number of matching roles that the user has permission to view
    • findByType

      public static List<Role> findByType(int type)
      Returns all the roles where type = ?.
      Parameters:
      type - the type
      Returns:
      the matching roles
    • findByType

      public static List<Role> findByType(int type, int start, int end)
      Returns a range of all the roles where type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByType

      public static List<Role> findByType(int type, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByType

      public static List<Role> findByType(int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByType_First

      public static Role findByType_First(int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByType_First

      public static Role fetchByType_First(int type, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findByType_Last

      public static Role findByType_Last(int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByType_Last

      public static Role fetchByType_Last(int type, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where type = ?.
      Parameters:
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findByType_PrevAndNext

      public static Role[] findByType_PrevAndNext(long roleId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where type = ?.
      Parameters:
      roleId - the primary key of the current role
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByType

      public static List<Role> filterFindByType(int type)
      Returns all the roles that the user has permission to view where type = ?.
      Parameters:
      type - the type
      Returns:
      the matching roles that the user has permission to view
    • filterFindByType

      public static List<Role> filterFindByType(int type, int start, int end)
      Returns a range of all the roles that the user has permission to view where type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByType

      public static List<Role> filterFindByType(int type, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindByType_PrevAndNext

      public static Role[] filterFindByType_PrevAndNext(long roleId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where type = ?.
      Parameters:
      roleId - the primary key of the current role
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • removeByType

      public static void removeByType(int type)
      Removes all the roles where type = ? from the database.
      Parameters:
      type - the type
    • countByType

      public static int countByType(int type)
      Returns the number of roles where type = ?.
      Parameters:
      type - the type
      Returns:
      the number of matching roles
    • filterCountByType

      public static int filterCountByType(int type)
      Returns the number of roles that the user has permission to view where type = ?.
      Parameters:
      type - the type
      Returns:
      the number of matching roles that the user has permission to view
    • findBySubtype

      public static List<Role> findBySubtype(String subtype)
      Returns all the roles where subtype = ?.
      Parameters:
      subtype - the subtype
      Returns:
      the matching roles
    • findBySubtype

      public static List<Role> findBySubtype(String subtype, int start, int end)
      Returns a range of all the roles where subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findBySubtype

      public static List<Role> findBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findBySubtype

      public static List<Role> findBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findBySubtype_First

      public static Role findBySubtype_First(String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where subtype = ?.
      Parameters:
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchBySubtype_First

      public static Role fetchBySubtype_First(String subtype, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where subtype = ?.
      Parameters:
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findBySubtype_Last

      public static Role findBySubtype_Last(String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where subtype = ?.
      Parameters:
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchBySubtype_Last

      public static Role fetchBySubtype_Last(String subtype, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where subtype = ?.
      Parameters:
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findBySubtype_PrevAndNext

      public static Role[] findBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where subtype = ?.
      Parameters:
      roleId - the primary key of the current role
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindBySubtype

      public static List<Role> filterFindBySubtype(String subtype)
      Returns all the roles that the user has permission to view where subtype = ?.
      Parameters:
      subtype - the subtype
      Returns:
      the matching roles that the user has permission to view
    • filterFindBySubtype

      public static List<Role> filterFindBySubtype(String subtype, int start, int end)
      Returns a range of all the roles that the user has permission to view where subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindBySubtype

      public static List<Role> filterFindBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindBySubtype_PrevAndNext

      public static Role[] filterFindBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where subtype = ?.
      Parameters:
      roleId - the primary key of the current role
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • removeBySubtype

      public static void removeBySubtype(String subtype)
      Removes all the roles where subtype = ? from the database.
      Parameters:
      subtype - the subtype
    • countBySubtype

      public static int countBySubtype(String subtype)
      Returns the number of roles where subtype = ?.
      Parameters:
      subtype - the subtype
      Returns:
      the number of matching roles
    • filterCountBySubtype

      public static int filterCountBySubtype(String subtype)
      Returns the number of roles that the user has permission to view where subtype = ?.
      Parameters:
      subtype - the subtype
      Returns:
      the number of matching roles that the user has permission to view
    • findByC_N

      public static Role findByC_N(long companyId, String name) throws NoSuchRoleException
      Returns the role where companyId = ? and name = ? or throws a NoSuchRoleException if it could not be found.
      Parameters:
      companyId - the company ID
      name - the name
      Returns:
      the matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByC_N

      public static Role fetchByC_N(long companyId, String name)
      Returns the role where companyId = ? and name = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      companyId - the company ID
      name - the name
      Returns:
      the matching role, or null if a matching role could not be found
    • fetchByC_N

      public static Role fetchByC_N(long companyId, String name, boolean useFinderCache)
      Returns the role where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      companyId - the company ID
      name - the name
      useFinderCache - whether to use the finder cache
      Returns:
      the matching role, or null if a matching role could not be found
    • removeByC_N

      public static Role removeByC_N(long companyId, String name) throws NoSuchRoleException
      Removes the role where companyId = ? and name = ? from the database.
      Parameters:
      companyId - the company ID
      name - the name
      Returns:
      the role that was removed
      Throws:
      NoSuchRoleException
    • countByC_N

      public static int countByC_N(long companyId, String name)
      Returns the number of roles where companyId = ? and name = ?.
      Parameters:
      companyId - the company ID
      name - the name
      Returns:
      the number of matching roles
    • findByC_T

      public static List<Role> findByC_T(long companyId, int type)
      Returns all the roles where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the matching roles
    • findByC_T

      public static List<Role> findByC_T(long companyId, int type, int start, int end)
      Returns a range of all the roles where companyId = ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByC_T

      public static List<Role> findByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where companyId = ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByC_T

      public static List<Role> findByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where companyId = ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByC_T_First

      public static Role findByC_T_First(long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByC_T_First

      public static Role fetchByC_T_First(long companyId, int type, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findByC_T_Last

      public static Role findByC_T_Last(long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByC_T_Last

      public static Role fetchByC_T_Last(long companyId, int type, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findByC_T_PrevAndNext

      public static Role[] findByC_T_PrevAndNext(long roleId, long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where companyId = ? and type = ?.
      Parameters:
      roleId - the primary key of the current role
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByC_T

      public static List<Role> filterFindByC_T(long companyId, int type)
      Returns all the roles that the user has permission to view where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the matching roles that the user has permission to view
    • filterFindByC_T

      public static List<Role> filterFindByC_T(long companyId, int type, int start, int end)
      Returns a range of all the roles that the user has permission to view where companyId = ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByC_T

      public static List<Role> filterFindByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where companyId = ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindByC_T_PrevAndNext

      public static Role[] filterFindByC_T_PrevAndNext(long roleId, long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where companyId = ? and type = ?.
      Parameters:
      roleId - the primary key of the current role
      companyId - the company ID
      type - the type
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByC_T

      public static List<Role> filterFindByC_T(long companyId, int[] types)
      Returns all the roles that the user has permission to view where companyId = ? and type = any ?.
      Parameters:
      companyId - the company ID
      types - the types
      Returns:
      the matching roles that the user has permission to view
    • filterFindByC_T

      public static List<Role> filterFindByC_T(long companyId, int[] types, int start, int end)
      Returns a range of all the roles that the user has permission to view where companyId = ? and type = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      types - the types
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByC_T

      public static List<Role> filterFindByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permission to view where companyId = ? and type = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      types - the types
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • findByC_T

      public static List<Role> findByC_T(long companyId, int[] types)
      Returns all the roles where companyId = ? and type = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      types - the types
      Returns:
      the matching roles
    • findByC_T

      public static List<Role> findByC_T(long companyId, int[] types, int start, int end)
      Returns a range of all the roles where companyId = ? and type = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      types - the types
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByC_T

      public static List<Role> findByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where companyId = ? and type = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      types - the types
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByC_T

      public static List<Role> findByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where companyId = ? and type = ?, optionally using the finder cache.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      types - the types
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • removeByC_T

      public static void removeByC_T(long companyId, int type)
      Removes all the roles where companyId = ? and type = ? from the database.
      Parameters:
      companyId - the company ID
      type - the type
    • countByC_T

      public static int countByC_T(long companyId, int type)
      Returns the number of roles where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the number of matching roles
    • countByC_T

      public static int countByC_T(long companyId, int[] types)
      Returns the number of roles where companyId = ? and type = any ?.
      Parameters:
      companyId - the company ID
      types - the types
      Returns:
      the number of matching roles
    • filterCountByC_T

      public static int filterCountByC_T(long companyId, int type)
      Returns the number of roles that the user has permission to view where companyId = ? and type = ?.
      Parameters:
      companyId - the company ID
      type - the type
      Returns:
      the number of matching roles that the user has permission to view
    • filterCountByC_T

      public static int filterCountByC_T(long companyId, int[] types)
      Returns the number of roles that the user has permission to view where companyId = ? and type = any ?.
      Parameters:
      companyId - the company ID
      types - the types
      Returns:
      the number of matching roles that the user has permission to view
    • findByT_S

      public static List<Role> findByT_S(int type, String subtype)
      Returns all the roles where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      Returns:
      the matching roles
    • findByT_S

      public static List<Role> findByT_S(int type, String subtype, int start, int end)
      Returns a range of all the roles where type = ? and subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByT_S

      public static List<Role> findByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where type = ? and subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByT_S

      public static List<Role> findByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where type = ? and subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByT_S_First

      public static Role findByT_S_First(int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the first role in the ordered set where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByT_S_First

      public static Role fetchByT_S_First(int type, String subtype, OrderByComparator<Role> orderByComparator)
      Returns the first role in the ordered set where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching role, or null if a matching role could not be found
    • findByT_S_Last

      public static Role findByT_S_Last(int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the last role in the ordered set where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByT_S_Last

      public static Role fetchByT_S_Last(int type, String subtype, OrderByComparator<Role> orderByComparator)
      Returns the last role in the ordered set where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching role, or null if a matching role could not be found
    • findByT_S_PrevAndNext

      public static Role[] findByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set where type = ? and subtype = ?.
      Parameters:
      roleId - the primary key of the current role
      type - the type
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • filterFindByT_S

      public static List<Role> filterFindByT_S(int type, String subtype)
      Returns all the roles that the user has permission to view where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      Returns:
      the matching roles that the user has permission to view
    • filterFindByT_S

      public static List<Role> filterFindByT_S(int type, String subtype, int start, int end)
      Returns a range of all the roles that the user has permission to view where type = ? and subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles that the user has permission to view
    • filterFindByT_S

      public static List<Role> filterFindByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles that the user has permissions to view where type = ? and subtype = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      type - the type
      subtype - the subtype
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles that the user has permission to view
    • filterFindByT_S_PrevAndNext

      public static Role[] filterFindByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
      Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where type = ? and subtype = ?.
      Parameters:
      roleId - the primary key of the current role
      type - the type
      subtype - the subtype
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • removeByT_S

      public static void removeByT_S(int type, String subtype)
      Removes all the roles where type = ? and subtype = ? from the database.
      Parameters:
      type - the type
      subtype - the subtype
    • countByT_S

      public static int countByT_S(int type, String subtype)
      Returns the number of roles where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      Returns:
      the number of matching roles
    • filterCountByT_S

      public static int filterCountByT_S(int type, String subtype)
      Returns the number of roles that the user has permission to view where type = ? and subtype = ?.
      Parameters:
      type - the type
      subtype - the subtype
      Returns:
      the number of matching roles that the user has permission to view
    • findByC_C_C

      public static List<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs)
      Returns all the roles where companyId = ? and classNameId = ? and classPK = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      Returns:
      the matching roles
    • findByC_C_C

      public static List<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end)
      Returns a range of all the roles where companyId = ? and classNameId = ? and classPK = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByC_C_C

      public static List<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = any ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByC_C_C

      public static List<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = ?, optionally using the finder cache.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByC_C_C

      public static Role findByC_C_C(long companyId, long classNameId, long classPK) throws NoSuchRoleException
      Returns the role where companyId = ? and classNameId = ? and classPK = ? or throws a NoSuchRoleException if it could not be found.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByC_C_C

      public static Role fetchByC_C_C(long companyId, long classNameId, long classPK)
      Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the matching role, or null if a matching role could not be found
    • fetchByC_C_C

      public static Role fetchByC_C_C(long companyId, long classNameId, long classPK, boolean useFinderCache)
      Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      useFinderCache - whether to use the finder cache
      Returns:
      the matching role, or null if a matching role could not be found
    • removeByC_C_C

      public static Role removeByC_C_C(long companyId, long classNameId, long classPK) throws NoSuchRoleException
      Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the role that was removed
      Throws:
      NoSuchRoleException
    • countByC_C_C

      public static int countByC_C_C(long companyId, long classNameId, long classPK)
      Returns the number of roles where companyId = ? and classNameId = ? and classPK = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the number of matching roles
    • countByC_C_C

      public static int countByC_C_C(long companyId, long classNameId, long[] classPKs)
      Returns the number of roles where companyId = ? and classNameId = ? and classPK = any ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      Returns:
      the number of matching roles
    • filterCountByC_C_C

      public static int filterCountByC_C_C(long companyId, long classNameId, long classPK)
      Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      Returns:
      the number of matching roles that the user has permission to view
    • filterCountByC_C_C

      public static int filterCountByC_C_C(long companyId, long classNameId, long[] classPKs)
      Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = any ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      Returns:
      the number of matching roles that the user has permission to view
    • findByC_C_C_T

      public static List<Role> findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type)
      Returns all the roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      type - the type
      Returns:
      the matching roles
    • findByC_C_C_T

      public static List<Role> findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type, int start, int end)
      Returns a range of all the roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of matching roles
    • findByC_C_C_T

      public static List<Role> findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type, int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching roles
    • findByC_C_C_T

      public static List<Role> findByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = ? and type = ?, optionally using the finder cache.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      type - the type
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching roles
    • findByC_C_C_T

      public static Role findByC_C_C_T(long companyId, long classNameId, long classPK, int type) throws NoSuchRoleException
      Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or throws a NoSuchRoleException if it could not be found.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      type - the type
      Returns:
      the matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByC_C_C_T

      public static Role fetchByC_C_C_T(long companyId, long classNameId, long classPK, int type)
      Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      type - the type
      Returns:
      the matching role, or null if a matching role could not be found
    • fetchByC_C_C_T

      public static Role fetchByC_C_C_T(long companyId, long classNameId, long classPK, int type, boolean useFinderCache)
      Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      type - the type
      useFinderCache - whether to use the finder cache
      Returns:
      the matching role, or null if a matching role could not be found
    • removeByC_C_C_T

      public static Role removeByC_C_C_T(long companyId, long classNameId, long classPK, int type) throws NoSuchRoleException
      Removes the role where companyId = ? and classNameId = ? and classPK = ? and type = ? from the database.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      type - the type
      Returns:
      the role that was removed
      Throws:
      NoSuchRoleException
    • countByC_C_C_T

      public static int countByC_C_C_T(long companyId, long classNameId, long classPK, int type)
      Returns the number of roles where companyId = ? and classNameId = ? and classPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      type - the type
      Returns:
      the number of matching roles
    • countByC_C_C_T

      public static int countByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type)
      Returns the number of roles where companyId = ? and classNameId = ? and classPK = any ? and type = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      type - the type
      Returns:
      the number of matching roles
    • filterCountByC_C_C_T

      public static int filterCountByC_C_C_T(long companyId, long classNameId, long classPK, int type)
      Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = ? and type = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPK - the class pk
      type - the type
      Returns:
      the number of matching roles that the user has permission to view
    • filterCountByC_C_C_T

      public static int filterCountByC_C_C_T(long companyId, long classNameId, long[] classPKs, int type)
      Returns the number of roles that the user has permission to view where companyId = ? and classNameId = ? and classPK = any ? and type = ?.
      Parameters:
      companyId - the company ID
      classNameId - the class name ID
      classPKs - the class pks
      type - the type
      Returns:
      the number of matching roles that the user has permission to view
    • findByERC_C

      public static Role findByERC_C(String externalReferenceCode, long companyId) throws NoSuchRoleException
      Returns the role where externalReferenceCode = ? and companyId = ? or throws a NoSuchRoleException if it could not be found.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the matching role
      Throws:
      NoSuchRoleException - if a matching role could not be found
      NoSuchRoleException
    • fetchByERC_C

      public static Role fetchByERC_C(String externalReferenceCode, long companyId)
      Returns the role where externalReferenceCode = ? and companyId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the matching role, or null if a matching role could not be found
    • fetchByERC_C

      public static Role fetchByERC_C(String externalReferenceCode, long companyId, boolean useFinderCache)
      Returns the role where externalReferenceCode = ? and companyId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching role, or null if a matching role could not be found
    • removeByERC_C

      public static Role removeByERC_C(String externalReferenceCode, long companyId) throws NoSuchRoleException
      Removes the role where externalReferenceCode = ? and companyId = ? from the database.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the role that was removed
      Throws:
      NoSuchRoleException
    • countByERC_C

      public static int countByERC_C(String externalReferenceCode, long companyId)
      Returns the number of roles where externalReferenceCode = ? and companyId = ?.
      Parameters:
      externalReferenceCode - the external reference code
      companyId - the company ID
      Returns:
      the number of matching roles
    • cacheResult

      public static void cacheResult(Role role)
      Caches the role in the entity cache if it is enabled.
      Parameters:
      role - the role
    • cacheResult

      public static void cacheResult(List<Role> roles)
      Caches the roles in the entity cache if it is enabled.
      Parameters:
      roles - the roles
    • create

      public static Role create(long roleId)
      Creates a new role with the primary key. Does not add the role to the database.
      Parameters:
      roleId - the primary key for the new role
      Returns:
      the new role
    • remove

      public static Role remove(long roleId) throws NoSuchRoleException
      Removes the role with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      roleId - the primary key of the role
      Returns:
      the role that was removed
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • updateImpl

      public static Role updateImpl(Role role)
    • findByPrimaryKey

      public static Role findByPrimaryKey(long roleId) throws NoSuchRoleException
      Returns the role with the primary key or throws a NoSuchRoleException if it could not be found.
      Parameters:
      roleId - the primary key of the role
      Returns:
      the role
      Throws:
      NoSuchRoleException - if a role with the primary key could not be found
      NoSuchRoleException
    • fetchByPrimaryKey

      public static Role fetchByPrimaryKey(long roleId)
      Returns the role with the primary key or returns null if it could not be found.
      Parameters:
      roleId - the primary key of the role
      Returns:
      the role, or null if a role with the primary key could not be found
    • findAll

      public static List<Role> findAll()
      Returns all the roles.
      Returns:
      the roles
    • findAll

      public static List<Role> findAll(int start, int end)
      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of roles
    • findAll

      public static List<Role> findAll(int start, int end, OrderByComparator<Role> orderByComparator)
      Returns an ordered 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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of roles
    • findAll

      public static List<Role> findAll(int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache)
      Returns an ordered 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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of roles
    • removeAll

      public static void removeAll()
      Removes all the roles from the database.
    • countAll

      public static int countAll()
      Returns the number of roles.
      Returns:
      the number of roles
    • getGroupPrimaryKeys

      public static long[] getGroupPrimaryKeys(long pk)
      Returns the primaryKeys of groups associated with the role.
      Parameters:
      pk - the primary key of the role
      Returns:
      long[] of the primaryKeys of groups associated with the role
    • getGroups

      public static List<Group> getGroups(long pk)
      Returns all the groups associated with the role.
      Parameters:
      pk - the primary key of the role
      Returns:
      the groups associated with the role
    • getGroups

      public static List<Group> getGroups(long pk, int start, int end)
      Returns a range of all the groups associated with the role.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      pk - the primary key of the role
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of groups associated with the role
    • getGroups

      public static List<Group> getGroups(long pk, int start, int end, OrderByComparator<Group> orderByComparator)
      Returns an ordered range of all the groups associated with the role.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      pk - the primary key of the role
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of groups associated with the role
    • getGroupsSize

      public static int getGroupsSize(long pk)
      Returns the number of groups associated with the role.
      Parameters:
      pk - the primary key of the role
      Returns:
      the number of groups associated with the role
    • containsGroup

      public static boolean containsGroup(long pk, long groupPK)
      Returns true if the group is associated with the role.
      Parameters:
      pk - the primary key of the role
      groupPK - the primary key of the group
      Returns:
      true if the group is associated with the role; false otherwise
    • containsGroups

      public static boolean containsGroups(long pk)
      Returns true if the role has any groups associated with it.
      Parameters:
      pk - the primary key of the role to check for associations with groups
      Returns:
      true if the role has any groups associated with it; false otherwise
    • addGroup

      public static boolean addGroup(long pk, long groupPK)
      Adds an association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groupPK - the primary key of the group
      Returns:
      true if an association between the role and the group was added; false if they were already associated
    • addGroup

      public static boolean addGroup(long pk, Group group)
      Adds an association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      group - the group
      Returns:
      true if an association between the role and the group was added; false if they were already associated
    • addGroups

      public static boolean addGroups(long pk, long[] groupPKs)
      Adds an association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groupPKs - the primary keys of the groups
      Returns:
      true if at least one association between the role and the groups was added; false if they were all already associated
    • addGroups

      public static boolean addGroups(long pk, List<Group> groups)
      Adds an association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groups - the groups
      Returns:
      true if at least one association between the role and the groups was added; false if they were all already associated
    • clearGroups

      public static void clearGroups(long pk)
      Clears all associations between the role and its groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role to clear the associated groups from
    • removeGroup

      public static void removeGroup(long pk, long groupPK)
      Removes the association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groupPK - the primary key of the group
    • removeGroup

      public static void removeGroup(long pk, Group group)
      Removes the association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      group - the group
    • removeGroups

      public static void removeGroups(long pk, long[] groupPKs)
      Removes the association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groupPKs - the primary keys of the groups
    • removeGroups

      public static void removeGroups(long pk, List<Group> groups)
      Removes the association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groups - the groups
    • setGroups

      public static void setGroups(long pk, long[] groupPKs)
      Sets the groups associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groupPKs - the primary keys of the groups to be associated with the role
    • setGroups

      public static void setGroups(long pk, List<Group> groups)
      Sets the groups associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      groups - the groups to be associated with the role
    • getUserPrimaryKeys

      public static long[] getUserPrimaryKeys(long pk)
      Returns the primaryKeys of users associated with the role.
      Parameters:
      pk - the primary key of the role
      Returns:
      long[] of the primaryKeys of users associated with the role
    • getUsers

      public static List<User> getUsers(long pk)
      Returns all the users associated with the role.
      Parameters:
      pk - the primary key of the role
      Returns:
      the users associated with the role
    • getUsers

      public static List<User> getUsers(long pk, int start, int end)
      Returns a range of all the users associated with the role.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      pk - the primary key of the role
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      Returns:
      the range of users associated with the role
    • getUsers

      public static List<User> getUsers(long pk, int start, int end, OrderByComparator<User> orderByComparator)
      Returns an ordered range of all the users associated with the role.

      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 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, then the query will include the default ORDER BY logic from RoleModelImpl.

      Parameters:
      pk - the primary key of the role
      start - the lower bound of the range of roles
      end - the upper bound of the range of roles (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of users associated with the role
    • getUsersSize

      public static int getUsersSize(long pk)
      Returns the number of users associated with the role.
      Parameters:
      pk - the primary key of the role
      Returns:
      the number of users associated with the role
    • containsUser

      public static boolean containsUser(long pk, long userPK)
      Returns true if the user is associated with the role.
      Parameters:
      pk - the primary key of the role
      userPK - the primary key of the user
      Returns:
      true if the user is associated with the role; false otherwise
    • containsUsers

      public static boolean containsUsers(long pk)
      Returns true if the role has any users associated with it.
      Parameters:
      pk - the primary key of the role to check for associations with users
      Returns:
      true if the role has any users associated with it; false otherwise
    • addUser

      public static boolean addUser(long pk, long userPK)
      Adds an association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      userPK - the primary key of the user
      Returns:
      true if an association between the role and the user was added; false if they were already associated
    • addUser

      public static boolean addUser(long pk, User user)
      Adds an association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      user - the user
      Returns:
      true if an association between the role and the user was added; false if they were already associated
    • addUsers

      public static boolean addUsers(long pk, long[] userPKs)
      Adds an association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      userPKs - the primary keys of the users
      Returns:
      true if at least one association between the role and the users was added; false if they were all already associated
    • addUsers

      public static boolean addUsers(long pk, List<User> users)
      Adds an association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      users - the users
      Returns:
      true if at least one association between the role and the users was added; false if they were all already associated
    • clearUsers

      public static void clearUsers(long pk)
      Clears all associations between the role and its users. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role to clear the associated users from
    • removeUser

      public static void removeUser(long pk, long userPK)
      Removes the association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      userPK - the primary key of the user
    • removeUser

      public static void removeUser(long pk, User user)
      Removes the association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      user - the user
    • removeUsers

      public static void removeUsers(long pk, long[] userPKs)
      Removes the association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      userPKs - the primary keys of the users
    • removeUsers

      public static void removeUsers(long pk, List<User> users)
      Removes the association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      users - the users
    • setUsers

      public static void setUsers(long pk, long[] userPKs)
      Sets the users associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      userPKs - the primary keys of the users to be associated with the role
    • setUsers

      public static void setUsers(long pk, List<User> users)
      Sets the users associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the role
      users - the users to be associated with the role
    • getPersistence

      public static RolePersistence getPersistence()
    • setPersistence

      public static void setPersistence(RolePersistence persistence)