Liferay 6.2-ce-ga5

com.liferay.portal.service.persistence
Class RolePersistenceImpl

java.lang.Object
  extended by com.liferay.portal.service.persistence.impl.BasePersistenceImpl<Role>
      extended by com.liferay.portal.service.persistence.RolePersistenceImpl
All Implemented Interfaces:
SessionFactory, BasePersistence<Role>, RolePersistence

public class RolePersistenceImpl
extends BasePersistenceImpl<Role>
implements RolePersistence

The persistence implementation for the role service.

Caching information and settings can be found in portal.properties

See Also:
RolePersistence, RoleUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Field Summary
static String FINDER_CLASS_NAME_ENTITY
           
static String FINDER_CLASS_NAME_LIST_WITH_PAGINATION
           
static String FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION
           
static FinderPath FINDER_PATH_COUNT_ALL
           
static FinderPath FINDER_PATH_COUNT_BY_C_C_C
           
static FinderPath FINDER_PATH_COUNT_BY_C_N
           
static FinderPath FINDER_PATH_COUNT_BY_C_T
           
static FinderPath FINDER_PATH_COUNT_BY_COMPANYID
           
static FinderPath FINDER_PATH_COUNT_BY_NAME
           
static FinderPath FINDER_PATH_COUNT_BY_SUBTYPE
           
static FinderPath FINDER_PATH_COUNT_BY_T_S
           
static FinderPath FINDER_PATH_COUNT_BY_TYPE
           
static FinderPath FINDER_PATH_COUNT_BY_UUID
           
static FinderPath FINDER_PATH_COUNT_BY_UUID_C
           
static FinderPath FINDER_PATH_FETCH_BY_C_C_C
           
static FinderPath FINDER_PATH_FETCH_BY_C_N
           
static FinderPath FINDER_PATH_WITH_PAGINATION_COUNT_BY_C_T
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_ALL
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_C_T
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_COMPANYID
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_NAME
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_SUBTYPE
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_T_S
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_TYPE
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID
           
static FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID_C
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_C_T
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_NAME
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_SUBTYPE
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_T_S
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_TYPE
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID
           
static FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C
           
protected  GroupPersistence groupPersistence
           
protected  TableMapper<Role,Group> roleToGroupTableMapper
           
protected  TableMapper<Role,User> roleToUserTableMapper
           
protected  UserPersistence userPersistence
           
 
Fields inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl
COUNT_COLUMN_NAME, FINDER_ARGS_EMPTY, listeners, ORDER_BY_ASC, ORDER_BY_ASC_HAS_NEXT, ORDER_BY_CLAUSE, ORDER_BY_DESC, ORDER_BY_DESC_HAS_NEXT, WHERE_AND, WHERE_GREATER_THAN, WHERE_GREATER_THAN_HAS_NEXT, WHERE_LESSER_THAN, WHERE_LESSER_THAN_HAS_NEXT, WHERE_OR
 
Constructor Summary
RolePersistenceImpl()
           
 
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 afterPropertiesSet()
          Initializes the role persistence.
 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.
protected  void cacheUniqueFindersCache(Role role)
           
 void clearCache()
          Clears the cache for all roles.
 void clearCache(List<Role> roles)
          Clears the cache for a List instances of this model.
 void clearCache(Role role)
          Clears the cache for the role.
 void clearGroups(long pk)
          Clears all associations between the role and its groups.
