Liferay 7.0-ce-b4

com.liferay.portal.service.persistence
Interface RolePersistence

All Superinterfaces:
BasePersistence<Role>

@ProviderType
public interface RolePersistence
extends BasePersistence<Role>

The persistence interface for the role service.

Caching information and settings can be found in portal.properties

See Also:
RolePersistenceImpl, RoleUtil

Method Summary
 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_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_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.
 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)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
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, update, update
 

Method Detail

findByUuid

List<Role> findByUuid(String uuid)
Returns all the roles where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the matching roles

findByUuid

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByUuid

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByUuid

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByUuid_First

Role findByUuid_First(String uuid,
                      OrderByComparator<Role> orderByComparator)
                      throws NoSuchRoleException
Returns the first role in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByUuid_First

Role fetchByUuid_First(String uuid,
                       OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findByUuid_Last

Role findByUuid_Last(String uuid,
                     OrderByComparator<Role> orderByComparator)
                     throws NoSuchRoleException
Returns the last role in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByUuid_Last

Role fetchByUuid_Last(String uuid,
                      OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where uuid = ?.

Parameters:
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findByUuid_PrevAndNext

Role[] findByUuid_PrevAndNext(long roleId,
                              String uuid,
                              OrderByComparator<Role> orderByComparator)
                              throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where uuid = ?.

Parameters:
roleId - the primary key of the current role
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByUuid

List<Role> filterFindByUuid(String uuid)
Returns all the roles that the user has permission to view where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the matching roles that the user has permission to view

filterFindByUuid

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByUuid

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByUuid_PrevAndNext

Role[] filterFindByUuid_PrevAndNext(long roleId,
                                    String uuid,
                                    OrderByComparator<Role> orderByComparator)
                                    throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where uuid = ?.

Parameters:
roleId - the primary key of the current role
uuid - the uuid
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

removeByUuid

void removeByUuid(String uuid)
Removes all the roles where uuid = ? from the database.

Parameters:
uuid - the uuid

countByUuid

int countByUuid(String uuid)
Returns the number of roles where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the number of matching roles

filterCountByUuid

int filterCountByUuid(String uuid)
Returns the number of roles that the user has permission to view where uuid = ?.

Parameters:
uuid - the uuid
Returns:
the number of matching roles that the user has permission to view

findByUuid_C

List<Role> findByUuid_C(String uuid,
                        long companyId)
Returns all the roles where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the matching roles

findByUuid_C

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByUuid_C

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByUuid_C

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 = ?.

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.

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

findByUuid_C_First

Role findByUuid_C_First(String uuid,
                        long companyId,
                        OrderByComparator<Role> orderByComparator)
                        throws NoSuchRoleException
Returns the first role in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByUuid_C_First

Role fetchByUuid_C_First(String uuid,
                         long companyId,
                         OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findByUuid_C_Last

Role findByUuid_C_Last(String uuid,
                       long companyId,
                       OrderByComparator<Role> orderByComparator)
                       throws NoSuchRoleException
Returns the last role in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByUuid_C_Last

Role fetchByUuid_C_Last(String uuid,
                        long companyId,
                        OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findByUuid_C_PrevAndNext

Role[] findByUuid_C_PrevAndNext(long roleId,
                                String uuid,
                                long companyId,
                                OrderByComparator<Role> orderByComparator)
                                throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where uuid = ? and companyId = ?.

Parameters:
roleId - the primary key of the current role
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByUuid_C

List<Role> filterFindByUuid_C(String uuid,
                              long companyId)
Returns all the roles that the user has permission to view where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the matching roles that the user has permission to view

filterFindByUuid_C

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByUuid_C

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByUuid_C_PrevAndNext

Role[] filterFindByUuid_C_PrevAndNext(long roleId,
                                      String uuid,
                                      long companyId,
                                      OrderByComparator<Role> orderByComparator)
                                      throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where uuid = ? and companyId = ?.

Parameters:
roleId - the primary key of the current role
uuid - the uuid
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

removeByUuid_C

void removeByUuid_C(String uuid,
                    long companyId)
Removes all the roles where uuid = ? and companyId = ? from the database.

Parameters:
uuid - the uuid
companyId - the company ID

countByUuid_C

int countByUuid_C(String uuid,
                  long companyId)
Returns the number of roles where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the number of matching roles

filterCountByUuid_C

int filterCountByUuid_C(String uuid,
                        long companyId)
Returns the number of roles that the user has permission to view where uuid = ? and companyId = ?.

Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the number of matching roles that the user has permission to view

findByCompanyId

List<Role> findByCompanyId(long companyId)
Returns all the roles where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching roles

findByCompanyId

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByCompanyId

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByCompanyId

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByCompanyId_First

Role findByCompanyId_First(long companyId,
                           OrderByComparator<Role> orderByComparator)
                           throws NoSuchRoleException
Returns the first role in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByCompanyId_First

Role fetchByCompanyId_First(long companyId,
                            OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findByCompanyId_Last

Role findByCompanyId_Last(long companyId,
                          OrderByComparator<Role> orderByComparator)
                          throws NoSuchRoleException
Returns the last role in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByCompanyId_Last

Role fetchByCompanyId_Last(long companyId,
                           OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where companyId = ?.

Parameters:
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findByCompanyId_PrevAndNext

Role[] findByCompanyId_PrevAndNext(long roleId,
                                   long companyId,
                                   OrderByComparator<Role> orderByComparator)
                                   throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where companyId = ?.

Parameters:
roleId - the primary key of the current role
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByCompanyId

List<Role> filterFindByCompanyId(long companyId)
Returns all the roles that the user has permission to view where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the matching roles that the user has permission to view

filterFindByCompanyId

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByCompanyId

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByCompanyId_PrevAndNext

Role[] filterFindByCompanyId_PrevAndNext(long roleId,
                                         long companyId,
                                         OrderByComparator<Role> orderByComparator)
                                         throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where companyId = ?.

Parameters:
roleId - the primary key of the current role
companyId - the company ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

removeByCompanyId

void removeByCompanyId(long companyId)
Removes all the roles where companyId = ? from the database.

Parameters:
companyId - the company ID

countByCompanyId

int countByCompanyId(long companyId)
Returns the number of roles where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching roles

filterCountByCompanyId

int filterCountByCompanyId(long companyId)
Returns the number of roles that the user has permission to view where companyId = ?.

Parameters:
companyId - the company ID
Returns:
the number of matching roles that the user has permission to view

findByName

List<Role> findByName(String name)
Returns all the roles where name = ?.

Parameters:
name - the name
Returns:
the matching roles

findByName

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByName

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByName

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByName_First

Role findByName_First(String name,
                      OrderByComparator<Role> orderByComparator)
                      throws NoSuchRoleException
Returns the first role in the ordered set where name = ?.

Parameters:
name - the name
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByName_First

Role fetchByName_First(String name,
                       OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where name = ?.

Parameters:
name - the name
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findByName_Last

Role findByName_Last(String name,
                     OrderByComparator<Role> orderByComparator)
                     throws NoSuchRoleException
Returns the last role in the ordered set where name = ?.

Parameters:
name - the name
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByName_Last

Role fetchByName_Last(String name,
                      OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where name = ?.

Parameters:
name - the name
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findByName_PrevAndNext

Role[] findByName_PrevAndNext(long roleId,
                              String name,
                              OrderByComparator<Role> orderByComparator)
                              throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where name = ?.

Parameters:
roleId - the primary key of the current role
name - the name
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByName

List<Role> filterFindByName(String name)
Returns all the roles that the user has permission to view where name = ?.

Parameters:
name - the name
Returns:
the matching roles that the user has permission to view

filterFindByName

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByName

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByName_PrevAndNext

Role[] filterFindByName_PrevAndNext(long roleId,
                                    String name,
                                    OrderByComparator<Role> orderByComparator)
                                    throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where name = ?.

Parameters:
roleId - the primary key of the current role
name - the name
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

removeByName

void removeByName(String name)
Removes all the roles where name = ? from the database.

Parameters:
name - the name

countByName

int countByName(String name)
Returns the number of roles where name = ?.

Parameters:
name - the name
Returns:
the number of matching roles

filterCountByName

int filterCountByName(String name)
Returns the number of roles that the user has permission to view where name = ?.

Parameters:
name - the name
Returns:
the number of matching roles that the user has permission to view

findByType

List<Role> findByType(int type)
Returns all the roles where type = ?.

Parameters:
type - the type
Returns:
the matching roles

findByType

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByType

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByType

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByType_First

Role findByType_First(int type,
                      OrderByComparator<Role> orderByComparator)
                      throws NoSuchRoleException
Returns the first role in the ordered set where type = ?.

Parameters:
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByType_First

Role fetchByType_First(int type,
                       OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where type = ?.

Parameters:
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findByType_Last

Role findByType_Last(int type,
                     OrderByComparator<Role> orderByComparator)
                     throws NoSuchRoleException
Returns the last role in the ordered set where type = ?.

Parameters:
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByType_Last

Role fetchByType_Last(int type,
                      OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where type = ?.

Parameters:
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findByType_PrevAndNext

Role[] findByType_PrevAndNext(long roleId,
                              int type,
                              OrderByComparator<Role> orderByComparator)
                              throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where type = ?.

Parameters:
roleId - the primary key of the current role
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByType

List<Role> filterFindByType(int type)
Returns all the roles that the user has permission to view where type = ?.

Parameters:
type - the type
Returns:
the matching roles that the user has permission to view

filterFindByType

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByType

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByType_PrevAndNext

Role[] filterFindByType_PrevAndNext(long roleId,
                                    int type,
                                    OrderByComparator<Role> orderByComparator)
                                    throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where type = ?.

Parameters:
roleId - the primary key of the current role
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

removeByType

void removeByType(int type)
Removes all the roles where type = ? from the database.

Parameters:
type - the type

countByType

int countByType(int type)
Returns the number of roles where type = ?.

Parameters:
type - the type
Returns:
the number of matching roles

filterCountByType

int filterCountByType(int type)
Returns the number of roles that the user has permission to view where type = ?.

Parameters:
type - the type
Returns:
the number of matching roles that the user has permission to view

findBySubtype

List<Role> findBySubtype(String subtype)
Returns all the roles where subtype = ?.

Parameters:
subtype - the subtype
Returns:
the matching roles

findBySubtype

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findBySubtype

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findBySubtype

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findBySubtype_First

Role findBySubtype_First(String subtype,
                         OrderByComparator<Role> orderByComparator)
                         throws NoSuchRoleException
Returns the first role in the ordered set where subtype = ?.

Parameters:
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchBySubtype_First

Role fetchBySubtype_First(String subtype,
                          OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where subtype = ?.

Parameters:
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findBySubtype_Last

Role findBySubtype_Last(String subtype,
                        OrderByComparator<Role> orderByComparator)
                        throws NoSuchRoleException
Returns the last role in the ordered set where subtype = ?.

Parameters:
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchBySubtype_Last

Role fetchBySubtype_Last(String subtype,
                         OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where subtype = ?.

Parameters:
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findBySubtype_PrevAndNext

Role[] findBySubtype_PrevAndNext(long roleId,
                                 String subtype,
                                 OrderByComparator<Role> orderByComparator)
                                 throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where subtype = ?.

Parameters:
roleId - the primary key of the current role
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindBySubtype

List<Role> filterFindBySubtype(String subtype)
Returns all the roles that the user has permission to view where subtype = ?.

Parameters:
subtype - the subtype
Returns:
the matching roles that the user has permission to view

filterFindBySubtype

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindBySubtype

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindBySubtype_PrevAndNext

Role[] filterFindBySubtype_PrevAndNext(long roleId,
                                       String subtype,
                                       OrderByComparator<Role> orderByComparator)
                                       throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where subtype = ?.

Parameters:
roleId - the primary key of the current role
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

removeBySubtype

void removeBySubtype(String subtype)
Removes all the roles where subtype = ? from the database.

Parameters:
subtype - the subtype

countBySubtype

int countBySubtype(String subtype)
Returns the number of roles where subtype = ?.

Parameters:
subtype - the subtype
Returns:
the number of matching roles

filterCountBySubtype

int filterCountBySubtype(String subtype)
Returns the number of roles that the user has permission to view where subtype = ?.

Parameters:
subtype - the subtype
Returns:
the number of matching roles that the user has permission to view

findByC_N

Role findByC_N(long companyId,
               String name)
               throws NoSuchRoleException
Returns the role where companyId = ? and name = ? or throws a NoSuchRoleException if it could not be found.

Parameters:
companyId - the company ID
name - the name
Returns:
the matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByC_N

Role fetchByC_N(long companyId,
                String name)
Returns the role where companyId = ? and name = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
companyId - the company ID
name - the name
Returns:
the matching role, or null if a matching role could not be found

fetchByC_N

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.

Parameters:
companyId - the company ID
name - the name
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the matching role, or null if a matching role could not be found

removeByC_N

Role removeByC_N(long companyId,
                 String name)
                 throws NoSuchRoleException
Removes the role where companyId = ? and name = ? from the database.

Parameters:
companyId - the company ID
name - the name
Returns:
the role that was removed
Throws:
NoSuchRoleException

countByC_N

int countByC_N(long companyId,
               String name)
Returns the number of roles where companyId = ? and name = ?.

Parameters:
companyId - the company ID
name - the name
Returns:
the number of matching roles

findByC_T

List<Role> findByC_T(long companyId,
                     int type)
Returns all the roles where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
Returns:
the matching roles

findByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByC_T

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 = ?.

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.

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

findByC_T_First

Role findByC_T_First(long companyId,
                     int type,
                     OrderByComparator<Role> orderByComparator)
                     throws NoSuchRoleException
Returns the first role in the ordered set where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByC_T_First

Role fetchByC_T_First(long companyId,
                      int type,
                      OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findByC_T_Last

Role findByC_T_Last(long companyId,
                    int type,
                    OrderByComparator<Role> orderByComparator)
                    throws NoSuchRoleException
Returns the last role in the ordered set where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByC_T_Last

Role fetchByC_T_Last(long companyId,
                     int type,
                     OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findByC_T_PrevAndNext

Role[] findByC_T_PrevAndNext(long roleId,
                             long companyId,
                             int type,
                             OrderByComparator<Role> orderByComparator)
                             throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where companyId = ? and type = ?.

Parameters:
roleId - the primary key of the current role
companyId - the company ID
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByC_T

List<Role> filterFindByC_T(long companyId,
                           int type)
Returns all the roles that the user has permission to view where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
Returns:
the matching roles that the user has permission to view

filterFindByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByC_T_PrevAndNext

Role[] filterFindByC_T_PrevAndNext(long roleId,
                                   long companyId,
                                   int type,
                                   OrderByComparator<Role> orderByComparator)
                                   throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where companyId = ? and type = ?.

Parameters:
roleId - the primary key of the current role
companyId - the company ID
type - the type
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByC_T

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

Parameters:
companyId - the company ID
types - the types
Returns:
the matching roles that the user has permission to view

filterFindByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByC_T

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByC_T

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.

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.

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

removeByC_T

void removeByC_T(long companyId,
                 int type)
Removes all the roles where companyId = ? and type = ? from the database.

Parameters:
companyId - the company ID
type - the type

countByC_T

int countByC_T(long companyId,
               int type)
Returns the number of roles where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
Returns:
the number of matching roles

countByC_T

int countByC_T(long companyId,
               int[] types)
Returns the number of roles where companyId = ? and type = any ?.

Parameters:
companyId - the company ID
types - the types
Returns:
the number of matching roles

filterCountByC_T

int filterCountByC_T(long companyId,
                     int type)
Returns the number of roles that the user has permission to view where companyId = ? and type = ?.

Parameters:
companyId - the company ID
type - the type
Returns:
the number of matching roles that the user has permission to view

filterCountByC_T

int filterCountByC_T(long companyId,
                     int[] types)
Returns the number of roles that the user has permission to view where companyId = ? and type = any ?.

Parameters:
companyId - the company ID
types - the types
Returns:
the number of matching roles that the user has permission to view

findByT_S

List<Role> findByT_S(int type,
                     String subtype)
Returns all the roles where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
Returns:
the matching roles

findByT_S

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByT_S

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findByT_S

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 = ?.

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.

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

findByT_S_First

Role findByT_S_First(int type,
                     String subtype,
                     OrderByComparator<Role> orderByComparator)
                     throws NoSuchRoleException
Returns the first role in the ordered set where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByT_S_First

Role fetchByT_S_First(int type,
                      String subtype,
                      OrderByComparator<Role> orderByComparator)
Returns the first role in the ordered set where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching role, or null if a matching role could not be found

findByT_S_Last

Role findByT_S_Last(int type,
                    String subtype,
                    OrderByComparator<Role> orderByComparator)
                    throws NoSuchRoleException
Returns the last role in the ordered set where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByT_S_Last

Role fetchByT_S_Last(int type,
                     String subtype,
                     OrderByComparator<Role> orderByComparator)
Returns the last role in the ordered set where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching role, or null if a matching role could not be found

findByT_S_PrevAndNext

Role[] findByT_S_PrevAndNext(long roleId,
                             int type,
                             String subtype,
                             OrderByComparator<Role> orderByComparator)
                             throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set where type = ? and subtype = ?.

Parameters:
roleId - the primary key of the current role
type - the type
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

filterFindByT_S

List<Role> filterFindByT_S(int type,
                           String subtype)
Returns all the roles that the user has permission to view where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
Returns:
the matching roles that the user has permission to view

filterFindByT_S

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByT_S

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

filterFindByT_S_PrevAndNext

Role[] filterFindByT_S_PrevAndNext(long roleId,
                                   int type,
                                   String subtype,
                                   OrderByComparator<Role> orderByComparator)
                                   throws NoSuchRoleException
Returns the roles before and after the current role in the ordered set of roles that the user has permission to view where type = ? and subtype = ?.

Parameters:
roleId - the primary key of the current role
type - the type
subtype - the subtype
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

removeByT_S

void removeByT_S(int type,
                 String subtype)
Removes all the roles where type = ? and subtype = ? from the database.

Parameters:
type - the type
subtype - the subtype

countByT_S

int countByT_S(int type,
               String subtype)
Returns the number of roles where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
Returns:
the number of matching roles

filterCountByT_S

int filterCountByT_S(int type,
                     String subtype)
Returns the number of roles that the user has permission to view where type = ? and subtype = ?.

Parameters:
type - the type
subtype - the subtype
Returns:
the number of matching roles that the user has permission to view

findByC_C_C

Role findByC_C_C(long companyId,
                 long classNameId,
                 long classPK)
                 throws NoSuchRoleException
Returns the role where companyId = ? and classNameId = ? and classPK = ? or throws a NoSuchRoleException if it could not be found.

Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
Returns:
the matching role
Throws:
NoSuchRoleException - if a matching role could not be found

fetchByC_C_C

Role fetchByC_C_C(long companyId,
                  long classNameId,
                  long classPK)
Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
Returns:
the matching role, or null if a matching role could not be found

fetchByC_C_C

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.

Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the matching role, or null if a matching role could not be found

removeByC_C_C

Role removeByC_C_C(long companyId,
                   long classNameId,
                   long classPK)
                   throws NoSuchRoleException
Removes the role where companyId = ? and classNameId = ? and classPK = ? from the database.

Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
Returns:
the role that was removed
Throws:
NoSuchRoleException

countByC_C_C

int countByC_C_C(long companyId,
                 long classNameId,
                 long classPK)
Returns the number of roles where companyId = ? and classNameId = ? and classPK = ?.

Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
Returns:
the number of matching roles

cacheResult

void cacheResult(Role role)
Caches the role in the entity cache if it is enabled.

Parameters:
role - the role

cacheResult

void cacheResult(List<Role> roles)
Caches the roles in the entity cache if it is enabled.

Parameters:
roles - the roles

create

Role create(long roleId)
Creates a new role with the primary key. Does not add the role to the database.

Parameters:
roleId - the primary key for the new role
Returns:
the new role

remove

Role remove(long roleId)
            throws NoSuchRoleException
Removes the role with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
roleId - the primary key of the role
Returns:
the role that was removed
Throws:
NoSuchRoleException - if a role with the primary key could not be found

updateImpl

Role updateImpl(Role role)

findByPrimaryKey

Role findByPrimaryKey(long roleId)
                      throws NoSuchRoleException
Returns the role with the primary key or throws a NoSuchRoleException if it could not be found.

Parameters:
roleId - the primary key of the role
Returns:
the role
Throws:
NoSuchRoleException - if a role with the primary key could not be found

fetchByPrimaryKey

Role fetchByPrimaryKey(long roleId)
Returns the role with the primary key or returns null if it could not be found.

Parameters:
roleId - the primary key of the role
Returns:
the role, or null if a role with the primary key could not be found

fetchByPrimaryKeys

Map<Serializable,Role> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
Specified by:
fetchByPrimaryKeys in interface BasePersistence<Role>

findAll

List<Role> findAll()
Returns all the roles.

Returns:
the roles

findAll

List<Role> findAll(int start,
                   int end)
Returns a range of all the roles.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findAll

List<Role> findAll(int start,
                   int end,
                   OrderByComparator<Role> orderByComparator)
Returns an ordered range of all the roles.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

findAll

List<Role> findAll(int start,
                   int end,
                   OrderByComparator<Role> orderByComparator,
                   boolean retrieveFromCache)
Returns an ordered range of all the roles.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

removeAll

void removeAll()
Removes all the roles from the database.


countAll

int countAll()
Returns the number of roles.

Returns:
the number of roles

getGroupPrimaryKeys

long[] getGroupPrimaryKeys(long pk)
Returns the primaryKeys of groups associated with the role.

Parameters:
pk - the primary key of the role
Returns:
long[] of the primaryKeys of groups associated with the role

getGroups

List<Group> getGroups(long pk)
Returns all the groups associated with the role.

Parameters:
pk - the primary key of the role
Returns:
the groups associated with the role

getGroups

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

getGroups

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

getGroupsSize

int getGroupsSize(long pk)
Returns the number of groups associated with the role.

Parameters:
pk - the primary key of the role
Returns:
the number of groups associated with the role

containsGroup

boolean containsGroup(long pk,
                      long groupPK)
Returns true if the group is associated with the role.

Parameters:
pk - the primary key of the role
groupPK - the primary key of the group
Returns:
true if the group is associated with the role; false otherwise

containsGroups

boolean containsGroups(long pk)
Returns true if the role has any groups associated with it.

Parameters:
pk - the primary key of the role to check for associations with groups
Returns:
true if the role has any groups associated with it; false otherwise

addGroup

void addGroup(long pk,
              long groupPK)
Adds an association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPK - the primary key of the group

addGroup

void addGroup(long pk,
              Group group)
Adds an association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
group - the group

addGroups

void addGroups(long pk,
               long[] groupPKs)
Adds an association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups

addGroups

void addGroups(long pk,
               List<Group> groups)
Adds an association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groups - the groups

clearGroups

void clearGroups(long pk)
Clears all associations between the role and its groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to clear the associated groups from

removeGroup

void removeGroup(long pk,
                 long groupPK)
Removes the association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPK - the primary key of the group

removeGroup

void removeGroup(long pk,
                 Group group)
Removes the association between the role and the group. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
group - the group

removeGroups

void removeGroups(long pk,
                  long[] groupPKs)
Removes the association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups

removeGroups

void removeGroups(long pk,
                  List<Group> groups)
Removes the association between the role and the groups. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groups - the groups

setGroups

void setGroups(long pk,
               long[] groupPKs)
Sets the groups associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups to be associated with the role

setGroups

void setGroups(long pk,
               List<Group> groups)
Sets the groups associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
groups - the groups to be associated with the role

getUserPrimaryKeys

long[] getUserPrimaryKeys(long pk)
Returns the primaryKeys of users associated with the role.

Parameters:
pk - the primary key of the role
Returns:
long[] of the primaryKeys of users associated with the role

getUsers

List<User> getUsers(long pk)
Returns all the users associated with the role.

Parameters:
pk - the primary key of the role
Returns:
the users associated with the role

getUsers

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

getUsers

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

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent 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.

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

getUsersSize

int getUsersSize(long pk)
Returns the number of users associated with the role.

Parameters:
pk - the primary key of the role
Returns:
the number of users associated with the role

containsUser

boolean containsUser(long pk,
                     long userPK)
Returns true if the user is associated with the role.

Parameters:
pk - the primary key of the role
userPK - the primary key of the user
Returns:
true if the user is associated with the role; false otherwise

containsUsers

boolean containsUsers(long pk)
Returns true if the role has any users associated with it.

Parameters:
pk - the primary key of the role to check for associations with users
Returns:
true if the role has any users associated with it; false otherwise

addUser

void addUser(long pk,
             long userPK)
Adds an association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPK - the primary key of the user

addUser

void addUser(long pk,
             User user)
Adds an association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
user - the user

addUsers

void addUsers(long pk,
              long[] userPKs)
Adds an association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users

addUsers

void addUsers(long pk,
              List<User> users)
Adds an association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
users - the users

clearUsers

void clearUsers(long pk)
Clears all associations between the role and its users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role to clear the associated users from

removeUser

void removeUser(long pk,
                long userPK)
Removes the association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPK - the primary key of the user

removeUser

void removeUser(long pk,
                User user)
Removes the association between the role and the user. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
user - the user

removeUsers

void removeUsers(long pk,
                 long[] userPKs)
Removes the association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users

removeUsers

void removeUsers(long pk,
                 List<User> users)
Removes the association between the role and the users. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
users - the users

setUsers

void setUsers(long pk,
              long[] userPKs)
Sets the users associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users to be associated with the role

setUsers

void setUsers(long pk,
              List<User> users)
Sets the users associated with the role, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.

Parameters:
pk - the primary key of the role
users - the users to be associated with the role

getBadColumnNames

Set<String> getBadColumnNames()
Specified by:
getBadColumnNames in interface BasePersistence<Role>

Liferay 7.0-ce-b4