@ProviderType
public class ResourcePermissionUtil
extends java.lang.Object
ResourcePermissionPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Caching information and settings can be found in portal.properties
ResourcePermissionPersistence,
ResourcePermissionPersistenceImpl| Constructor and Description |
|---|
ResourcePermissionUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.List<ResourcePermission> resourcePermissions)
Caches the resource permissions in the entity cache if it is enabled.
|
static void |
cacheResult(ResourcePermission resourcePermission)
Caches the resource permission in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(ResourcePermission resourcePermission) |
static int |
countAll()
Returns the number of resource permissions.
|
static int |
countByC_LikeP(long companyId,
java.lang.String primKey)
Returns the number of resource permissions where companyId = ? and primKey LIKE ?.
|
static int |
countByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long roleId)
Returns the number of resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ?.
|
static int |
countByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long[] roleIds)
Returns the number of resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = any ?.
|
static int |
countByC_N_S_P(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey)
Returns the number of resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static int |
countByC_N_S(long companyId,
java.lang.String name,
int scope)
Returns the number of resource permissions where companyId = ? and name = ? and scope = ?.
|
static int |
countByRoleId(long roleId)
Returns the number of resource permissions where roleId = ?.
|
static int |
countByScope(int scope)
Returns the number of resource permissions where scope = ?.
|
static int |
countByScope(int[] scopes)
Returns the number of resource permissions where scope = any ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static ResourcePermission |
create(long resourcePermissionId)
Creates a new resource permission with the primary key.
|
static ResourcePermission |
fetchByC_LikeP_First(long companyId,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where companyId = ? and primKey LIKE ?.
|
static ResourcePermission |
fetchByC_LikeP_Last(long companyId,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where companyId = ? and primKey LIKE ?.
|
static ResourcePermission |
fetchByC_N_S_First(long companyId,
java.lang.String name,
int scope,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
|
static ResourcePermission |
fetchByC_N_S_Last(long companyId,
java.lang.String name,
int scope,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
|
static ResourcePermission |
fetchByC_N_S_P_First(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static ResourcePermission |
fetchByC_N_S_P_Last(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static ResourcePermission |
fetchByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long roleId)
Returns the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? or returns
null if it could not be found. |
static ResourcePermission |
fetchByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long roleId,
boolean retrieveFromCache)
Returns the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? or returns
null if it could not be found, optionally using the finder cache. |
static ResourcePermission |
fetchByPrimaryKey(long resourcePermissionId)
Returns the resource permission with the primary key or returns
null if it could not be found. |
static ResourcePermission |
fetchByRoleId_First(long roleId,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where roleId = ?.
|
static ResourcePermission |
fetchByRoleId_Last(long roleId,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where roleId = ?.
|
static ResourcePermission |
fetchByScope_First(int scope,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where scope = ?.
|
static ResourcePermission |
fetchByScope_Last(int scope,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where scope = ?.
|
static java.util.List<ResourcePermission> |
findAll()
Returns all the resource permissions.
|
static java.util.List<ResourcePermission> |
findAll(int start,
int end)
Returns a range of all the resource permissions.
|
static java.util.List<ResourcePermission> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions.
|
static ResourcePermission |
findByC_LikeP_First(long companyId,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where companyId = ? and primKey LIKE ?.
|
static ResourcePermission |
findByC_LikeP_Last(long companyId,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where companyId = ? and primKey LIKE ?.
|
static ResourcePermission[] |
findByC_LikeP_PrevAndNext(long resourcePermissionId,
long companyId,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the resource permissions before and after the current resource permission in the ordered set where companyId = ? and primKey LIKE ?.
|
static java.util.List<ResourcePermission> |
findByC_LikeP(long companyId,
java.lang.String primKey)
Returns all the resource permissions where companyId = ? and primKey LIKE ?.
|
static java.util.List<ResourcePermission> |
findByC_LikeP(long companyId,
java.lang.String primKey,
int start,
int end)
Returns a range of all the resource permissions where companyId = ? and primKey LIKE ?.
|
static java.util.List<ResourcePermission> |
findByC_LikeP(long companyId,
java.lang.String primKey,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions where companyId = ? and primKey LIKE ?.
|
static ResourcePermission |
findByC_N_S_First(long companyId,
java.lang.String name,
int scope,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
|
static ResourcePermission |
findByC_N_S_Last(long companyId,
java.lang.String name,
int scope,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
|
static ResourcePermission |
findByC_N_S_P_First(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static ResourcePermission |
findByC_N_S_P_Last(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static ResourcePermission[] |
findByC_N_S_P_PrevAndNext(long resourcePermissionId,
long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
OrderByComparator orderByComparator)
Returns the resource permissions before and after the current resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static ResourcePermission |
findByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long roleId)
Returns the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? or throws a
NoSuchResourcePermissionException if it could not be found. |
static java.util.List<ResourcePermission> |
findByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long[] roleIds)
Returns all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = any ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long[] roleIds,
int start,
int end)
Returns a range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = any ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long[] roleIds,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = any ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S_P(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey)
Returns all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S_P(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
int start,
int end)
Returns a range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S_P(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
|
static ResourcePermission[] |
findByC_N_S_PrevAndNext(long resourcePermissionId,
long companyId,
java.lang.String name,
int scope,
OrderByComparator orderByComparator)
Returns the resource permissions before and after the current resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S(long companyId,
java.lang.String name,
int scope)
Returns all the resource permissions where companyId = ? and name = ? and scope = ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S(long companyId,
java.lang.String name,
int scope,
int start,
int end)
Returns a range of all the resource permissions where companyId = ? and name = ? and scope = ?.
|
static java.util.List<ResourcePermission> |
findByC_N_S(long companyId,
java.lang.String name,
int scope,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions where companyId = ? and name = ? and scope = ?.
|
static ResourcePermission |
findByPrimaryKey(long resourcePermissionId)
Returns the resource permission with the primary key or throws a
NoSuchResourcePermissionException if it could not be found. |
static ResourcePermission |
findByRoleId_First(long roleId,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where roleId = ?.
|
static ResourcePermission |
findByRoleId_Last(long roleId,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where roleId = ?.
|
static ResourcePermission[] |
findByRoleId_PrevAndNext(long resourcePermissionId,
long roleId,
OrderByComparator orderByComparator)
Returns the resource permissions before and after the current resource permission in the ordered set where roleId = ?.
|
static java.util.List<ResourcePermission> |
findByRoleId(long roleId)
Returns all the resource permissions where roleId = ?.
|
static java.util.List<ResourcePermission> |
findByRoleId(long roleId,
int start,
int end)
Returns a range of all the resource permissions where roleId = ?.
|
static java.util.List<ResourcePermission> |
findByRoleId(long roleId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions where roleId = ?.
|
static ResourcePermission |
findByScope_First(int scope,
OrderByComparator orderByComparator)
Returns the first resource permission in the ordered set where scope = ?.
|
static ResourcePermission |
findByScope_Last(int scope,
OrderByComparator orderByComparator)
Returns the last resource permission in the ordered set where scope = ?.
|
static ResourcePermission[] |
findByScope_PrevAndNext(long resourcePermissionId,
int scope,
OrderByComparator orderByComparator)
Returns the resource permissions before and after the current resource permission in the ordered set where scope = ?.
|
static java.util.List<ResourcePermission> |
findByScope(int scope)
Returns all the resource permissions where scope = ?.
|
static java.util.List<ResourcePermission> |
findByScope(int[] scopes)
Returns all the resource permissions where scope = any ?.
|
static java.util.List<ResourcePermission> |
findByScope(int[] scopes,
int start,
int end)
Returns a range of all the resource permissions where scope = any ?.
|
static java.util.List<ResourcePermission> |
findByScope(int[] scopes,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions where scope = any ?.
|
static java.util.List<ResourcePermission> |
findByScope(int scope,
int start,
int end)
Returns a range of all the resource permissions where scope = ?.
|
static java.util.List<ResourcePermission> |
findByScope(int scope,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the resource permissions where scope = ?.
|
static java.util.List<ResourcePermission> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<ResourcePermission> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<ResourcePermission> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator) |
static ResourcePermissionPersistence |
getPersistence() |
static ResourcePermission |
remove(long resourcePermissionId)
Removes the resource permission with the primary key from the database.
|
static void |
removeAll()
Removes all the resource permissions from the database.
|
static void |
removeByC_LikeP(long companyId,
java.lang.String primKey)
Removes all the resource permissions where companyId = ? and primKey LIKE ? from the database.
|
static ResourcePermission |
removeByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long roleId)
Removes the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? from the database.
|
static void |
removeByC_N_S_P(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey)
Removes all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? from the database.
|
static void |
removeByC_N_S(long companyId,
java.lang.String name,
int scope)
Removes all the resource permissions where companyId = ? and name = ? and scope = ? from the database.
|
static void |
removeByRoleId(long roleId)
Removes all the resource permissions where roleId = ? from the database.
|
static void |
removeByScope(int scope)
Removes all the resource permissions where scope = ? from the database.
|
void |
setPersistence(ResourcePermissionPersistence persistence)
Deprecated.
As of 6.2.0
|
static ResourcePermission |
update(ResourcePermission resourcePermission) |
static ResourcePermission |
update(ResourcePermission resourcePermission,
ServiceContext serviceContext) |
static ResourcePermission |
updateImpl(ResourcePermission resourcePermission) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(ResourcePermission resourcePermission)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<ResourcePermission> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<ResourcePermission> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<ResourcePermission> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static ResourcePermission update(ResourcePermission resourcePermission) throws SystemException
public static ResourcePermission update(ResourcePermission resourcePermission, ServiceContext serviceContext) throws SystemException
public static java.util.List<ResourcePermission> findByScope(int scope) throws SystemException
scope - the scopeSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByScope(int scope, int start, int end) throws SystemException
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 ResourcePermissionModelImpl. 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.
scope - the scopestart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByScope(int scope, int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. 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.
scope - the scopestart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ResourcePermission findByScope_First(int scope, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
scope - the scopeorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByScope_First(int scope, OrderByComparator orderByComparator) throws SystemException
scope - the scopeorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission findByScope_Last(int scope, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
scope - the scopeorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByScope_Last(int scope, OrderByComparator orderByComparator) throws SystemException
scope - the scopeorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission[] findByScope_PrevAndNext(long resourcePermissionId, int scope, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
resourcePermissionId - the primary key of the current resource permissionscope - the scopeorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByScope(int[] scopes) throws SystemException
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 ResourcePermissionModelImpl. 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.
scopes - the scopesSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByScope(int[] scopes, int start, int end) throws SystemException
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 ResourcePermissionModelImpl. 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.
scopes - the scopesstart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByScope(int[] scopes, int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. 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.
scopes - the scopesstart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeByScope(int scope)
throws SystemException
scope - the scopeSystemException - if a system exception occurredpublic static int countByScope(int scope)
throws SystemException
scope - the scopeSystemException - if a system exception occurredpublic static int countByScope(int[] scopes)
throws SystemException
scopes - the scopesSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByRoleId(long roleId) throws SystemException
roleId - the role IDSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByRoleId(long roleId, int start, int end) throws SystemException
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 ResourcePermissionModelImpl. 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.
roleId - the role IDstart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByRoleId(long roleId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. 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.
roleId - the role IDstart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ResourcePermission findByRoleId_First(long roleId, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByRoleId_First(long roleId, OrderByComparator orderByComparator) throws SystemException
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission findByRoleId_Last(long roleId, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByRoleId_Last(long roleId, OrderByComparator orderByComparator) throws SystemException
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission[] findByRoleId_PrevAndNext(long resourcePermissionId, long roleId, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
resourcePermissionId - the primary key of the current resource permissionroleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByRoleId(long roleId)
throws SystemException
roleId - the role IDSystemException - if a system exception occurredpublic static int countByRoleId(long roleId)
throws SystemException
roleId - the role IDSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_LikeP(long companyId, java.lang.String primKey) throws SystemException
companyId - the company IDprimKey - the prim keySystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_LikeP(long companyId, java.lang.String primKey, int start, int end) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDprimKey - the prim keystart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_LikeP(long companyId, java.lang.String primKey, int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDprimKey - the prim keystart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ResourcePermission findByC_LikeP_First(long companyId, java.lang.String primKey, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
companyId - the company IDprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_LikeP_First(long companyId, java.lang.String primKey, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission findByC_LikeP_Last(long companyId, java.lang.String primKey, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
companyId - the company IDprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_LikeP_Last(long companyId, java.lang.String primKey, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission[] findByC_LikeP_PrevAndNext(long resourcePermissionId, long companyId, java.lang.String primKey, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
resourcePermissionId - the primary key of the current resource permissioncompanyId - the company IDprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByC_LikeP(long companyId,
java.lang.String primKey)
throws SystemException
companyId - the company IDprimKey - the prim keySystemException - if a system exception occurredpublic static int countByC_LikeP(long companyId,
java.lang.String primKey)
throws SystemException
companyId - the company IDprimKey - the prim keySystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S(long companyId, java.lang.String name, int scope) throws SystemException
companyId - the company IDname - the namescope - the scopeSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S(long companyId, java.lang.String name, int scope, int start, int end) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDname - the namescope - the scopestart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S(long companyId, java.lang.String name, int scope, int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDname - the namescope - the scopestart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ResourcePermission findByC_N_S_First(long companyId, java.lang.String name, int scope, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
companyId - the company IDname - the namescope - the scopeorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_N_S_First(long companyId, java.lang.String name, int scope, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDname - the namescope - the scopeorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission findByC_N_S_Last(long companyId, java.lang.String name, int scope, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
companyId - the company IDname - the namescope - the scopeorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_N_S_Last(long companyId, java.lang.String name, int scope, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDname - the namescope - the scopeorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission[] findByC_N_S_PrevAndNext(long resourcePermissionId, long companyId, java.lang.String name, int scope, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
resourcePermissionId - the primary key of the current resource permissioncompanyId - the company IDname - the namescope - the scopeorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByC_N_S(long companyId,
java.lang.String name,
int scope)
throws SystemException
companyId - the company IDname - the namescope - the scopeSystemException - if a system exception occurredpublic static int countByC_N_S(long companyId,
java.lang.String name,
int scope)
throws SystemException
companyId - the company IDname - the namescope - the scopeSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S_P(long companyId, java.lang.String name, int scope, java.lang.String primKey) throws SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keySystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S_P(long companyId, java.lang.String name, int scope, java.lang.String primKey, int start, int end) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDname - the namescope - the scopeprimKey - the prim keystart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S_P(long companyId, java.lang.String name, int scope, java.lang.String primKey, int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDname - the namescope - the scopeprimKey - the prim keystart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ResourcePermission findByC_N_S_P_First(long companyId, java.lang.String name, int scope, java.lang.String primKey, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_N_S_P_First(long companyId, java.lang.String name, int scope, java.lang.String primKey, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission findByC_N_S_P_Last(long companyId, java.lang.String name, int scope, java.lang.String primKey, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_N_S_P_Last(long companyId, java.lang.String name, int scope, java.lang.String primKey, OrderByComparator orderByComparator) throws SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)null if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission[] findByC_N_S_P_PrevAndNext(long resourcePermissionId, long companyId, java.lang.String name, int scope, java.lang.String primKey, OrderByComparator orderByComparator) throws NoSuchResourcePermissionException, SystemException
resourcePermissionId - the primary key of the current resource permissioncompanyId - the company IDname - the namescope - the scopeprimKey - the prim keyorderByComparator - the comparator to order the set by (optionally null)NoSuchResourcePermissionException - if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByC_N_S_P(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey)
throws SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keySystemException - if a system exception occurredpublic static int countByC_N_S_P(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey)
throws SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keySystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S_P_R(long companyId, java.lang.String name, int scope, java.lang.String primKey, long[] roleIds) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleIds - the role IDsSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S_P_R(long companyId, java.lang.String name, int scope, java.lang.String primKey, long[] roleIds, int start, int end) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleIds - the role IDsstart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findByC_N_S_P_R(long companyId, java.lang.String name, int scope, java.lang.String primKey, long[] roleIds, int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleIds - the role IDsstart - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static ResourcePermission findByC_N_S_P_R(long companyId, java.lang.String name, int scope, java.lang.String primKey, long roleId) throws NoSuchResourcePermissionException, SystemException
NoSuchResourcePermissionException if it could not be found.companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleId - the role IDNoSuchResourcePermissionException - if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_N_S_P_R(long companyId, java.lang.String name, int scope, java.lang.String primKey, long roleId) throws SystemException
null if it could not be found. Uses the finder cache.companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleId - the role IDnull if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByC_N_S_P_R(long companyId, java.lang.String name, int scope, java.lang.String primKey, long roleId, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleId - the role IDretrieveFromCache - whether to use the finder cachenull if a matching resource permission could not be foundSystemException - if a system exception occurredpublic static ResourcePermission removeByC_N_S_P_R(long companyId, java.lang.String name, int scope, java.lang.String primKey, long roleId) throws NoSuchResourcePermissionException, SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleId - the role IDSystemException - if a system exception occurredNoSuchResourcePermissionExceptionpublic static int countByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long roleId)
throws SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleId - the role IDSystemException - if a system exception occurredpublic static int countByC_N_S_P_R(long companyId,
java.lang.String name,
int scope,
java.lang.String primKey,
long[] roleIds)
throws SystemException
companyId - the company IDname - the namescope - the scopeprimKey - the prim keyroleIds - the role IDsSystemException - if a system exception occurredpublic static void cacheResult(ResourcePermission resourcePermission)
resourcePermission - the resource permissionpublic static void cacheResult(java.util.List<ResourcePermission> resourcePermissions)
resourcePermissions - the resource permissionspublic static ResourcePermission create(long resourcePermissionId)
resourcePermissionId - the primary key for the new resource permissionpublic static ResourcePermission remove(long resourcePermissionId) throws NoSuchResourcePermissionException, SystemException
resourcePermissionId - the primary key of the resource permissionNoSuchResourcePermissionException - if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static ResourcePermission updateImpl(ResourcePermission resourcePermission) throws SystemException
SystemExceptionpublic static ResourcePermission findByPrimaryKey(long resourcePermissionId) throws NoSuchResourcePermissionException, SystemException
NoSuchResourcePermissionException if it could not be found.resourcePermissionId - the primary key of the resource permissionNoSuchResourcePermissionException - if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static ResourcePermission fetchByPrimaryKey(long resourcePermissionId) throws SystemException
null if it could not be found.resourcePermissionId - the primary key of the resource permissionnull if a resource permission with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findAll(int start, int end) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<ResourcePermission> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
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 ResourcePermissionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start - the lower bound of the range of resource permissionsend - the upper bound of the range of resource permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeAll()
throws SystemException
SystemException - if a system exception occurredpublic static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static ResourcePermissionPersistence getPersistence()
public void setPersistence(ResourcePermissionPersistence persistence)