Interface RolePersistence
- All Superinterfaces:
BasePersistence<Role>
,CTPersistence<Role>
Caching information and settings can be found in portal.properties
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addGroup
(long pk, long groupPK) Adds an association between the role and the group.boolean
Adds an association between the role and the group.boolean
addGroups
(long pk, long[] groupPKs) Adds an association between the role and the groups.boolean
Adds an association between the role and the groups.boolean
addUser
(long pk, long userPK) Adds an association between the role and the user.boolean
Adds an association between the role and the user.boolean
addUsers
(long pk, long[] userPKs) Adds an association between the role and the users.boolean
Adds an association between the role and the users.void
cacheResult
(Role role) Caches the role in the entity cache if it is enabled.void
cacheResult
(List<Role> roles) Caches the roles in the entity cache if it is enabled.void
clearGroups
(long pk) Clears all associations between the role and its groups.void
clearUsers
(long pk) Clears all associations between the role and its users.boolean
containsGroup
(long pk, long groupPK) Returnstrue
if the group is associated with the role.boolean
containsGroups
(long pk) Returnstrue
if the role has any groups associated with it.boolean
containsUser
(long pk, long userPK) Returnstrue
if the user is associated with the role.boolean
containsUsers
(long pk) Returnstrue
if the role has any users associated with it.int
countAll()
Returns the number of roles.int
countByC_C_C
(long companyId, long classNameId, long classPK) Returns the number of roles where companyId = ? and classNameId = ? and classPK = ?.int
countByC_C_C
(long companyId, long classNameId, long[] classPKs) Returns the number of roles where companyId = ? and classNameId = ? and classPK = any ?.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 = ?.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 = ?.int
countByC_N
(long companyId, String name) Returns the number of roles where companyId = ? and name = ?.int
countByC_T
(long companyId, int type) Returns the number of roles where companyId = ? and type = ?.int
countByC_T
(long companyId, int[] types) Returns the number of roles where companyId = ? and type = any ?.int
countByCompanyId
(long companyId) Returns the number of roles where companyId = ?.int
countByERC_C
(String externalReferenceCode, long companyId) Returns the number of roles where externalReferenceCode = ? and companyId = ?.int
countByName
(String name) Returns the number of roles where name = ?.int
countBySubtype
(String subtype) Returns the number of roles where subtype = ?.int
countByT_S
(int type, String subtype) Returns the number of roles where type = ? and subtype = ?.int
countByType
(int type) Returns the number of roles where type = ?.int
countByUuid
(String uuid) Returns the number of roles where uuid = ?.int
countByUuid_C
(String uuid, long companyId) Returns the number of roles where uuid = ? and companyId = ?.create
(long roleId) Creates a new role with the primary key.fetchByC_C_C
(long companyId, long classNameId, long classPK) Returns the role where companyId = ? and classNameId = ? and classPK = ? or returnsnull
if it could not be found.fetchByC_C_C
(long companyId, long classNameId, long classPK, boolean useFinderCache) Returns the role where companyId = ? and classNameId = ? and classPK = ? or returnsnull
if it could not be found, optionally using the finder cache.fetchByC_C_C_T
(long companyId, long classNameId, long classPK, int type) Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or returnsnull
if it could not be found.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 returnsnull
if it could not be found, optionally using the finder cache.fetchByC_N
(long companyId, String name) Returns the role where companyId = ? and name = ? or returnsnull
if it could not be found.fetchByC_N
(long companyId, String name, boolean useFinderCache) Returns the role where companyId = ? and name = ? or returnsnull
if it could not be found, optionally using the finder cache.fetchByC_T_First
(long companyId, int type, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where companyId = ? and type = ?.fetchByC_T_Last
(long companyId, int type, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where companyId = ? and type = ?.fetchByCompanyId_First
(long companyId, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where companyId = ?.fetchByCompanyId_Last
(long companyId, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where companyId = ?.fetchByERC_C
(String externalReferenceCode, long companyId) Returns the role where externalReferenceCode = ? and companyId = ? or returnsnull
if it could not be found.fetchByERC_C
(String externalReferenceCode, long companyId, boolean useFinderCache) Returns the role where externalReferenceCode = ? and companyId = ? or returnsnull
if it could not be found, optionally using the finder cache.fetchByName_First
(String name, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where name = ?.fetchByName_Last
(String name, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where name = ?.fetchByPrimaryKey
(long roleId) Returns the role with the primary key or returnsnull
if it could not be found.fetchBySubtype_First
(String subtype, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where subtype = ?.fetchBySubtype_Last
(String subtype, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where subtype = ?.fetchByT_S_First
(int type, String subtype, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where type = ? and subtype = ?.fetchByT_S_Last
(int type, String subtype, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where type = ? and subtype = ?.fetchByType_First
(int type, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where type = ?.fetchByType_Last
(int type, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where type = ?.fetchByUuid_C_First
(String uuid, long companyId, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where uuid = ? and companyId = ?.fetchByUuid_C_Last
(String uuid, long companyId, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where uuid = ? and companyId = ?.fetchByUuid_First
(String uuid, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where uuid = ?.fetchByUuid_Last
(String uuid, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where uuid = ?.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 = ?.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 ?.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 = ?.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 = ?.int
filterCountByC_T
(long companyId, int type) Returns the number of roles that the user has permission to view where companyId = ? and type = ?.int
filterCountByC_T
(long companyId, int[] types) Returns the number of roles that the user has permission to view where companyId = ? and type = any ?.int
filterCountByCompanyId
(long companyId) Returns the number of roles that the user has permission to view where companyId = ?.int
filterCountByName
(String name) Returns the number of roles that the user has permission to view where name = ?.int
filterCountBySubtype
(String subtype) Returns the number of roles that the user has permission to view where subtype = ?.int
filterCountByT_S
(int type, String subtype) Returns the number of roles that the user has permission to view where type = ? and subtype = ?.int
filterCountByType
(int type) Returns the number of roles that the user has permission to view where type = ?.int
filterCountByUuid
(String uuid) Returns the number of roles that the user has permission to view where uuid = ?.int
filterCountByUuid_C
(String uuid, long companyId) Returns the number of roles that the user has permission to view where uuid = ? and companyId = ?.filterFindByC_T
(long companyId, int type) Returns all the roles that the user has permission to view where companyId = ? and type = ?.filterFindByC_T
(long companyId, int[] types) Returns all the roles that the user has permission to view where companyId = ? and type = any ?.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 ?.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 ?.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 = ?.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 = ?.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 = ?.filterFindByCompanyId
(long companyId) Returns all the roles that the user has permission to view where companyId = ?.filterFindByCompanyId
(long companyId, int start, int end) Returns a range of all the roles that the user has permission to view where companyId = ?.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 = ?.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 = ?.filterFindByName
(String name) Returns all the roles that the user has permission to view where name = ?.filterFindByName
(String name, int start, int end) Returns a range of all the roles that the user has permission to view where name = ?.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 = ?.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 = ?.filterFindBySubtype
(String subtype) Returns all the roles that the user has permission to view where subtype = ?.filterFindBySubtype
(String subtype, int start, int end) Returns a range of all the roles that the user has permission to view where subtype = ?.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 = ?.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 = ?.filterFindByT_S
(int type, String subtype) Returns all the roles that the user has permission to view where type = ? and subtype = ?.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 = ?.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 = ?.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 = ?.filterFindByType
(int type) Returns all the roles that the user has permission to view where type = ?.filterFindByType
(int type, int start, int end) Returns a range of all the roles that the user has permission to view where type = ?.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 = ?.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 = ?.filterFindByUuid
(String uuid) Returns all the roles that the user has permission to view where uuid = ?.filterFindByUuid
(String uuid, int start, int end) Returns a range of all the roles that the user has permission to view where uuid = ?.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 = ?.filterFindByUuid_C
(String uuid, long companyId) Returns all the roles that the user has permission to view where uuid = ? and companyId = ?.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 = ?.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 = ?.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 = ?.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 = ?.findAll()
Returns all the roles.findAll
(int start, int end) Returns a range of all the roles.findAll
(int start, int end, OrderByComparator<Role> orderByComparator) Returns an ordered range of all the roles.findAll
(int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache) Returns an ordered range of all the roles.findByC_C_C
(long companyId, long classNameId, long classPK) Returns the role where companyId = ? and classNameId = ? and classPK = ? or throws aNoSuchRoleException
if it could not be found.findByC_C_C
(long companyId, long classNameId, long[] classPKs) Returns all the roles where companyId = ? and classNameId = ? and classPK = any ?.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 ?.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 ?.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.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 = ?.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 = ?.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 = ?.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.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 aNoSuchRoleException
if it could not be found.Returns the role where companyId = ? and name = ? or throws aNoSuchRoleException
if it could not be found.findByC_T
(long companyId, int type) Returns all the roles where companyId = ? and type = ?.findByC_T
(long companyId, int[] types) Returns all the roles where companyId = ? and type = any ?.findByC_T
(long companyId, int[] types, int start, int end) Returns a range of all the roles where companyId = ? and type = any ?.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 ?.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.findByC_T
(long companyId, int type, int start, int end) Returns a range of all the roles where companyId = ? and type = ?.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 = ?.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 = ?.findByC_T_First
(long companyId, int type, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where companyId = ? and type = ?.findByC_T_Last
(long companyId, int type, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where companyId = ? and type = ?.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 = ?.findByCompanyId
(long companyId) Returns all the roles where companyId = ?.findByCompanyId
(long companyId, int start, int end) Returns a range of all the roles where companyId = ?.findByCompanyId
(long companyId, int start, int end, OrderByComparator<Role> orderByComparator) Returns an ordered range of all the roles where companyId = ?.findByCompanyId
(long companyId, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache) Returns an ordered range of all the roles where companyId = ?.findByCompanyId_First
(long companyId, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where companyId = ?.findByCompanyId_Last
(long companyId, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where companyId = ?.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 = ?.findByERC_C
(String externalReferenceCode, long companyId) Returns the role where externalReferenceCode = ? and companyId = ? or throws aNoSuchRoleException
if it could not be found.findByName
(String name) Returns all the roles where name = ?.findByName
(String name, int start, int end) Returns a range of all the roles where name = ?.findByName
(String name, int start, int end, OrderByComparator<Role> orderByComparator) Returns an ordered range of all the roles where name = ?.findByName
(String name, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache) Returns an ordered range of all the roles where name = ?.findByName_First
(String name, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where name = ?.findByName_Last
(String name, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where name = ?.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 = ?.findByPrimaryKey
(long roleId) Returns the role with the primary key or throws aNoSuchRoleException
if it could not be found.findBySubtype
(String subtype) Returns all the roles where subtype = ?.findBySubtype
(String subtype, int start, int end) Returns a range of all the roles where subtype = ?.findBySubtype
(String subtype, int start, int end, OrderByComparator<Role> orderByComparator) Returns an ordered range of all the roles where subtype = ?.findBySubtype
(String subtype, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache) Returns an ordered range of all the roles where subtype = ?.findBySubtype_First
(String subtype, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where subtype = ?.findBySubtype_Last
(String subtype, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where subtype = ?.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 = ?.Returns all the roles where type = ? and subtype = ?.Returns a range of all the roles where type = ? and subtype = ?.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 = ?.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 = ?.findByT_S_First
(int type, String subtype, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where type = ? and subtype = ?.findByT_S_Last
(int type, String subtype, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where type = ? and subtype = ?.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 = ?.findByType
(int type) Returns all the roles where type = ?.findByType
(int type, int start, int end) Returns a range of all the roles where type = ?.findByType
(int type, int start, int end, OrderByComparator<Role> orderByComparator) Returns an ordered range of all the roles where type = ?.findByType
(int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache) Returns an ordered range of all the roles where type = ?.findByType_First
(int type, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where type = ?.findByType_Last
(int type, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where type = ?.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 = ?.findByUuid
(String uuid) Returns all the roles where uuid = ?.findByUuid
(String uuid, int start, int end) Returns a range of all the roles where uuid = ?.findByUuid
(String uuid, int start, int end, OrderByComparator<Role> orderByComparator) Returns an ordered range of all the roles where uuid = ?.findByUuid
(String uuid, int start, int end, OrderByComparator<Role> orderByComparator, boolean useFinderCache) Returns an ordered range of all the roles where uuid = ?.findByUuid_C
(String uuid, long companyId) Returns all the roles where uuid = ? and companyId = ?.findByUuid_C
(String uuid, long companyId, int start, int end) Returns a range of all the roles where uuid = ? and companyId = ?.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 = ?.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 = ?.findByUuid_C_First
(String uuid, long companyId, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where uuid = ? and companyId = ?.findByUuid_C_Last
(String uuid, long companyId, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where uuid = ? and companyId = ?.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 = ?.findByUuid_First
(String uuid, OrderByComparator<Role> orderByComparator) Returns the first role in the ordered set where uuid = ?.findByUuid_Last
(String uuid, OrderByComparator<Role> orderByComparator) Returns the last role in the ordered set where uuid = ?.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 = ?.long[]
getGroupPrimaryKeys
(long pk) Returns the primaryKeys of groups associated with the role.getGroups
(long pk) Returns all the groups associated with the role.getGroups
(long pk, int start, int end) Returns a range of all the groups associated with the role.getGroups
(long pk, int start, int end, OrderByComparator<Group> orderByComparator) Returns an ordered range of all the groups associated with the role.int
getGroupsSize
(long pk) Returns the number of groups associated with the role.long[]
getUserPrimaryKeys
(long pk) Returns the primaryKeys of users associated with the role.getUsers
(long pk) Returns all the users associated with the role.getUsers
(long pk, int start, int end) Returns a range of all the users associated with the role.getUsers
(long pk, int start, int end, OrderByComparator<User> orderByComparator) Returns an ordered range of all the users associated with the role.int
getUsersSize
(long pk) Returns the number of users associated with the role.remove
(long roleId) Removes the role with the primary key from the database.void
Removes all the roles from the database.removeByC_C_C
(long companyId, long classNameId, long classPK) Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.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.removeByC_N
(long companyId, String name) Removes the role where companyId = ? and name = ? from the database.void
removeByC_T
(long companyId, int type) Removes all the roles where companyId = ? and type = ? from the database.void
removeByCompanyId
(long companyId) Removes all the roles where companyId = ? from the database.removeByERC_C
(String externalReferenceCode, long companyId) Removes the role where externalReferenceCode = ? and companyId = ? from the database.void
removeByName
(String name) Removes all the roles where name = ? from the database.void
removeBySubtype
(String subtype) Removes all the roles where subtype = ? from the database.void
removeByT_S
(int type, String subtype) Removes all the roles where type = ? and subtype = ? from the database.void
removeByType
(int type) Removes all the roles where type = ? from the database.void
removeByUuid
(String uuid) Removes all the roles where uuid = ? from the database.void
removeByUuid_C
(String uuid, long companyId) Removes all the roles where uuid = ? and companyId = ? from the database.void
removeGroup
(long pk, long groupPK) Removes the association between the role and the group.void
removeGroup
(long pk, Group group) Removes the association between the role and the group.void
removeGroups
(long pk, long[] groupPKs) Removes the association between the role and the groups.void
removeGroups
(long pk, List<Group> groups) Removes the association between the role and the groups.void
removeUser
(long pk, long userPK) Removes the association between the role and the user.void
removeUser
(long pk, User user) Removes the association between the role and the user.void
removeUsers
(long pk, long[] userPKs) Removes the association between the role and the users.void
removeUsers
(long pk, List<User> users) Removes the association between the role and the users.void
setGroups
(long pk, long[] groupPKs) Sets the groups associated with the role, removing and adding associations as necessary.void
Sets the groups associated with the role, removing and adding associations as necessary.void
setUsers
(long pk, long[] userPKs) Sets the users associated with the role, removing and adding associations as necessary.void
Sets the users associated with the role, removing and adding associations as necessary.updateImpl
(Role role) Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence
clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
Methods inherited from interface com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence
getCTColumnNames, getMappingTableNames, getTableColumnsMap, getTableName, getUniqueIndexColumnNames
-
Method Details
-
findByUuid
Returns all the roles where uuid = ?.- Parameters:
uuid
- the uuid- Returns:
- the matching roles
-
findByUuid
Returns a range of all the roles where uuid = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByUuid
Returns an ordered range of all the roles where uuid = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByUuid
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByUuid_First
Role findByUuid_First(String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the first role in the ordered set where uuid = ?.- Parameters:
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByUuid_First
Returns the first role in the ordered set where uuid = ?.- Parameters:
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findByUuid_Last
Role findByUuid_Last(String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the last role in the ordered set where uuid = ?.- Parameters:
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByUuid_Last
Returns the last role in the ordered set where uuid = ?.- Parameters:
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findByUuid_PrevAndNext
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 roleuuid
- the uuidorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByUuid
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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles that the user has permission to view
-
filterFindByUuid
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindByUuid_PrevAndNext
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 roleuuid
- the uuidorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
removeByUuid
Removes all the roles where uuid = ? from the database.- Parameters:
uuid
- the uuid
-
countByUuid
Returns the number of roles where uuid = ?.- Parameters:
uuid
- the uuid- Returns:
- the number of matching roles
-
filterCountByUuid
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
Returns all the roles where uuid = ? and companyId = ?.- Parameters:
uuid
- the uuidcompanyId
- the company ID- Returns:
- the matching roles
-
findByUuid_C
Returns a range of all the roles where uuid = ? and companyId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByUuid_C
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByUuid_C
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByUuid_C_First
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 uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByUuid_C_First
Returns the first role in the ordered set where uuid = ? and companyId = ?.- Parameters:
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findByUuid_C_Last
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 uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByUuid_C_Last
Returns the last role in the ordered set where uuid = ? and companyId = ?.- Parameters:
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findByUuid_C_PrevAndNext
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 roleuuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByUuid_C
Returns all the roles that the user has permission to view where uuid = ? and companyId = ?.- Parameters:
uuid
- the uuidcompanyId
- the company ID- Returns:
- the matching roles that the user has permission to view
-
filterFindByUuid_C
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of rolesend
- 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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindByUuid_C_PrevAndNext
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 roleuuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
removeByUuid_C
Removes all the roles where uuid = ? and companyId = ? from the database.- Parameters:
uuid
- the uuidcompanyId
- the company ID
-
countByUuid_C
Returns the number of roles where uuid = ? and companyId = ?.- Parameters:
uuid
- the uuidcompanyId
- the company ID- Returns:
- the number of matching roles
-
filterCountByUuid_C
Returns the number of roles that the user has permission to view where uuid = ? and companyId = ?.- Parameters:
uuid
- the uuidcompanyId
- the company ID- Returns:
- the number of matching roles that the user has permission to view
-
findByCompanyId
Returns all the roles where companyId = ?.- Parameters:
companyId
- the company ID- Returns:
- the matching roles
-
findByCompanyId
Returns a range of all the roles where companyId = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByCompanyId
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByCompanyId
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByCompanyId_First
Role findByCompanyId_First(long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the first role in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByCompanyId_First
Returns the first role in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findByCompanyId_Last
Role findByCompanyId_Last(long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the last role in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByCompanyId_Last
Returns the last role in the ordered set where companyId = ?.- Parameters:
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findByCompanyId_PrevAndNext
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 rolecompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByCompanyId
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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles that the user has permission to view
-
filterFindByCompanyId
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindByCompanyId_PrevAndNext
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 rolecompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
removeByCompanyId
void removeByCompanyId(long companyId) Removes all the roles where companyId = ? from the database.- Parameters:
companyId
- the company ID
-
countByCompanyId
int countByCompanyId(long companyId) Returns the number of roles where companyId = ?.- Parameters:
companyId
- the company ID- Returns:
- the number of matching roles
-
filterCountByCompanyId
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
Returns all the roles where name = ?.- Parameters:
name
- the name- Returns:
- the matching roles
-
findByName
Returns a range of all the roles where name = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
name
- the namestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByName
Returns an ordered range of all the roles where name = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
name
- the namestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByName
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
name
- the namestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByName_First
Role findByName_First(String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the first role in the ordered set where name = ?.- Parameters:
name
- the nameorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByName_First
Returns the first role in the ordered set where name = ?.- Parameters:
name
- the nameorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findByName_Last
Role findByName_Last(String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the last role in the ordered set where name = ?.- Parameters:
name
- the nameorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByName_Last
Returns the last role in the ordered set where name = ?.- Parameters:
name
- the nameorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findByName_PrevAndNext
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 rolename
- the nameorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByName
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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
name
- the namestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles that the user has permission to view
-
filterFindByName
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
name
- the namestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindByName_PrevAndNext
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 rolename
- the nameorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
removeByName
Removes all the roles where name = ? from the database.- Parameters:
name
- the name
-
countByName
Returns the number of roles where name = ?.- Parameters:
name
- the name- Returns:
- the number of matching roles
-
filterCountByName
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
Returns all the roles where type = ?.- Parameters:
type
- the type- Returns:
- the matching roles
-
findByType
Returns a range of all the roles where type = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByType
Returns an ordered range of all the roles where type = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByType
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByType_First
Role findByType_First(int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the first role in the ordered set where type = ?.- Parameters:
type
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByType_First
Returns the first role in the ordered set where type = ?.- Parameters:
type
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findByType_Last
Role findByType_Last(int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the last role in the ordered set where type = ?.- Parameters:
type
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByType_Last
Returns the last role in the ordered set where type = ?.- Parameters:
type
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findByType_PrevAndNext
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 roletype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByType
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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles that the user has permission to view
-
filterFindByType
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindByType_PrevAndNext
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 roletype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
removeByType
void removeByType(int type) Removes all the roles where type = ? from the database.- Parameters:
type
- the type
-
countByType
int countByType(int type) Returns the number of roles where type = ?.- Parameters:
type
- the type- Returns:
- the number of matching roles
-
filterCountByType
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
Returns all the roles where subtype = ?.- Parameters:
subtype
- the subtype- Returns:
- the matching roles
-
findBySubtype
Returns a range of all the roles where subtype = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
subtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findBySubtype
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
subtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findBySubtype
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
subtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findBySubtype_First
Role findBySubtype_First(String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the first role in the ordered set where subtype = ?.- Parameters:
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchBySubtype_First
Returns the first role in the ordered set where subtype = ?.- Parameters:
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findBySubtype_Last
Role findBySubtype_Last(String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException Returns the last role in the ordered set where subtype = ?.- Parameters:
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchBySubtype_Last
Returns the last role in the ordered set where subtype = ?.- Parameters:
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findBySubtype_PrevAndNext
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 rolesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindBySubtype
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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
subtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles that the user has permission to view
-
filterFindBySubtype
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
subtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindBySubtype_PrevAndNext
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 rolesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
removeBySubtype
Removes all the roles where subtype = ? from the database.- Parameters:
subtype
- the subtype
-
countBySubtype
Returns the number of roles where subtype = ?.- Parameters:
subtype
- the subtype- Returns:
- the number of matching roles
-
filterCountBySubtype
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
Returns the role where companyId = ? and name = ? or throws aNoSuchRoleException
if it could not be found.- Parameters:
companyId
- the company IDname
- the name- Returns:
- the matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByC_N
Returns the role where companyId = ? and name = ? or returnsnull
if it could not be found. Uses the finder cache.- Parameters:
companyId
- the company IDname
- the name- Returns:
- the matching role, or
null
if a matching role could not be found
-
fetchByC_N
Returns the role where companyId = ? and name = ? or returnsnull
if it could not be found, optionally using the finder cache.- Parameters:
companyId
- the company IDname
- the nameuseFinderCache
- whether to use the finder cache- Returns:
- the matching role, or
null
if a matching role could not be found
-
removeByC_N
Removes the role where companyId = ? and name = ? from the database.- Parameters:
companyId
- the company IDname
- the name- Returns:
- the role that was removed
- Throws:
NoSuchRoleException
-
countByC_N
Returns the number of roles where companyId = ? and name = ?.- Parameters:
companyId
- the company IDname
- the name- Returns:
- the number of matching roles
-
findByC_T
Returns all the roles where companyId = ? and type = ?.- Parameters:
companyId
- the company IDtype
- the type- Returns:
- the matching roles
-
findByC_T
Returns a range of all the roles where companyId = ? and type = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByC_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByC_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByC_T_First
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 IDtype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByC_T_First
Returns the first role in the ordered set where companyId = ? and type = ?.- Parameters:
companyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findByC_T_Last
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 IDtype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByC_T_Last
Returns the last role in the ordered set where companyId = ? and type = ?.- Parameters:
companyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findByC_T_PrevAndNext
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 rolecompanyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByC_T
Returns all the roles that the user has permission to view where companyId = ? and type = ?.- Parameters:
companyId
- the company IDtype
- the type- Returns:
- the matching roles that the user has permission to view
-
filterFindByC_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtype
- the typestart
- the lower bound of the range of rolesend
- 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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindByC_T_PrevAndNext
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 rolecompanyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByC_T
Returns all the roles that the user has permission to view where companyId = ? and type = any ?.- Parameters:
companyId
- the company IDtypes
- the types- Returns:
- the matching roles that the user has permission to view
-
filterFindByC_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtypes
- the typesstart
- the lower bound of the range of rolesend
- 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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtypes
- the typesstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
findByC_T
Returns all the roles where companyId = ? and type = any ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtypes
- the types- Returns:
- the matching roles
-
findByC_T
Returns a range of all the roles where companyId = ? and type = any ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtypes
- the typesstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByC_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtypes
- the typesstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByC_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDtypes
- the typesstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
removeByC_T
void removeByC_T(long companyId, int type) Removes all the roles where companyId = ? and type = ? from the database.- Parameters:
companyId
- the company IDtype
- the type
-
countByC_T
int countByC_T(long companyId, int type) Returns the number of roles where companyId = ? and type = ?.- Parameters:
companyId
- the company IDtype
- the type- Returns:
- the number of matching roles
-
countByC_T
int countByC_T(long companyId, int[] types) Returns the number of roles where companyId = ? and type = any ?.- Parameters:
companyId
- the company IDtypes
- the types- Returns:
- the number of matching roles
-
filterCountByC_T
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 IDtype
- the type- Returns:
- the number of matching roles that the user has permission to view
-
filterCountByC_T
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 IDtypes
- the types- Returns:
- the number of matching roles that the user has permission to view
-
findByT_S
Returns all the roles where type = ? and subtype = ?.- Parameters:
type
- the typesubtype
- the subtype- Returns:
- the matching roles
-
findByT_S
Returns a range of all the roles where type = ? and subtype = ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typesubtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByT_S
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typesubtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByT_S
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typesubtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByT_S_First
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 typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByT_S_First
Returns the first role in the ordered set where type = ? and subtype = ?.- Parameters:
type
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the first matching role, or
null
if a matching role could not be found
-
findByT_S_Last
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 typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByT_S_Last
Returns the last role in the ordered set where type = ? and subtype = ?.- Parameters:
type
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the last matching role, or
null
if a matching role could not be found
-
findByT_S_PrevAndNext
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 roletype
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
filterFindByT_S
Returns all the roles that the user has permission to view where type = ? and subtype = ?.- Parameters:
type
- the typesubtype
- the subtype- Returns:
- the matching roles that the user has permission to view
-
filterFindByT_S
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typesubtype
- the subtypestart
- the lower bound of the range of rolesend
- 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
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
type
- the typesubtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles that the user has permission to view
-
filterFindByT_S_PrevAndNext
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 roletype
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionallynull
)- Returns:
- the previous, current, and next role
- Throws:
NoSuchRoleException
- if a role with the primary key could not be found
-
removeByT_S
Removes all the roles where type = ? and subtype = ? from the database.- Parameters:
type
- the typesubtype
- the subtype
-
countByT_S
Returns the number of roles where type = ? and subtype = ?.- Parameters:
type
- the typesubtype
- the subtype- Returns:
- the number of matching roles
-
filterCountByT_S
Returns the number of roles that the user has permission to view where type = ? and subtype = ?.- Parameters:
type
- the typesubtype
- the subtype- Returns:
- the number of matching roles that the user has permission to view
-
findByC_C_C
Returns all the roles where companyId = ? and classNameId = ? and classPK = any ?.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pks- Returns:
- the matching roles
-
findByC_C_C
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pksstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByC_C_C
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pksstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByC_C_C
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pksstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByC_C_C
Returns the role where companyId = ? and classNameId = ? and classPK = ? or throws aNoSuchRoleException
if it could not be found.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pk- Returns:
- the matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByC_C_C
Returns the role where companyId = ? and classNameId = ? and classPK = ? or returnsnull
if it could not be found. Uses the finder cache.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pk- Returns:
- the matching role, or
null
if a matching role could not be found
-
fetchByC_C_C
Returns the role where companyId = ? and classNameId = ? and classPK = ? or returnsnull
if it could not be found, optionally using the finder cache.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pkuseFinderCache
- whether to use the finder cache- Returns:
- the matching role, or
null
if a matching role could not be found
-
removeByC_C_C
Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pk- Returns:
- the role that was removed
- Throws:
NoSuchRoleException
-
countByC_C_C
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 IDclassNameId
- the class name IDclassPK
- the class pk- Returns:
- the number of matching roles
-
countByC_C_C
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 IDclassNameId
- the class name IDclassPKs
- the class pks- Returns:
- the number of matching roles
-
filterCountByC_C_C
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 IDclassNameId
- the class name IDclassPK
- the class pk- Returns:
- the number of matching roles that the user has permission to view
-
filterCountByC_C_C
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 IDclassNameId
- the class name IDclassPKs
- the class pks- Returns:
- the number of matching roles that the user has permission to view
-
findByC_C_C_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pkstype
- the type- Returns:
- the matching roles
-
findByC_C_C_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pkstype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of matching roles
-
findByC_C_C_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pkstype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of matching roles
-
findByC_C_C_T
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pkstype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of matching roles
-
findByC_C_C_T
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 aNoSuchRoleException
if it could not be found.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pktype
- the type- Returns:
- the matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByC_C_C_T
Returns the role where companyId = ? and classNameId = ? and classPK = ? and type = ? or returnsnull
if it could not be found. Uses the finder cache.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pktype
- the type- Returns:
- the matching role, or
null
if a matching role could not be found
-
fetchByC_C_C_T
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 returnsnull
if it could not be found, optionally using the finder cache.- Parameters:
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pktype
- the typeuseFinderCache
- whether to use the finder cache- Returns:
- the matching role, or
null
if a matching role could not be found
-
removeByC_C_C_T
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 IDclassNameId
- the class name IDclassPK
- the class pktype
- the type- Returns:
- the role that was removed
- Throws:
NoSuchRoleException
-
countByC_C_C_T
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 IDclassNameId
- the class name IDclassPK
- the class pktype
- the type- Returns:
- the number of matching roles
-
countByC_C_C_T
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 IDclassNameId
- the class name IDclassPKs
- the class pkstype
- the type- Returns:
- the number of matching roles
-
filterCountByC_C_C_T
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 IDclassNameId
- the class name IDclassPK
- the class pktype
- the type- Returns:
- the number of matching roles that the user has permission to view
-
filterCountByC_C_C_T
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 IDclassNameId
- the class name IDclassPKs
- the class pkstype
- the type- Returns:
- the number of matching roles that the user has permission to view
-
findByERC_C
Returns the role where externalReferenceCode = ? and companyId = ? or throws aNoSuchRoleException
if it could not be found.- Parameters:
externalReferenceCode
- the external reference codecompanyId
- the company ID- Returns:
- the matching role
- Throws:
NoSuchRoleException
- if a matching role could not be found
-
fetchByERC_C
Returns the role where externalReferenceCode = ? and companyId = ? or returnsnull
if it could not be found. Uses the finder cache.- Parameters:
externalReferenceCode
- the external reference codecompanyId
- the company ID- Returns:
- the matching role, or
null
if a matching role could not be found
-
fetchByERC_C
Returns the role where externalReferenceCode = ? and companyId = ? or returnsnull
if it could not be found, optionally using the finder cache.- Parameters:
externalReferenceCode
- the external reference codecompanyId
- the company IDuseFinderCache
- whether to use the finder cache- Returns:
- the matching role, or
null
if a matching role could not be found
-
removeByERC_C
Removes the role where externalReferenceCode = ? and companyId = ? from the database.- Parameters:
externalReferenceCode
- the external reference codecompanyId
- the company ID- Returns:
- the role that was removed
- Throws:
NoSuchRoleException
-
countByERC_C
Returns the number of roles where externalReferenceCode = ? and companyId = ?.- Parameters:
externalReferenceCode
- the external reference codecompanyId
- the company ID- Returns:
- the number of matching roles
-
cacheResult
Caches the role in the entity cache if it is enabled.- Parameters:
role
- the role
-
cacheResult
Caches the roles in the entity cache if it is enabled.- Parameters:
roles
- the roles
-
create
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
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
-
updateImpl
-
findByPrimaryKey
Returns the role with the primary key or throws aNoSuchRoleException
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
-
fetchByPrimaryKey
Returns the role with the primary key or returnsnull
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
Returns all the roles.- Returns:
- the roles
-
findAll
Returns a range of all the roles.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
start
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of roles
-
findAll
Returns an ordered range of all the roles.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
start
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of roles
-
findAll
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
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
start
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)useFinderCache
- whether to use the finder cache- Returns:
- the ordered range of roles
-
removeAll
void removeAll()Removes all the roles from the database. -
countAll
int countAll()Returns the number of roles.- Returns:
- the number of roles
-
getGroupPrimaryKeys
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
Returns all the groups associated with the role.- Parameters:
pk
- the primary key of the role- Returns:
- the groups associated with the role
-
getGroups
Returns a range of all the groups associated with the role.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
pk
- the primary key of the rolestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of groups associated with the role
-
getGroups
Returns an ordered range of all the groups associated with the role.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
pk
- the primary key of the rolestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of groups associated with the role
-
getGroupsSize
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
boolean containsGroup(long pk, long groupPK) Returnstrue
if the group is associated with the role.- Parameters:
pk
- the primary key of the rolegroupPK
- the primary key of the group- Returns:
true
if the group is associated with the role;false
otherwise
-
containsGroups
boolean containsGroups(long pk) Returnstrue
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
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 rolegroupPK
- 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
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 rolegroup
- the group- Returns:
true
if an association between the role and the group was added;false
if they were already associated
-
addGroups
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 rolegroupPKs
- 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
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 rolegroups
- 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
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
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 rolegroupPK
- the primary key of the group
-
removeGroup
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 rolegroup
- the group
-
removeGroups
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 rolegroupPKs
- the primary keys of the groups
-
removeGroups
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 rolegroups
- the groups
-
setGroups
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 rolegroupPKs
- the primary keys of the groups to be associated with the role
-
setGroups
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 rolegroups
- the groups to be associated with the role
-
getUserPrimaryKeys
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
Returns all the users associated with the role.- Parameters:
pk
- the primary key of the role- Returns:
- the users associated with the role
-
getUsers
Returns a range of all the users associated with the role.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
pk
- the primary key of the rolestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)- Returns:
- the range of users associated with the role
-
getUsers
Returns an ordered range of all the users associated with the role.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is absent, then the query will include the default ORDER BY logic fromRoleModelImpl
.- Parameters:
pk
- the primary key of the rolestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)orderByComparator
- the comparator to order the results by (optionallynull
)- Returns:
- the ordered range of users associated with the role
-
getUsersSize
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
boolean containsUser(long pk, long userPK) Returnstrue
if the user is associated with the role.- Parameters:
pk
- the primary key of the roleuserPK
- the primary key of the user- Returns:
true
if the user is associated with the role;false
otherwise
-
containsUsers
boolean containsUsers(long pk) Returnstrue
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
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 roleuserPK
- 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
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 roleuser
- the user- Returns:
true
if an association between the role and the user was added;false
if they were already associated
-
addUsers
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 roleuserPKs
- 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
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 roleusers
- 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
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
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 roleuserPK
- the primary key of the user
-
removeUser
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 roleuser
- the user
-
removeUsers
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 roleuserPKs
- the primary keys of the users
-
removeUsers
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 roleusers
- the users
-
setUsers
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 roleuserPKs
- the primary keys of the users to be associated with the role
-
setUsers
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 roleusers
- the users to be associated with the role
-