@ProviderType public interface RolePersistence extends BasePersistence<Role>
Caching information and settings can be found in portal.properties
RolePersistenceImpl
,
RoleUtil
Modifier and Type | Method and Description |
---|---|
void |
addGroup(long pk,
Group group)
Adds an association between the role and the group.
|
void |
addGroup(long pk,
long groupPK)
Adds an association between the role and the group.
|
void |
addGroups(long pk,
List<Group> groups)
Adds an association between the role and the groups.
|
void |
addGroups(long pk,
long[] groupPKs)
Adds an association between the role and the groups.
|
void |
addUser(long pk,
long userPK)
Adds an association between the role and the user.
|
void |
addUser(long pk,
User user)
Adds an association between the role and the user.
|
void |
addUsers(long pk,
List<User> users)
Adds an association between the role and the users.
|
void |
addUsers(long pk,
long[] userPKs)
Adds an association between the role and the users.
|
void |
cacheResult(List<Role> roles)
Caches the roles in the entity cache if it is enabled.
|
void |
cacheResult(Role role)
Caches the role 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)
Returns
true if the group is associated with the role. |
boolean |
containsGroups(long pk)
Returns
true if the role has any groups associated with it. |
boolean |
containsUser(long pk,
long userPK)
Returns
true if the user is associated with the role. |
boolean |
containsUsers(long pk)
Returns
true 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_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 |
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_C(String uuid,
long companyId)
Returns the number of roles where uuid = ? and companyId = ?.
|
int |
countByUuid(String uuid)
Returns the number of roles where uuid = ?.
|
Role |
create(long roleId)
Creates a new role with the primary key.
|
Role |
fetchByC_C_C(long companyId,
long classNameId,
long classPK)
Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns
null if it could not be found. |
Role |
fetchByC_C_C(long companyId,
long classNameId,
long classPK,
boolean retrieveFromCache)
Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns
null if it could not be found, optionally using the finder cache. |
Role |
fetchByC_N(long companyId,
String name)
Returns the role where companyId = ? and name = ? or returns
null if it could not be found. |
Role |
fetchByC_N(long companyId,
String name,
boolean retrieveFromCache)
Returns the role where companyId = ? and name = ? or returns
null if it could not be found, optionally using the finder cache. |
Role |
fetchByC_T_First(long companyId,
int type,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where companyId = ? and type = ?.
|
Role |
fetchByC_T_Last(long companyId,
int type,
OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where companyId = ? and type = ?.
|
Role |
fetchByCompanyId_First(long companyId,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where companyId = ?.
|
Role |
fetchByCompanyId_Last(long companyId,
OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where companyId = ?.
|
Role |
fetchByName_First(String name,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where name = ?.
|
Role |
fetchByName_Last(String name,
OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where name = ?.
|
Role |
fetchByPrimaryKey(long roleId)
Returns the role with the primary key or returns
null if it could not be found. |
Map<Serializable,Role> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
Role |
fetchBySubtype_First(String subtype,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where subtype = ?.
|
Role |
fetchBySubtype_Last(String subtype,
OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where subtype = ?.
|
Role |
fetchByT_S_First(int type,
String subtype,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where type = ? and subtype = ?.
|
Role |
fetchByT_S_Last(int type,
String subtype,
OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where type = ? and subtype = ?.
|
Role |
fetchByType_First(int type,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where type = ?.
|
Role |
fetchByType_Last(int type,
OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where type = ?.
|
Role |
fetchByUuid_C_First(String uuid,
long companyId,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where uuid = ? and companyId = ?.
|
Role |
fetchByUuid_C_Last(String uuid,
long companyId,
OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where uuid = ? and companyId = ?.
|
Role |
fetchByUuid_First(String uuid,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where uuid = ?.
|
Role |
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_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_C(String uuid,
long companyId)
Returns the number of roles that the user has permission to view where uuid = ? and companyId = ?.
|
int |
filterCountByUuid(String uuid)
Returns the number of roles that the user has permission to view where uuid = ?.
|
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 = ?.
|
List<Role> |
filterFindByC_T(long companyId,
int type)
Returns all the roles that the user has permission to view where companyId = ? and type = ?.
|
List<Role> |
filterFindByC_T(long companyId,
int[] types)
Returns all the roles that the user has permission to view where companyId = ? and type = any ?.
|
List<Role> |
filterFindByC_T(long companyId,
int[] types,
int start,
int end)
Returns a range of all the roles that the user has permission to view where companyId = ? and type = any ?.
|
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 ?.
|
List<Role> |
filterFindByC_T(long companyId,
int type,
int start,
int end)
Returns a range of all the roles that the user has permission to view where companyId = ? and type = ?.
|
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 = ?.
|
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 = ?.
|
List<Role> |
filterFindByCompanyId(long companyId)
Returns all the roles that the user has permission to view where companyId = ?.
|
List<Role> |
filterFindByCompanyId(long companyId,
int start,
int end)
Returns a range of all the roles that the user has permission to view where companyId = ?.
|
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 = ?.
|
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 = ?.
|
List<Role> |
filterFindByName(String name)
Returns all the roles that the user has permission to view where name = ?.
|
List<Role> |
filterFindByName(String name,
int start,
int end)
Returns a range of all the roles that the user has permission to view where name = ?.
|
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 = ?.
|
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 = ?.
|
List<Role> |
filterFindBySubtype(String subtype)
Returns all the roles that the user has permission to view where subtype = ?.
|
List<Role> |
filterFindBySubtype(String subtype,
int start,
int end)
Returns a range of all the roles that the user has permission to view where subtype = ?.
|
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 = ?.
|
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 = ?.
|
List<Role> |
filterFindByT_S(int type,
String subtype)
Returns all the roles that the user has permission to view where type = ? and subtype = ?.
|
List<Role> |
filterFindByT_S(int type,
String subtype,
int start,
int end)
Returns a range of all the roles that the user has permission to view where type = ? and subtype = ?.
|
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 = ?.
|
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 = ?.
|
List<Role> |
filterFindByType(int type)
Returns all the roles that the user has permission to view where type = ?.
|
List<Role> |
filterFindByType(int type,
int start,
int end)
Returns a range of all the roles that the user has permission to view where type = ?.
|
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 = ?.
|
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 = ?.
|
List<Role> |
filterFindByUuid_C(String uuid,
long companyId)
Returns all the roles that the user has permission to view where uuid = ? and companyId = ?.
|
List<Role> |
filterFindByUuid_C(String uuid,
long companyId,
int start,
int end)
Returns a range of all the roles that the user has permission to view where uuid = ? and companyId = ?.
|
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 = ?.
|
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 = ?.
|
List<Role> |
filterFindByUuid(String uuid)
Returns all the roles that the user has permission to view where uuid = ?.
|
List<Role> |
filterFindByUuid(String uuid,
int start,
int end)
Returns a range of all the roles that the user has permission to view where uuid = ?.
|
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 = ?.
|
List<Role> |
findAll()
Returns all the roles.
|
List<Role> |
findAll(int start,
int end)
Returns a range of all the roles.
|
List<Role> |
findAll(int start,
int end,
OrderByComparator<Role> orderByComparator)
Returns an ordered range of all the roles.
|
List<Role> |
findAll(int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles.
|
Role |
findByC_C_C(long companyId,
long classNameId,
long classPK)
Returns the role where companyId = ? and classNameId = ? and classPK = ? or throws a
NoSuchRoleException if it could not be found. |
List<Role> |
findByC_C_C(long companyId,
long classNameId,
long[] classPKs)
Returns all the roles where companyId = ? and classNameId = ? and classPK = any ?.
|
List<Role> |
findByC_C_C(long companyId,
long classNameId,
long[] classPKs,
int start,
int end)
Returns a range of all the roles where companyId = ? and classNameId = ? and classPK = any ?.
|
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 ?.
|
List<Role> |
findByC_C_C(long companyId,
long classNameId,
long[] classPKs,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where companyId = ? and classNameId = ? and classPK = ?, optionally using the finder cache.
|
Role |
findByC_N(long companyId,
String name)
Returns the role where companyId = ? and name = ? or throws a
NoSuchRoleException if it could not be found. |
Role |
findByC_T_First(long companyId,
int type,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where companyId = ? and type = ?.
|
Role |
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 = ?.
|
List<Role> |
findByC_T(long companyId,
int type)
Returns all the roles where companyId = ? and type = ?.
|
List<Role> |
findByC_T(long companyId,
int[] types)
Returns all the roles where companyId = ? and type = any ?.
|
List<Role> |
findByC_T(long companyId,
int[] types,
int start,
int end)
Returns a range of all the roles where companyId = ? and type = any ?.
|
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 ?.
|
List<Role> |
findByC_T(long companyId,
int[] types,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where companyId = ? and type = ?, optionally using the finder cache.
|
List<Role> |
findByC_T(long companyId,
int type,
int start,
int end)
Returns a range of all the roles where companyId = ? and type = ?.
|
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 = ?.
|
List<Role> |
findByC_T(long companyId,
int type,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where companyId = ? and type = ?.
|
Role |
findByCompanyId_First(long companyId,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where companyId = ?.
|
Role |
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 = ?.
|
List<Role> |
findByCompanyId(long companyId)
Returns all the roles where companyId = ?.
|
List<Role> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the roles where companyId = ?.
|
List<Role> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<Role> orderByComparator)
Returns an ordered range of all the roles where companyId = ?.
|
List<Role> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where companyId = ?.
|
Role |
findByName_First(String name,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where name = ?.
|
Role |
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 = ?.
|
List<Role> |
findByName(String name)
Returns all the roles where name = ?.
|
List<Role> |
findByName(String name,
int start,
int end)
Returns a range of all the roles where name = ?.
|
List<Role> |
findByName(String name,
int start,
int end,
OrderByComparator<Role> orderByComparator)
Returns an ordered range of all the roles where name = ?.
|
List<Role> |
findByName(String name,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where name = ?.
|
Role |
findByPrimaryKey(long roleId)
Returns the role with the primary key or throws a
NoSuchRoleException if it could not be found. |
Role |
findBySubtype_First(String subtype,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where subtype = ?.
|
Role |
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 = ?.
|
List<Role> |
findBySubtype(String subtype)
Returns all the roles where subtype = ?.
|
List<Role> |
findBySubtype(String subtype,
int start,
int end)
Returns a range of all the roles where subtype = ?.
|
List<Role> |
findBySubtype(String subtype,
int start,
int end,
OrderByComparator<Role> orderByComparator)
Returns an ordered range of all the roles where subtype = ?.
|
List<Role> |
findBySubtype(String subtype,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where subtype = ?.
|
Role |
findByT_S_First(int type,
String subtype,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where type = ? and subtype = ?.
|
Role |
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 = ?.
|
List<Role> |
findByT_S(int type,
String subtype)
Returns all the roles where type = ? and subtype = ?.
|
List<Role> |
findByT_S(int type,
String subtype,
int start,
int end)
Returns a range of all the roles where type = ? and subtype = ?.
|
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 = ?.
|
List<Role> |
findByT_S(int type,
String subtype,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where type = ? and subtype = ?.
|
Role |
findByType_First(int type,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where type = ?.
|
Role |
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 = ?.
|
List<Role> |
findByType(int type)
Returns all the roles where type = ?.
|
List<Role> |
findByType(int type,
int start,
int end)
Returns a range of all the roles where type = ?.
|
List<Role> |
findByType(int type,
int start,
int end,
OrderByComparator<Role> orderByComparator)
Returns an ordered range of all the roles where type = ?.
|
List<Role> |
findByType(int type,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where type = ?.
|
Role |
findByUuid_C_First(String uuid,
long companyId,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where uuid = ? and companyId = ?.
|
Role |
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 = ?.
|
List<Role> |
findByUuid_C(String uuid,
long companyId)
Returns all the roles where uuid = ? and companyId = ?.
|
List<Role> |
findByUuid_C(String uuid,
long companyId,
int start,
int end)
Returns a range of all the roles where uuid = ? and companyId = ?.
|
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 = ?.
|
List<Role> |
findByUuid_C(String uuid,
long companyId,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where uuid = ? and companyId = ?.
|
Role |
findByUuid_First(String uuid,
OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where uuid = ?.
|
Role |
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 = ?.
|
List<Role> |
findByUuid(String uuid)
Returns all the roles where uuid = ?.
|
List<Role> |
findByUuid(String uuid,
int start,
int end)
Returns a range of all the roles where uuid = ?.
|
List<Role> |
findByUuid(String uuid,
int start,
int end,
OrderByComparator<Role> orderByComparator)
Returns an ordered range of all the roles where uuid = ?.
|
List<Role> |
findByUuid(String uuid,
int start,
int end,
OrderByComparator<Role> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the roles where uuid = ?.
|
Set<String> |
getBadColumnNames() |
long[] |
getGroupPrimaryKeys(long pk)
Returns the primaryKeys of groups associated with the role.
|
List<Group> |
getGroups(long pk)
Returns all the groups associated with the role.
|
List<Group> |
getGroups(long pk,
int start,
int end)
Returns a range of all the groups associated with the role.
|
List<Group> |
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.
|
List<User> |
getUsers(long pk)
Returns all the users associated with the role.
|
List<User> |
getUsers(long pk,
int start,
int end)
Returns a range of all the users associated with the role.
|
List<User> |
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.
|
Role |
remove(long roleId)
Removes the role with the primary key from the database.
|
void |
removeAll()
Removes all the roles from the database.
|
Role |
removeByC_C_C(long companyId,
long classNameId,
long classPK)
Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.
|
Role |
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.
|
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_C(String uuid,
long companyId)
Removes all the roles where uuid = ? and companyId = ? from the database.
|
void |
removeByUuid(String uuid)
Removes all the roles where uuid = ? from the database.
|
void |
removeGroup(long pk,
Group group)
Removes the association between the role and the group.
|
void |
removeGroup(long pk,
long groupPK)
Removes the association between the role and the group.
|
void |
removeGroups(long pk,
List<Group> groups)
Removes the association between the role and the groups.
|
void |
removeGroups(long pk,
long[] groupPKs)
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,
List<User> users)
Removes the association between the role and the users.
|
void |
removeUsers(long pk,
long[] userPKs)
Removes the association between the role and the users.
|
void |
setGroups(long pk,
List<Group> groups)
Sets the groups associated with the role, removing and adding associations as necessary.
|
void |
setGroups(long pk,
long[] groupPKs)
Sets the groups associated with the role, removing and adding associations as necessary.
|
void |
setUsers(long pk,
List<User> users)
Sets the users 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.
|
Role |
updateImpl(Role role) |
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
List<Role> findByUuid(String uuid)
uuid
- the uuidList<Role> findByUuid(String uuid, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByUuid_First(String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByUuid_First(String uuid, OrderByComparator<Role> orderByComparator)
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findByUuid_Last(String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByUuid_Last(String uuid, OrderByComparator<Role> orderByComparator)
uuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findByUuid_PrevAndNext(long roleId, String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roleuuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByUuid(String uuid)
uuid
- the uuidList<Role> filterFindByUuid(String uuid, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByUuid(String uuid, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindByUuid_PrevAndNext(long roleId, String uuid, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roleuuid
- the uuidorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundvoid removeByUuid(String uuid)
uuid
- the uuidint countByUuid(String uuid)
uuid
- the uuidint filterCountByUuid(String uuid)
uuid
- the uuidList<Role> findByUuid_C(String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDList<Role> findByUuid_C(String uuid, long companyId, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByUuid_C_First(String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findByUuid_C_Last(String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<Role> orderByComparator)
uuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findByUuid_C_PrevAndNext(long roleId, String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roleuuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByUuid_C(String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDList<Role> filterFindByUuid_C(String uuid, long companyId, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
uuid
- the uuidcompanyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindByUuid_C_PrevAndNext(long roleId, String uuid, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roleuuid
- the uuidcompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundvoid removeByUuid_C(String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDint countByUuid_C(String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDint filterCountByUuid_C(String uuid, long companyId)
uuid
- the uuidcompanyId
- the company IDList<Role> findByCompanyId(long companyId)
companyId
- the company IDList<Role> findByCompanyId(long companyId, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByCompanyId_First(long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByCompanyId_First(long companyId, OrderByComparator<Role> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findByCompanyId_Last(long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByCompanyId_Last(long companyId, OrderByComparator<Role> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolecompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByCompanyId(long companyId)
companyId
- the company IDList<Role> filterFindByCompanyId(long companyId, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByCompanyId(long companyId, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolecompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundvoid removeByCompanyId(long companyId)
companyId
- the company IDint countByCompanyId(long companyId)
companyId
- the company IDint filterCountByCompanyId(long companyId)
companyId
- the company IDList<Role> findByName(String name)
name
- the nameList<Role> findByName(String name, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
name
- the namestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByName(String name, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByName(String name, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByName_First(String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
name
- the nameorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByName_First(String name, OrderByComparator<Role> orderByComparator)
name
- the nameorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findByName_Last(String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
name
- the nameorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByName_Last(String name, OrderByComparator<Role> orderByComparator)
name
- the nameorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findByName_PrevAndNext(long roleId, String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolename
- the nameorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByName(String name)
name
- the nameList<Role> filterFindByName(String name, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
name
- the namestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByName(String name, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindByName_PrevAndNext(long roleId, String name, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolename
- the nameorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundvoid removeByName(String name)
name
- the nameint countByName(String name)
name
- the nameint filterCountByName(String name)
name
- the nameList<Role> findByType(int type)
type
- the typeList<Role> findByType(int type, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
type
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByType(int type, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByType(int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByType_First(int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
type
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByType_First(int type, OrderByComparator<Role> orderByComparator)
type
- the typeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findByType_Last(int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
type
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByType_Last(int type, OrderByComparator<Role> orderByComparator)
type
- the typeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findByType_PrevAndNext(long roleId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roletype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByType(int type)
type
- the typeList<Role> filterFindByType(int type, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
type
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByType(int type, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindByType_PrevAndNext(long roleId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roletype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundvoid removeByType(int type)
type
- the typeint countByType(int type)
type
- the typeint filterCountByType(int type)
type
- the typeList<Role> findBySubtype(String subtype)
subtype
- the subtypeList<Role> findBySubtype(String subtype, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
subtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findBySubtype_First(String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchBySubtype_First(String subtype, OrderByComparator<Role> orderByComparator)
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findBySubtype_Last(String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchBySubtype_Last(String subtype, OrderByComparator<Role> orderByComparator)
subtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindBySubtype(String subtype)
subtype
- the subtypeList<Role> filterFindBySubtype(String subtype, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
subtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindBySubtype(String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundvoid removeBySubtype(String subtype)
subtype
- the subtypeint countBySubtype(String subtype)
subtype
- the subtypeint filterCountBySubtype(String subtype)
subtype
- the subtypeRole findByC_N(long companyId, String name) throws NoSuchRoleException
NoSuchRoleException
if it could not be found.companyId
- the company IDname
- the nameNoSuchRoleException
- if a matching role could not be foundRole fetchByC_N(long companyId, String name)
null
if it could not be found. Uses the finder cache.companyId
- the company IDname
- the namenull
if a matching role could not be foundRole fetchByC_N(long companyId, String name, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.companyId
- the company IDname
- the nameretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching role could not be foundRole removeByC_N(long companyId, String name) throws NoSuchRoleException
companyId
- the company IDname
- the nameNoSuchRoleException
int countByC_N(long companyId, String name)
companyId
- the company IDname
- the nameList<Role> findByC_T(long companyId, int type)
companyId
- the company IDtype
- the typeList<Role> findByC_T(long companyId, int type, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDtype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByC_T_First(long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
companyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByC_T_First(long companyId, int type, OrderByComparator<Role> orderByComparator)
companyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findByC_T_Last(long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
companyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByC_T_Last(long companyId, int type, OrderByComparator<Role> orderByComparator)
companyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findByC_T_PrevAndNext(long roleId, long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolecompanyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByC_T(long companyId, int type)
companyId
- the company IDtype
- the typeList<Role> filterFindByC_T(long companyId, int type, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDtype
- the typestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByC_T(long companyId, int type, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindByC_T_PrevAndNext(long roleId, long companyId, int type, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current rolecompanyId
- the company IDtype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByC_T(long companyId, int[] types)
companyId
- the company IDtypes
- the typesList<Role> filterFindByC_T(long companyId, int[] types, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDtypes
- the typesstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByC_T(long companyId, int[] types)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDtypes
- the typesList<Role> findByC_T(long companyId, int[] types, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDtypes
- the typesstart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByC_T(long companyId, int[] types, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeByC_T(long companyId, int type)
companyId
- the company IDtype
- the typeint countByC_T(long companyId, int type)
companyId
- the company IDtype
- the typeint countByC_T(long companyId, int[] types)
companyId
- the company IDtypes
- the typesint filterCountByC_T(long companyId, int type)
companyId
- the company IDtype
- the typeint filterCountByC_T(long companyId, int[] types)
companyId
- the company IDtypes
- the typesList<Role> findByT_S(int type, String subtype)
type
- the typesubtype
- the subtypeList<Role> findByT_S(int type, String subtype, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
type
- the typesubtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByT_S_First(int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
type
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByT_S_First(int type, String subtype, OrderByComparator<Role> orderByComparator)
type
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole findByT_S_Last(int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
type
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a matching role could not be foundRole fetchByT_S_Last(int type, String subtype, OrderByComparator<Role> orderByComparator)
type
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching role could not be foundRole[] findByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roletype
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundList<Role> filterFindByT_S(int type, String subtype)
type
- the typesubtype
- the subtypeList<Role> filterFindByT_S(int type, String subtype, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
type
- the typesubtype
- the subtypestart
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> filterFindByT_S(int type, String subtype, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)Role[] filterFindByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator<Role> orderByComparator) throws NoSuchRoleException
roleId
- the primary key of the current roletype
- the typesubtype
- the subtypeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchRoleException
- if a role with the primary key could not be foundvoid removeByT_S(int type, String subtype)
type
- the typesubtype
- the subtypeint countByT_S(int type, String subtype)
type
- the typesubtype
- the subtypeint filterCountByT_S(int type, String subtype)
type
- the typesubtype
- the subtypeList<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pksList<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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)List<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findByC_C_C(long companyId, long classNameId, long[] classPKs, int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pkstart
- 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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheRole findByC_C_C(long companyId, long classNameId, long classPK) throws NoSuchRoleException
NoSuchRoleException
if it could not be found.companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pkNoSuchRoleException
- if a matching role could not be foundRole fetchByC_C_C(long companyId, long classNameId, long classPK)
null
if it could not be found. Uses the finder cache.companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pknull
if a matching role could not be foundRole fetchByC_C_C(long companyId, long classNameId, long classPK, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pkretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching role could not be foundRole removeByC_C_C(long companyId, long classNameId, long classPK) throws NoSuchRoleException
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pkNoSuchRoleException
int countByC_C_C(long companyId, long classNameId, long classPK)
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pkint countByC_C_C(long companyId, long classNameId, long[] classPKs)
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pksint filterCountByC_C_C(long companyId, long classNameId, long classPK)
companyId
- the company IDclassNameId
- the class name IDclassPK
- the class pkint filterCountByC_C_C(long companyId, long classNameId, long[] classPKs)
companyId
- the company IDclassNameId
- the class name IDclassPKs
- the class pksvoid cacheResult(Role role)
role
- the rolevoid cacheResult(List<Role> roles)
roles
- the rolesRole create(long roleId)
roleId
- the primary key for the new roleRole remove(long roleId) throws NoSuchRoleException
roleId
- the primary key of the roleNoSuchRoleException
- if a role with the primary key could not be foundRole findByPrimaryKey(long roleId) throws NoSuchRoleException
NoSuchRoleException
if it could not be found.roleId
- the primary key of the roleNoSuchRoleException
- if a role with the primary key could not be foundRole fetchByPrimaryKey(long roleId)
null
if it could not be found.roleId
- the primary key of the rolenull
if a role with the primary key could not be foundMap<Serializable,Role> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<Role>
List<Role> findAll()
List<Role> findAll(int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of rolesend
- the upper bound of the range of roles (not inclusive)List<Role> findAll(int start, int end, OrderByComparator<Role> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)List<Role> findAll(int start, int end, OrderByComparator<Role> orderByComparator, boolean retrieveFromCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeAll()
int countAll()
long[] getGroupPrimaryKeys(long pk)
pk
- the primary key of the roleList<Group> getGroups(long pk)
pk
- the primary key of the roleList<Group> getGroups(long pk, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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)List<Group> getGroups(long pk, int start, int end, OrderByComparator<Group> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)int getGroupsSize(long pk)
pk
- the primary key of the roleboolean containsGroup(long pk, long groupPK)
true
if the group is associated with the role.pk
- the primary key of the rolegroupPK
- the primary key of the grouptrue
if the group is associated with the role; false
otherwiseboolean containsGroups(long pk)
true
if the role has any groups associated with it.pk
- the primary key of the role to check for associations with groupstrue
if the role has any groups associated with it; false
otherwisevoid addGroup(long pk, long groupPK)
pk
- the primary key of the rolegroupPK
- the primary key of the groupvoid addGroup(long pk, Group group)
pk
- the primary key of the rolegroup
- the groupvoid addGroups(long pk, long[] groupPKs)
pk
- the primary key of the rolegroupPKs
- the primary keys of the groupsvoid addGroups(long pk, List<Group> groups)
pk
- the primary key of the rolegroups
- the groupsvoid clearGroups(long pk)
pk
- the primary key of the role to clear the associated groups fromvoid removeGroup(long pk, long groupPK)
pk
- the primary key of the rolegroupPK
- the primary key of the groupvoid removeGroup(long pk, Group group)
pk
- the primary key of the rolegroup
- the groupvoid removeGroups(long pk, long[] groupPKs)
pk
- the primary key of the rolegroupPKs
- the primary keys of the groupsvoid removeGroups(long pk, List<Group> groups)
pk
- the primary key of the rolegroups
- the groupsvoid setGroups(long pk, long[] groupPKs)
pk
- the primary key of the rolegroupPKs
- the primary keys of the groups to be associated with the rolevoid setGroups(long pk, List<Group> groups)
pk
- the primary key of the rolegroups
- the groups to be associated with the rolelong[] getUserPrimaryKeys(long pk)
pk
- the primary key of the roleList<User> getUsers(long pk)
pk
- the primary key of the roleList<User> getUsers(long pk, int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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)List<User> getUsers(long pk, int start, int end, OrderByComparator<User> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from RoleModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
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 (optionally null
)int getUsersSize(long pk)
pk
- the primary key of the roleboolean containsUser(long pk, long userPK)
true
if the user is associated with the role.pk
- the primary key of the roleuserPK
- the primary key of the usertrue
if the user is associated with the role; false
otherwiseboolean containsUsers(long pk)
true
if the role has any users associated with it.pk
- the primary key of the role to check for associations with userstrue
if the role has any users associated with it; false
otherwisevoid addUser(long pk, long userPK)
pk
- the primary key of the roleuserPK
- the primary key of the uservoid addUser(long pk, User user)
pk
- the primary key of the roleuser
- the uservoid addUsers(long pk, long[] userPKs)
pk
- the primary key of the roleuserPKs
- the primary keys of the usersvoid addUsers(long pk, List<User> users)
pk
- the primary key of the roleusers
- the usersvoid clearUsers(long pk)
pk
- the primary key of the role to clear the associated users fromvoid removeUser(long pk, long userPK)
pk
- the primary key of the roleuserPK
- the primary key of the uservoid removeUser(long pk, User user)
pk
- the primary key of the roleuser
- the uservoid removeUsers(long pk, long[] userPKs)
pk
- the primary key of the roleuserPKs
- the primary keys of the usersvoid removeUsers(long pk, List<User> users)
pk
- the primary key of the roleusers
- the usersvoid setUsers(long pk, long[] userPKs)
pk
- the primary key of the roleuserPKs
- the primary keys of the users to be associated with the rolevoid setUsers(long pk, List<User> users)
pk
- the primary key of the roleusers
- the users to be associated with the roleSet<String> getBadColumnNames()
getBadColumnNames
in interface BasePersistence<Role>