protected  void clearUniqueFindersCache(Role role)
           
 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.
 void destroy()
           
 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 orderByComparator)
          Returns the first role in the ordered set where companyId = ? and type = ?.
 Role fetchByC_T_Last(long companyId, int type, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where companyId = ? and type = ?.
 Role fetchByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where companyId = ?.
 Role fetchByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where companyId = ?.
 Role fetchByName_First(String name, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where name = ?.
 Role fetchByName_Last(String name, OrderByComparator 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.
 Role fetchByPrimaryKey(Serializable primaryKey)
          Returns the role with the primary key or returns null if it could not be found.
 Role fetchBySubtype_First(String subtype, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where subtype = ?.
 Role fetchBySubtype_Last(String subtype, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where subtype = ?.
 Role fetchByT_S_First(int type, String subtype, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where type = ? and subtype = ?.
 Role fetchByT_S_Last(int type, String subtype, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where type = ? and subtype = ?.
 Role fetchByType_First(int type, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where type = ?.
 Role fetchByType_Last(int type, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where type = ?.
 Role fetchByUuid_C_First(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where uuid = ? and companyId = ?.
 Role fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where uuid = ? and companyId = ?.
 Role fetchByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where uuid = ?.
 Role fetchByUuid_Last(String uuid, OrderByComparator 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 orderByComparator)
          Returns an ordered range of all the roles that the user has permissions to view where uuid = ?.
protected  Role filterGetByC_T_PrevAndNext(Session session, Role role, long companyId, int type, OrderByComparator orderByComparator, boolean previous)
           
protected  Role filterGetByCompanyId_PrevAndNext(Session session, Role role, long companyId, OrderByComparator orderByComparator, boolean previous)
           
protected  Role filterGetByName_PrevAndNext(Session session, Role role, String name, OrderByComparator orderByComparator, boolean previous)
           
protected  Role filterGetBySubtype_PrevAndNext(Session session, Role role, String subtype, OrderByComparator orderByComparator, boolean previous)
           
protected  Role filterGetByT_S_PrevAndNext(Session session, Role role, int type, String subtype, OrderByComparator orderByComparator, boolean previous)
           
protected  Role filterGetByType_PrevAndNext(Session session, Role role, int type, OrderByComparator orderByComparator, boolean previous)
           
protected  Role filterGetByUuid_C_PrevAndNext(Session session, Role role, String uuid, long companyId, OrderByComparator orderByComparator, boolean previous)
           
protected  Role filterGetByUuid_PrevAndNext(Session session, Role role, String uuid, OrderByComparator orderByComparator, boolean previous)
           
 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 orderByComparator)
          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 orderByComparator)
          Returns the first role in the ordered set where companyId = ? and type = ?.
 Role findByC_T_Last(long companyId, int type, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where companyId = ? and type = ?.
 Role[] findByC_T_PrevAndNext(long roleId, long companyId, int type, OrderByComparator 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 orderByComparator)
          Returns an ordered range of all the roles where companyId = ? and type = any ?.
 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 orderByComparator)
          Returns an ordered range of all the roles where companyId = ? and type = ?.
 Role findByCompanyId_First(long companyId, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where companyId = ?.
 Role findByCompanyId_Last(long companyId, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where companyId = ?.
 Role[] findByCompanyId_PrevAndNext(long roleId, long companyId, OrderByComparator 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 orderByComparator)
          Returns an ordered range of all the roles where companyId = ?.
 Role findByName_First(String name, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where name = ?.
 Role findByName_Last(String name, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where name = ?.
 Role[] findByName_PrevAndNext(long roleId, String name, OrderByComparator 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 orderByComparator)
          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 findByPrimaryKey(Serializable primaryKey)
          Returns the role with the primary key or throws a NoSuchModelException if it could not be found.
 Role findBySubtype_First(String subtype, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where subtype = ?.
 Role findBySubtype_Last(String subtype, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where subtype = ?.
 Role[] findBySubtype_PrevAndNext(long roleId, String subtype, OrderByComparator 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 orderByComparator)
          Returns an ordered range of all the roles where subtype = ?.
 Role findByT_S_First(int type, String subtype, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where type = ? and subtype = ?.
 Role findByT_S_Last(int type, String subtype, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where type = ? and subtype = ?.
 Role[] findByT_S_PrevAndNext(long roleId, int type, String subtype, OrderByComparator 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 orderByComparator)
          Returns an ordered range of all the roles where type = ? and subtype = ?.
 Role findByType_First(int type, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where type = ?.
 Role findByType_Last(int type, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where type = ?.
 Role[] findByType_PrevAndNext(long roleId, int type, OrderByComparator 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 orderByComparator)
          Returns an ordered range of all the roles where type = ?.
 Role findByUuid_C_First(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where uuid = ? and companyId = ?.
 Role findByUuid_C_Last(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where uuid = ? and companyId = ?.
 Role[] findByUuid_C_PrevAndNext(long roleId, String uuid, long companyId, OrderByComparator 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 orderByComparator)
          Returns an ordered range of all the roles where uuid = ? and companyId = ?.
 Role findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first role in the ordered set where uuid = ?.
 Role findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Returns the last role in the ordered set where uuid = ?.
 Role[] findByUuid_PrevAndNext(long roleId, String uuid, OrderByComparator 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 orderByComparator)
          Returns an ordered range of all the roles where uuid = ?.
protected  Set<String> getBadColumnNames()
           
protected  Role getByC_T_PrevAndNext(Session session, Role role, long companyId, int type, OrderByComparator orderByComparator, boolean previous)
           
protected  Role getByCompanyId_PrevAndNext(Session session, Role role, long companyId, OrderByComparator orderByComparator, boolean previous)
           
protected  Role getByName_PrevAndNext(Session session, Role role, String name, OrderByComparator orderByComparator, boolean previous)
           
protected  Role getBySubtype_PrevAndNext(Session session, Role role, String subtype, OrderByComparator orderByComparator, boolean previous)
           
protected  Role getByT_S_PrevAndNext(Session session, Role role, int type, String subtype, OrderByComparator orderByComparator, boolean previous)
           
protected  Role getByType_PrevAndNext(Session session, Role role, int type, OrderByComparator orderByComparator, boolean previous)
           
protected  Role getByUuid_C_PrevAndNext(Session session, Role role, String uuid, long companyId, OrderByComparator orderByComparator, boolean previous)
           
protected  Role getByUuid_PrevAndNext(Session session, Role role, String uuid, OrderByComparator orderByComparator, boolean previous)
           
 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 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.
 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 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.
 Role remove(Serializable primaryKey)
          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.
protected  Role removeImpl(Role role)
          Removes the model instance from the database.
 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.
protected  Role toUnwrappedModel(Role role)
           
 Role updateImpl(Role role)
          Updates the model instance in the database or adds it if it does not yet exist.
 
Methods inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl
appendOrderByComparator, appendOrderByComparator, closeSession, countWithDynamicQuery, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getClassLoader, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openNewSession, openSession, processException, registerListener, remove, removeConjunction, setDataSource, setModelClass, setSessionFactory, unregisterListener, update, update, update, update, updateImpl
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
closeSession, countWithDynamicQuery, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, setDataSource, unregisterListener, update, update, update, update
 

Field Detail

FINDER_CLASS_NAME_ENTITY

public static final String FINDER_CLASS_NAME_ENTITY

FINDER_CLASS_NAME_LIST_WITH_PAGINATION

public static final String FINDER_CLASS_NAME_LIST_WITH_PAGINATION

FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION

public static final String FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION

FINDER_PATH_WITH_PAGINATION_FIND_ALL

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_ALL

FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL

FINDER_PATH_COUNT_ALL

public static final FinderPath FINDER_PATH_COUNT_ALL

FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID

FINDER_PATH_COUNT_BY_UUID

public static final FinderPath FINDER_PATH_COUNT_BY_UUID

FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID_C

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID_C

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C

FINDER_PATH_COUNT_BY_UUID_C

public static final FinderPath FINDER_PATH_COUNT_BY_UUID_C

FINDER_PATH_WITH_PAGINATION_FIND_BY_COMPANYID

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_COMPANYID

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID

FINDER_PATH_COUNT_BY_COMPANYID

public static final FinderPath FINDER_PATH_COUNT_BY_COMPANYID

FINDER_PATH_WITH_PAGINATION_FIND_BY_NAME

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_NAME

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_NAME

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_NAME

FINDER_PATH_COUNT_BY_NAME

public static final FinderPath FINDER_PATH_COUNT_BY_NAME

FINDER_PATH_WITH_PAGINATION_FIND_BY_TYPE

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_TYPE

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_TYPE

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_TYPE

FINDER_PATH_COUNT_BY_TYPE

public static final FinderPath FINDER_PATH_COUNT_BY_TYPE

FINDER_PATH_WITH_PAGINATION_FIND_BY_SUBTYPE

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_SUBTYPE

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_SUBTYPE

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_SUBTYPE

FINDER_PATH_COUNT_BY_SUBTYPE

public static final FinderPath FINDER_PATH_COUNT_BY_SUBTYPE

FINDER_PATH_FETCH_BY_C_N

public static final FinderPath FINDER_PATH_FETCH_BY_C_N

FINDER_PATH_COUNT_BY_C_N

public static final FinderPath FINDER_PATH_COUNT_BY_C_N

FINDER_PATH_WITH_PAGINATION_FIND_BY_C_T

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_C_T

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_C_T

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_C_T

FINDER_PATH_COUNT_BY_C_T

public static final FinderPath FINDER_PATH_COUNT_BY_C_T

FINDER_PATH_WITH_PAGINATION_COUNT_BY_C_T

public static final FinderPath FINDER_PATH_WITH_PAGINATION_COUNT_BY_C_T

FINDER_PATH_WITH_PAGINATION_FIND_BY_T_S

public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_T_S

FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_T_S

public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_T_S

FINDER_PATH_COUNT_BY_T_S

public static final FinderPath FINDER_PATH_COUNT_BY_T_S

FINDER_PATH_FETCH_BY_C_C_C

public static final FinderPath FINDER_PATH_FETCH_BY_C_C_C

FINDER_PATH_COUNT_BY_C_C_C

public static final FinderPath FINDER_PATH_COUNT_BY_C_C_C

groupPersistence

@BeanReference(type=GroupPersistence.class)
protected GroupPersistence groupPersistence

roleToGroupTableMapper

protected TableMapper<Role,Group> roleToGroupTableMapper

userPersistence

@BeanReference(type=UserPersistence.class)
protected UserPersistence userPersistence

roleToUserTableMapper

protected TableMapper<Role,User> roleToUserTableMapper
Constructor Detail

RolePersistenceImpl

public RolePersistenceImpl()
Method Detail

findByUuid

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

Specified by:
findByUuid in interface RolePersistence
Parameters:
uuid - the uuid
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByUuid

public List<Role> findByUuid(String uuid,
                             int start,
                             int end)
                      throws SystemException
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.

Specified by:
findByUuid in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid

public List<Role> findByUuid(String uuid,
                             int start,
                             int end,
                             OrderByComparator orderByComparator)
                      throws SystemException
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.

Specified by:
findByUuid in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid_First

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

Specified by:
findByUuid_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByUuid_First

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

Specified by:
fetchByUuid_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid_Last

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

Specified by:
findByUuid_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByUuid_Last

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

Specified by:
fetchByUuid_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid_PrevAndNext

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

Specified by:
findByUuid_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getByUuid_PrevAndNext

protected Role getByUuid_PrevAndNext(Session session,
                                     Role role,
                                     String uuid,
                                     OrderByComparator orderByComparator,
                                     boolean previous)

filterFindByUuid

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

Specified by:
filterFindByUuid in interface RolePersistence
Parameters:
uuid - the uuid
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByUuid

public List<Role> filterFindByUuid(String uuid,
                                   int start,
                                   int end)
                            throws SystemException
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.

Specified by:
filterFindByUuid in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByUuid

public List<Role> filterFindByUuid(String uuid,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                            throws SystemException
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.

Specified by:
filterFindByUuid in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByUuid_PrevAndNext

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

Specified by:
filterFindByUuid_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetByUuid_PrevAndNext

protected Role filterGetByUuid_PrevAndNext(Session session,
                                           Role role,
                                           String uuid,
                                           OrderByComparator orderByComparator,
                                           boolean previous)

removeByUuid

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

Specified by:
removeByUuid in interface RolePersistence
Parameters:
uuid - the uuid
Throws:
SystemException - if a system exception occurred

countByUuid

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

Specified by:
countByUuid in interface RolePersistence
Parameters:
uuid - the uuid
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountByUuid

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

Specified by:
filterCountByUuid in interface RolePersistence
Parameters:
uuid - the uuid
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByUuid_C

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

Specified by:
findByUuid_C in interface RolePersistence
Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByUuid_C

public List<Role> findByUuid_C(String uuid,
                               long companyId,
                               int start,
                               int end)
                        throws SystemException
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.

Specified by:
findByUuid_C in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid_C

public List<Role> findByUuid_C(String uuid,
                               long companyId,
                               int start,
                               int end,
                               OrderByComparator orderByComparator)
                        throws SystemException
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.

Specified by:
findByUuid_C in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid_C_First

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

Specified by:
findByUuid_C_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByUuid_C_First

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

Specified by:
fetchByUuid_C_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid_C_Last

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

Specified by:
findByUuid_C_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByUuid_C_Last

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

Specified by:
fetchByUuid_C_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByUuid_C_PrevAndNext

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

Specified by:
findByUuid_C_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getByUuid_C_PrevAndNext

protected Role getByUuid_C_PrevAndNext(Session session,
                                       Role role,
                                       String uuid,
                                       long companyId,
                                       OrderByComparator orderByComparator,
                                       boolean previous)

filterFindByUuid_C

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

Specified by:
filterFindByUuid_C in interface RolePersistence
Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByUuid_C

public List<Role> filterFindByUuid_C(String uuid,
                                     long companyId,
                                     int start,
                                     int end)
                              throws SystemException
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.

Specified by:
filterFindByUuid_C in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByUuid_C

public List<Role> filterFindByUuid_C(String uuid,
                                     long companyId,
                                     int start,
                                     int end,
                                     OrderByComparator orderByComparator)
                              throws SystemException
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.

Specified by:
filterFindByUuid_C in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByUuid_C_PrevAndNext

public Role[] filterFindByUuid_C_PrevAndNext(long roleId,
                                             String uuid,
                                             long companyId,
                                             OrderByComparator orderByComparator)
                                      throws NoSuchRoleException,
                                             SystemException
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 = ?.

Specified by:
filterFindByUuid_C_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetByUuid_C_PrevAndNext

protected Role filterGetByUuid_C_PrevAndNext(Session session,
                                             Role role,
                                             String uuid,
                                             long companyId,
                                             OrderByComparator orderByComparator,
                                             boolean previous)

removeByUuid_C

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

Specified by:
removeByUuid_C in interface RolePersistence
Parameters:
uuid - the uuid
companyId - the company ID
Throws:
SystemException - if a system exception occurred

countByUuid_C

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

Specified by:
countByUuid_C in interface RolePersistence
Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountByUuid_C

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

Specified by:
filterCountByUuid_C in interface RolePersistence
Parameters:
uuid - the uuid
companyId - the company ID
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByCompanyId

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

Specified by:
findByCompanyId in interface RolePersistence
Parameters:
companyId - the company ID
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByCompanyId

public List<Role> findByCompanyId(long companyId,
                                  int start,
                                  int end)
                           throws SystemException
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.

Specified by:
findByCompanyId in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByCompanyId

public List<Role> findByCompanyId(long companyId,
                                  int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                           throws SystemException
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.

Specified by:
findByCompanyId in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByCompanyId_First

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

Specified by:
findByCompanyId_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByCompanyId_First

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

Specified by:
fetchByCompanyId_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByCompanyId_Last

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

Specified by:
findByCompanyId_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByCompanyId_Last

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

Specified by:
fetchByCompanyId_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByCompanyId_PrevAndNext

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

Specified by:
findByCompanyId_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getByCompanyId_PrevAndNext

protected Role getByCompanyId_PrevAndNext(Session session,
                                          Role role,
                                          long companyId,
                                          OrderByComparator orderByComparator,
                                          boolean previous)

filterFindByCompanyId

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

Specified by:
filterFindByCompanyId in interface RolePersistence
Parameters:
companyId - the company ID
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByCompanyId

public List<Role> filterFindByCompanyId(long companyId,
                                        int start,
                                        int end)
                                 throws SystemException
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.

Specified by:
filterFindByCompanyId in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByCompanyId

public List<Role> filterFindByCompanyId(long companyId,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
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.

Specified by:
filterFindByCompanyId in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByCompanyId_PrevAndNext

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

Specified by:
filterFindByCompanyId_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetByCompanyId_PrevAndNext

protected Role filterGetByCompanyId_PrevAndNext(Session session,
                                                Role role,
                                                long companyId,
                                                OrderByComparator orderByComparator,
                                                boolean previous)

removeByCompanyId

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

Specified by:
removeByCompanyId in interface RolePersistence
Parameters:
companyId - the company ID
Throws:
SystemException - if a system exception occurred

countByCompanyId

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

Specified by:
countByCompanyId in interface RolePersistence
Parameters:
companyId - the company ID
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountByCompanyId

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

Specified by:
filterCountByCompanyId in interface RolePersistence
Parameters:
companyId - the company ID
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByName

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

Specified by:
findByName in interface RolePersistence
Parameters:
name - the name
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByName

public List<Role> findByName(String name,
                             int start,
                             int end)
                      throws SystemException
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.

Specified by:
findByName in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByName

public List<Role> findByName(String name,
                             int start,
                             int end,
                             OrderByComparator orderByComparator)
                      throws SystemException
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.

Specified by:
findByName in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByName_First

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

Specified by:
findByName_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByName_First

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

Specified by:
fetchByName_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByName_Last

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

Specified by:
findByName_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByName_Last

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

Specified by:
fetchByName_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByName_PrevAndNext

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

Specified by:
findByName_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getByName_PrevAndNext

protected Role getByName_PrevAndNext(Session session,
                                     Role role,
                                     String name,
                                     OrderByComparator orderByComparator,
                                     boolean previous)

filterFindByName

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

Specified by:
filterFindByName in interface RolePersistence
Parameters:
name - the name
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByName

public List<Role> filterFindByName(String name,
                                   int start,
                                   int end)
                            throws SystemException
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.

Specified by:
filterFindByName in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByName

public List<Role> filterFindByName(String name,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                            throws SystemException
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.

Specified by:
filterFindByName in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByName_PrevAndNext

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

Specified by:
filterFindByName_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetByName_PrevAndNext

protected Role filterGetByName_PrevAndNext(Session session,
                                           Role role,
                                           String name,
                                           OrderByComparator orderByComparator,
                                           boolean previous)

removeByName

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

Specified by:
removeByName in interface RolePersistence
Parameters:
name - the name
Throws:
SystemException - if a system exception occurred

countByName

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

Specified by:
countByName in interface RolePersistence
Parameters:
name - the name
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountByName

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

Specified by:
filterCountByName in interface RolePersistence
Parameters:
name - the name
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByType

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

Specified by:
findByType in interface RolePersistence
Parameters:
type - the type
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByType

public List<Role> findByType(int type,
                             int start,
                             int end)
                      throws SystemException
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.

Specified by:
findByType in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByType

public List<Role> findByType(int type,
                             int start,
                             int end,
                             OrderByComparator orderByComparator)
                      throws SystemException
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.

Specified by:
findByType in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByType_First

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

Specified by:
findByType_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByType_First

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

Specified by:
fetchByType_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByType_Last

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

Specified by:
findByType_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByType_Last

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

Specified by:
fetchByType_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByType_PrevAndNext

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

Specified by:
findByType_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getByType_PrevAndNext

protected Role getByType_PrevAndNext(Session session,
                                     Role role,
                                     int type,
                                     OrderByComparator orderByComparator,
                                     boolean previous)

filterFindByType

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

Specified by:
filterFindByType in interface RolePersistence
Parameters:
type - the type
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByType

public List<Role> filterFindByType(int type,
                                   int start,
                                   int end)
                            throws SystemException
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.

Specified by:
filterFindByType in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByType

public List<Role> filterFindByType(int type,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                            throws SystemException
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.

Specified by:
filterFindByType in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByType_PrevAndNext

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

Specified by:
filterFindByType_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetByType_PrevAndNext

protected Role filterGetByType_PrevAndNext(Session session,
                                           Role role,
                                           int type,
                                           OrderByComparator orderByComparator,
                                           boolean previous)

removeByType

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

Specified by:
removeByType in interface RolePersistence
Parameters:
type - the type
Throws:
SystemException - if a system exception occurred

countByType

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

Specified by:
countByType in interface RolePersistence
Parameters:
type - the type
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountByType

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

Specified by:
filterCountByType in interface RolePersistence
Parameters:
type - the type
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findBySubtype

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

Specified by:
findBySubtype in interface RolePersistence
Parameters:
subtype - the subtype
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findBySubtype

public List<Role> findBySubtype(String subtype,
                                int start,
                                int end)
                         throws SystemException
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.

Specified by:
findBySubtype in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findBySubtype

public List<Role> findBySubtype(String subtype,
                                int start,
                                int end,
                                OrderByComparator orderByComparator)
                         throws SystemException
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.

Specified by:
findBySubtype in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findBySubtype_First

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

Specified by:
findBySubtype_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchBySubtype_First

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

Specified by:
fetchBySubtype_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findBySubtype_Last

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

Specified by:
findBySubtype_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchBySubtype_Last

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

Specified by:
fetchBySubtype_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findBySubtype_PrevAndNext

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

Specified by:
findBySubtype_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getBySubtype_PrevAndNext

protected Role getBySubtype_PrevAndNext(Session session,
                                        Role role,
                                        String subtype,
                                        OrderByComparator orderByComparator,
                                        boolean previous)

filterFindBySubtype

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

Specified by:
filterFindBySubtype in interface RolePersistence
Parameters:
subtype - the subtype
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindBySubtype

public List<Role> filterFindBySubtype(String subtype,
                                      int start,
                                      int end)
                               throws SystemException
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.

Specified by:
filterFindBySubtype in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindBySubtype

public List<Role> filterFindBySubtype(String subtype,
                                      int start,
                                      int end,
                                      OrderByComparator orderByComparator)
                               throws SystemException
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.

Specified by:
filterFindBySubtype in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindBySubtype_PrevAndNext

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

Specified by:
filterFindBySubtype_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetBySubtype_PrevAndNext

protected Role filterGetBySubtype_PrevAndNext(Session session,
                                              Role role,
                                              String subtype,
                                              OrderByComparator orderByComparator,
                                              boolean previous)

removeBySubtype

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

Specified by:
removeBySubtype in interface RolePersistence
Parameters:
subtype - the subtype
Throws:
SystemException - if a system exception occurred

countBySubtype

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

Specified by:
countBySubtype in interface RolePersistence
Parameters:
subtype - the subtype
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountBySubtype

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

Specified by:
filterCountBySubtype in interface RolePersistence
Parameters:
subtype - the subtype
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByC_N

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

Specified by:
findByC_N in interface RolePersistence
Parameters:
companyId - the company ID
name - the name
Returns:
the matching role
Throws:
NoSuchRoleException - if a matching role could not be found
SystemException - if a system exception occurred

fetchByC_N

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

Specified by:
fetchByC_N in interface RolePersistence
Parameters:
companyId - the company ID
name - the name
Returns:
the matching role, or null if a matching role could not be found
Throws:
SystemException - if a system exception occurred

fetchByC_N

public Role fetchByC_N(long companyId,
                       String name,
                       boolean retrieveFromCache)
                throws SystemException
Returns the role where companyId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.

Specified by:
fetchByC_N in interface RolePersistence
Parameters:
companyId - the company ID
name - the name
retrieveFromCache - whether to use the finder cache
Returns:
the matching role, or null if a matching role could not be found
Throws:
SystemException - if a system exception occurred

removeByC_N

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

Specified by:
removeByC_N in interface RolePersistence
Parameters:
companyId - the company ID
name - the name
Returns:
the role that was removed
Throws:
SystemException - if a system exception occurred
NoSuchRoleException

countByC_N

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

Specified by:
countByC_N in interface RolePersistence
Parameters:
companyId - the company ID
name - the name
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

findByC_T

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

Specified by:
findByC_T in interface RolePersistence
Parameters:
companyId - the company ID
type - the type
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByC_T

public List<Role> findByC_T(long companyId,
                            int type,
                            int start,
                            int end)
                     throws SystemException
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.

Specified by:
findByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByC_T

public List<Role> findByC_T(long companyId,
                            int type,
                            int start,
                            int end,
                            OrderByComparator orderByComparator)
                     throws SystemException
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.

Specified by:
findByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByC_T_First

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

Specified by:
findByC_T_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByC_T_First

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

Specified by:
fetchByC_T_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByC_T_Last

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

Specified by:
findByC_T_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByC_T_Last

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

Specified by:
fetchByC_T_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByC_T_PrevAndNext

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

Specified by:
findByC_T_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getByC_T_PrevAndNext

protected Role getByC_T_PrevAndNext(Session session,
                                    Role role,
                                    long companyId,
                                    int type,
                                    OrderByComparator orderByComparator,
                                    boolean previous)

filterFindByC_T

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

Specified by:
filterFindByC_T in interface RolePersistence
Parameters:
companyId - the company ID
type - the type
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByC_T

public List<Role> filterFindByC_T(long companyId,
                                  int type,
                                  int start,
                                  int end)
                           throws SystemException
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.

Specified by:
filterFindByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByC_T

public List<Role> filterFindByC_T(long companyId,
                                  int type,
                                  int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                           throws SystemException
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.

Specified by:
filterFindByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByC_T_PrevAndNext

public Role[] filterFindByC_T_PrevAndNext(long roleId,
                                          long companyId,
                                          int type,
                                          OrderByComparator orderByComparator)
                                   throws NoSuchRoleException,
                                          SystemException
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 = ?.

Specified by:
filterFindByC_T_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetByC_T_PrevAndNext

protected Role filterGetByC_T_PrevAndNext(Session session,
                                          Role role,
                                          long companyId,
                                          int type,
                                          OrderByComparator orderByComparator,
                                          boolean previous)

filterFindByC_T

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

Specified by:
filterFindByC_T in interface RolePersistence
Parameters:
companyId - the company ID
types - the types
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByC_T

public List<Role> filterFindByC_T(long companyId,
                                  int[] types,
                                  int start,
                                  int end)
                           throws SystemException
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.

Specified by:
filterFindByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByC_T

public List<Role> filterFindByC_T(long companyId,
                                  int[] types,
                                  int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                           throws SystemException
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.

Specified by:
filterFindByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByC_T

public List<Role> findByC_T(long companyId,
                            int[] types)
                     throws SystemException
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.

Specified by:
findByC_T in interface RolePersistence
Parameters:
companyId - the company ID
types - the types
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByC_T

public List<Role> findByC_T(long companyId,
                            int[] types,
                            int start,
                            int end)
                     throws SystemException
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.

Specified by:
findByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByC_T

public List<Role> findByC_T(long companyId,
                            int[] types,
                            int start,
                            int end,
                            OrderByComparator orderByComparator)
                     throws SystemException
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.

Specified by:
findByC_T in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

removeByC_T

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

Specified by:
removeByC_T in interface RolePersistence
Parameters:
companyId - the company ID
type - the type
Throws:
SystemException - if a system exception occurred

countByC_T

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

Specified by:
countByC_T in interface RolePersistence
Parameters:
companyId - the company ID
type - the type
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

countByC_T

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

Specified by:
countByC_T in interface RolePersistence
Parameters:
companyId - the company ID
types - the types
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountByC_T

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

Specified by:
filterCountByC_T in interface RolePersistence
Parameters:
companyId - the company ID
type - the type
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterCountByC_T

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

Specified by:
filterCountByC_T in interface RolePersistence
Parameters:
companyId - the company ID
types - the types
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByT_S

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

Specified by:
findByT_S in interface RolePersistence
Parameters:
type - the type
subtype - the subtype
Returns:
the matching roles
Throws:
SystemException - if a system exception occurred

findByT_S

public List<Role> findByT_S(int type,
                            String subtype,
                            int start,
                            int end)
                     throws SystemException
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.

Specified by:
findByT_S in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByT_S

public List<Role> findByT_S(int type,
                            String subtype,
                            int start,
                            int end,
                            OrderByComparator orderByComparator)
                     throws SystemException
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.

Specified by:
findByT_S in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByT_S_First

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

Specified by:
findByT_S_First in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByT_S_First

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

Specified by:
fetchByT_S_First in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByT_S_Last

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

Specified by:
findByT_S_Last in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByT_S_Last

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

Specified by:
fetchByT_S_Last in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findByT_S_PrevAndNext

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

Specified by:
findByT_S_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

getByT_S_PrevAndNext

protected Role getByT_S_PrevAndNext(Session session,
                                    Role role,
                                    int type,
                                    String subtype,
                                    OrderByComparator orderByComparator,
                                    boolean previous)

filterFindByT_S

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

Specified by:
filterFindByT_S in interface RolePersistence
Parameters:
type - the type
subtype - the subtype
Returns:
the matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

filterFindByT_S

public List<Role> filterFindByT_S(int type,
                                  String subtype,
                                  int start,
                                  int end)
                           throws SystemException
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.

Specified by:
filterFindByT_S in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByT_S

public List<Role> filterFindByT_S(int type,
                                  String subtype,
                                  int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                           throws SystemException
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.

Specified by:
filterFindByT_S in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

filterFindByT_S_PrevAndNext

public Role[] filterFindByT_S_PrevAndNext(long roleId,
                                          int type,
                                          String subtype,
                                          OrderByComparator orderByComparator)
                                   throws NoSuchRoleException,
                                          SystemException
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 = ?.

Specified by:
filterFindByT_S_PrevAndNext in interface RolePersistence
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
SystemException - if a system exception occurred

filterGetByT_S_PrevAndNext

protected Role filterGetByT_S_PrevAndNext(Session session,
                                          Role role,
                                          int type,
                                          String subtype,
                                          OrderByComparator orderByComparator,
                                          boolean previous)

removeByT_S

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

Specified by:
removeByT_S in interface RolePersistence
Parameters:
type - the type
subtype - the subtype
Throws:
SystemException - if a system exception occurred

countByT_S

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

Specified by:
countByT_S in interface RolePersistence
Parameters:
type - the type
subtype - the subtype
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

filterCountByT_S

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

Specified by:
filterCountByT_S in interface RolePersistence
Parameters:
type - the type
subtype - the subtype
Returns:
the number of matching roles that the user has permission to view
Throws:
SystemException - if a system exception occurred

findByC_C_C

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

Specified by:
findByC_C_C in interface RolePersistence
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
SystemException - if a system exception occurred

fetchByC_C_C

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

Specified by:
fetchByC_C_C in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

fetchByC_C_C

public Role fetchByC_C_C(long companyId,
                         long classNameId,
                         long classPK,
                         boolean retrieveFromCache)
                  throws SystemException
Returns the role where companyId = ? and classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache.

Specified by:
fetchByC_C_C in interface RolePersistence
Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
retrieveFromCache - whether to use the finder cache
Returns:
the matching role, or null if a matching role could not be found
Throws:
SystemException - if a system exception occurred

removeByC_C_C

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

Specified by:
removeByC_C_C in interface RolePersistence
Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
Returns:
the role that was removed
Throws:
SystemException - if a system exception occurred
NoSuchRoleException

countByC_C_C

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

Specified by:
countByC_C_C in interface RolePersistence
Parameters:
companyId - the company ID
classNameId - the class name ID
classPK - the class p k
Returns:
the number of matching roles
Throws:
SystemException - if a system exception occurred

cacheResult

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

Specified by:
cacheResult in interface RolePersistence
Parameters:
role - the role

cacheResult

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

Specified by:
cacheResult in interface RolePersistence
Parameters:
roles - the roles

clearCache

public void clearCache()
Clears the cache for all roles.

The EntityCache and FinderCache are both cleared by this method.

Specified by:
clearCache in interface BasePersistence<Role>
Overrides:
clearCache in class BasePersistenceImpl<Role>

clearCache

public void clearCache(Role role)
Clears the cache for the role.

The EntityCache and FinderCache are both cleared by this method.

Specified by:
clearCache in interface BasePersistence<Role>
Overrides:
clearCache in class BasePersistenceImpl<Role>
Parameters:
role - the instance of this model to clear the cache for

clearCache

public void clearCache(List<Role> roles)
Description copied from interface: BasePersistence
Clears the cache for a List instances of this model.

The EntityCache and FinderCache are both cleared by this method.

Specified by:
clearCache in interface BasePersistence<Role>
Overrides:
clearCache in class BasePersistenceImpl<Role>
Parameters:
roles - the List instances of this model to clear the cache for

cacheUniqueFindersCache

protected void cacheUniqueFindersCache(Role role)

clearUniqueFindersCache

protected void clearUniqueFindersCache(Role role)

create

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

Specified by:
create in interface RolePersistence
Parameters:
roleId - the primary key for the new role
Returns:
the new role

remove

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

Specified by:
remove in interface RolePersistence
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
SystemException - if a system exception occurred

remove

public Role remove(Serializable primaryKey)
            throws NoSuchRoleException,
                   SystemException
Removes the role with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
remove in interface BasePersistence<Role>
Overrides:
remove in class BasePersistenceImpl<Role>
Parameters:
primaryKey - 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
SystemException - if a system exception occurred

removeImpl

protected Role removeImpl(Role role)
                   throws SystemException
Description copied from class: BasePersistenceImpl
Removes the model instance from the database. BasePersistenceImpl.update(BaseModel, boolean) depends on this method to implement the remove operation; it only notifies the model listeners.

Overrides:
removeImpl in class BasePersistenceImpl<Role>
Parameters:
role - the model instance to remove
Returns:
the model instance that was removed
Throws:
SystemException - if a system exception occurred

updateImpl

public Role updateImpl(Role role)
                throws SystemException
Description copied from class: BasePersistenceImpl
Updates the model instance in the database or adds it if it does not yet exist. BasePersistenceImpl.remove(BaseModel) depends on this method to implement the update operation; it only notifies the model listeners.

Specified by:
updateImpl in interface RolePersistence
Overrides:
updateImpl in class BasePersistenceImpl<Role>
Parameters:
role - the model instance to update
Returns:
the model instance that was updated
Throws:
SystemException - if a system exception occurred

toUnwrappedModel

protected Role toUnwrappedModel(Role role)

findByPrimaryKey

public Role findByPrimaryKey(Serializable primaryKey)
                      throws NoSuchRoleException,
                             SystemException
Returns the role with the primary key or throws a NoSuchModelException if it could not be found.

Specified by:
findByPrimaryKey in interface BasePersistence<Role>
Overrides:
findByPrimaryKey in class BasePersistenceImpl<Role>
Parameters:
primaryKey - the primary key of the role
Returns:
the role
Throws:
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred

findByPrimaryKey

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

Specified by:
findByPrimaryKey in interface RolePersistence
Parameters:
roleId - the primary key of the role
Returns:
the role
Throws:
NoSuchRoleException - if a role with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public Role fetchByPrimaryKey(Serializable primaryKey)
                       throws SystemException
Returns the role with the primary key or returns null if it could not be found.

Specified by:
fetchByPrimaryKey in interface BasePersistence<Role>
Overrides:
fetchByPrimaryKey in class BasePersistenceImpl<Role>
Parameters:
primaryKey - the primary key of the role
Returns:
the role, or null if a role with the primary key could not be found
Throws:
SystemException - if a system exception occurred

fetchByPrimaryKey

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

Specified by:
fetchByPrimaryKey in interface RolePersistence
Parameters:
roleId - the primary key of the role
Returns:
the role, or null if a role with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

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

Specified by:
findAll in interface RolePersistence
Returns:
the roles
Throws:
SystemException - if a system exception occurred

findAll

public List<Role> findAll(int start,
                          int end)
                   throws SystemException
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.

Specified by:
findAll in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

findAll

public List<Role> findAll(int start,
                          int end,
                          OrderByComparator orderByComparator)
                   throws SystemException
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.

Specified by:
findAll in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

removeAll

public void removeAll()
               throws SystemException
Removes all the roles from the database.

Specified by:
removeAll in interface RolePersistence
Throws:
SystemException - if a system exception occurred

countAll

public int countAll()
             throws SystemException
Returns the number of roles.

Specified by:
countAll in interface RolePersistence
Returns:
the number of roles
Throws:
SystemException - if a system exception occurred

getGroups

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

Specified by:
getGroups in interface RolePersistence
Parameters:
pk - the primary key of the role
Returns:
the groups associated with the role
Throws:
SystemException - if a system exception occurred

getGroups

public List<Group> getGroups(long pk,
                             int start,
                             int end)
                      throws SystemException
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.

Specified by:
getGroups in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

getGroups

public List<Group> getGroups(long pk,
                             int start,
                             int end,
                             OrderByComparator orderByComparator)
                      throws SystemException
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.

Specified by:
getGroups in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

getGroupsSize

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

Specified by:
getGroupsSize in interface RolePersistence
Parameters:
pk - the primary key of the role
Returns:
the number of groups associated with the role
Throws:
SystemException - if a system exception occurred

containsGroup

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

Specified by:
containsGroup in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

containsGroups

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

Specified by:
containsGroups in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

addGroup

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

Specified by:
addGroup in interface RolePersistence
Parameters:
pk - the primary key of the role
groupPK - the primary key of the group
Throws:
SystemException - if a system exception occurred

addGroup

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

Specified by:
addGroup in interface RolePersistence
Parameters:
pk - the primary key of the role
group - the group
Throws:
SystemException - if a system exception occurred

addGroups

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

Specified by:
addGroups in interface RolePersistence
Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups
Throws:
SystemException - if a system exception occurred

addGroups

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

Specified by:
addGroups in interface RolePersistence
Parameters:
pk - the primary key of the role
groups - the groups
Throws:
SystemException - if a system exception occurred

clearGroups

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

Specified by:
clearGroups in interface RolePersistence
Parameters:
pk - the primary key of the role to clear the associated groups from
Throws:
SystemException - if a system exception occurred

removeGroup

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

Specified by:
removeGroup in interface RolePersistence
Parameters:
pk - the primary key of the role
groupPK - the primary key of the group
Throws:
SystemException - if a system exception occurred

removeGroup

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

Specified by:
removeGroup in interface RolePersistence
Parameters:
pk - the primary key of the role
group - the group
Throws:
SystemException - if a system exception occurred

removeGroups

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

Specified by:
removeGroups in interface RolePersistence
Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups
Throws:
SystemException - if a system exception occurred

removeGroups

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

Specified by:
removeGroups in interface RolePersistence
Parameters:
pk - the primary key of the role
groups - the groups
Throws:
SystemException - if a system exception occurred

setGroups

public void setGroups(long pk,
                      long[] groupPKs)
               throws SystemException
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.

Specified by:
setGroups in interface RolePersistence
Parameters:
pk - the primary key of the role
groupPKs - the primary keys of the groups to be associated with the role
Throws:
SystemException - if a system exception occurred

setGroups

public void setGroups(long pk,
                      List<Group> groups)
               throws SystemException
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.

Specified by:
setGroups in interface RolePersistence
Parameters:
pk - the primary key of the role
groups - the groups to be associated with the role
Throws:
SystemException - if a system exception occurred

getUsers

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

Specified by:
getUsers in interface RolePersistence
Parameters:
pk - the primary key of the role
Returns:
the users associated with the role
Throws:
SystemException - if a system exception occurred

getUsers

public List<User> getUsers(long pk,
                           int start,
                           int end)
                    throws SystemException
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.

Specified by:
getUsers in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

getUsers

public List<User> getUsers(long pk,
                           int start,
                           int end,
                           OrderByComparator orderByComparator)
                    throws SystemException
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.

Specified by:
getUsers in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

getUsersSize

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

Specified by:
getUsersSize in interface RolePersistence
Parameters:
pk - the primary key of the role
Returns:
the number of users associated with the role
Throws:
SystemException - if a system exception occurred

containsUser

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

Specified by:
containsUser in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

containsUsers

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

Specified by:
containsUsers in interface RolePersistence
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
Throws:
SystemException - if a system exception occurred

addUser

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

Specified by:
addUser in interface RolePersistence
Parameters:
pk - the primary key of the role
userPK - the primary key of the user
Throws:
SystemException - if a system exception occurred

addUser

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

Specified by:
addUser in interface RolePersistence
Parameters:
pk - the primary key of the role
user - the user
Throws:
SystemException - if a system exception occurred

addUsers

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

Specified by:
addUsers in interface RolePersistence
Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users
Throws:
SystemException - if a system exception occurred

addUsers

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

Specified by:
addUsers in interface RolePersistence
Parameters:
pk - the primary key of the role
users - the users
Throws:
SystemException - if a system exception occurred

clearUsers

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

Specified by:
clearUsers in interface RolePersistence
Parameters:
pk - the primary key of the role to clear the associated users from
Throws:
SystemException - if a system exception occurred

removeUser

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

Specified by:
removeUser in interface RolePersistence
Parameters:
pk - the primary key of the role
userPK - the primary key of the user
Throws:
SystemException - if a system exception occurred

removeUser

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

Specified by:
removeUser in interface RolePersistence
Parameters:
pk - the primary key of the role
user - the user
Throws:
SystemException - if a system exception occurred

removeUsers

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

Specified by:
removeUsers in interface RolePersistence
Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users
Throws:
SystemException - if a system exception occurred

removeUsers

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

Specified by:
removeUsers in interface RolePersistence
Parameters:
pk - the primary key of the role
users - the users
Throws:
SystemException - if a system exception occurred

setUsers

public void setUsers(long pk,
                     long[] userPKs)
              throws SystemException
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.

Specified by:
setUsers in interface RolePersistence
Parameters:
pk - the primary key of the role
userPKs - the primary keys of the users to be associated with the role
Throws:
SystemException - if a system exception occurred

setUsers

public void setUsers(long pk,
                     List<User> users)
              throws SystemException
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.

Specified by:
setUsers in interface RolePersistence
Parameters:
pk - the primary key of the role
users - the users to be associated with the role
Throws:
SystemException - if a system exception occurred

getBadColumnNames

protected Set<String> getBadColumnNames()
Overrides:
getBadColumnNames in class BasePersistenceImpl<Role>

afterPropertiesSet

public void afterPropertiesSet()
Initializes the role persistence.


destroy

public void destroy()

Liferay 6.2-ce-ga5