@ProviderType
public class ResourceTypePermissionUtil
extends java.lang.Object
ResourceTypePermissionPersistenceImpl 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
ResourceTypePermissionPersistence,
ResourceTypePermissionPersistenceImpl| Constructor and Description |
|---|
ResourceTypePermissionUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.List<ResourceTypePermission> resourceTypePermissions)
Caches the resource type permissions in the entity cache if it is enabled.
|
static void |
cacheResult(ResourceTypePermission resourceTypePermission)
Caches the resource type permission in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(ResourceTypePermission resourceTypePermission) |
static int |
countAll()
Returns the number of resource type permissions.
|
static int |
countByC_G_N_R(long companyId,
long groupId,
java.lang.String name,
long roleId)
Returns the number of resource type permissions where companyId = ? and groupId = ? and name = ? and roleId = ?.
|
static int |
countByC_N_R(long companyId,
java.lang.String name,
long roleId)
Returns the number of resource type permissions where companyId = ? and name = ? and roleId = ?.
|
static int |
countByRoleId(long roleId)
Returns the number of resource type permissions where roleId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static ResourceTypePermission |
create(long resourceTypePermissionId)
Creates a new resource type permission with the primary key.
|
static ResourceTypePermission |
fetchByC_G_N_R(long companyId,
long groupId,
java.lang.String name,
long roleId)
Returns the resource type permission where companyId = ? and groupId = ? and name = ? and roleId = ? or returns
null if it could not be found. |
static ResourceTypePermission |
fetchByC_G_N_R(long companyId,
long groupId,
java.lang.String name,
long roleId,
boolean retrieveFromCache)
Returns the resource type permission where companyId = ? and groupId = ? and name = ? and roleId = ? or returns
null if it could not be found, optionally using the finder cache. |
static ResourceTypePermission |
fetchByC_N_R_First(long companyId,
java.lang.String name,
long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the first resource type permission in the ordered set where companyId = ? and name = ? and roleId = ?.
|
static ResourceTypePermission |
fetchByC_N_R_Last(long companyId,
java.lang.String name,
long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the last resource type permission in the ordered set where companyId = ? and name = ? and roleId = ?.
|
static ResourceTypePermission |
fetchByPrimaryKey(long resourceTypePermissionId)
Returns the resource type permission with the primary key or returns
null if it could not be found. |
static java.util.Map<java.io.Serializable,ResourceTypePermission> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
static ResourceTypePermission |
fetchByRoleId_First(long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the first resource type permission in the ordered set where roleId = ?.
|
static ResourceTypePermission |
fetchByRoleId_Last(long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the last resource type permission in the ordered set where roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findAll()
Returns all the resource type permissions.
|
static java.util.List<ResourceTypePermission> |
findAll(int start,
int end)
Returns a range of all the resource type permissions.
|
static java.util.List<ResourceTypePermission> |
findAll(int start,
int end,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns an ordered range of all the resource type permissions.
|
static ResourceTypePermission |
findByC_G_N_R(long companyId,
long groupId,
java.lang.String name,
long roleId)
Returns the resource type permission where companyId = ? and groupId = ? and name = ? and roleId = ? or throws a
NoSuchResourceTypePermissionException if it could not be found. |
static ResourceTypePermission |
findByC_N_R_First(long companyId,
java.lang.String name,
long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the first resource type permission in the ordered set where companyId = ? and name = ? and roleId = ?.
|
static ResourceTypePermission |
findByC_N_R_Last(long companyId,
java.lang.String name,
long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the last resource type permission in the ordered set where companyId = ? and name = ? and roleId = ?.
|
static ResourceTypePermission[] |
findByC_N_R_PrevAndNext(long resourceTypePermissionId,
long companyId,
java.lang.String name,
long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the resource type permissions before and after the current resource type permission in the ordered set where companyId = ? and name = ? and roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findByC_N_R(long companyId,
java.lang.String name,
long roleId)
Returns all the resource type permissions where companyId = ? and name = ? and roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findByC_N_R(long companyId,
java.lang.String name,
long roleId,
int start,
int end)
Returns a range of all the resource type permissions where companyId = ? and name = ? and roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findByC_N_R(long companyId,
java.lang.String name,
long roleId,
int start,
int end,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns an ordered range of all the resource type permissions where companyId = ? and name = ? and roleId = ?.
|
static ResourceTypePermission |
findByPrimaryKey(long resourceTypePermissionId)
Returns the resource type permission with the primary key or throws a
NoSuchResourceTypePermissionException if it could not be found. |
static ResourceTypePermission |
findByRoleId_First(long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the first resource type permission in the ordered set where roleId = ?.
|
static ResourceTypePermission |
findByRoleId_Last(long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the last resource type permission in the ordered set where roleId = ?.
|
static ResourceTypePermission[] |
findByRoleId_PrevAndNext(long resourceTypePermissionId,
long roleId,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns the resource type permissions before and after the current resource type permission in the ordered set where roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findByRoleId(long roleId)
Returns all the resource type permissions where roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findByRoleId(long roleId,
int start,
int end)
Returns a range of all the resource type permissions where roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findByRoleId(long roleId,
int start,
int end,
OrderByComparator<ResourceTypePermission> orderByComparator)
Returns an ordered range of all the resource type permissions where roleId = ?.
|
static java.util.List<ResourceTypePermission> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<ResourceTypePermission> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<ResourceTypePermission> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<ResourceTypePermission> orderByComparator) |
static ResourceTypePermissionPersistence |
getPersistence() |
static ResourceTypePermission |
remove(long resourceTypePermissionId)
Removes the resource type permission with the primary key from the database.
|
static void |
removeAll()
Removes all the resource type permissions from the database.
|
static ResourceTypePermission |
removeByC_G_N_R(long companyId,
long groupId,
java.lang.String name,
long roleId)
Removes the resource type permission where companyId = ? and groupId = ? and name = ? and roleId = ? from the database.
|
static void |
removeByC_N_R(long companyId,
java.lang.String name,
long roleId)
Removes all the resource type permissions where companyId = ? and name = ? and roleId = ? from the database.
|
static void |
removeByRoleId(long roleId)
Removes all the resource type permissions where roleId = ? from the database.
|
void |
setPersistence(ResourceTypePermissionPersistence persistence)
Deprecated.
As of 6.2.0
|
static ResourceTypePermission |
update(ResourceTypePermission resourceTypePermission) |
static ResourceTypePermission |
update(ResourceTypePermission resourceTypePermission,
ServiceContext serviceContext) |
static ResourceTypePermission |
updateImpl(ResourceTypePermission resourceTypePermission) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(ResourceTypePermission resourceTypePermission)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static java.util.List<ResourceTypePermission> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static java.util.List<ResourceTypePermission> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static java.util.List<ResourceTypePermission> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<ResourceTypePermission> orderByComparator)
public static ResourceTypePermission update(ResourceTypePermission resourceTypePermission)
public static ResourceTypePermission update(ResourceTypePermission resourceTypePermission, ServiceContext serviceContext)
public static java.util.List<ResourceTypePermission> findByRoleId(long roleId)
roleId - the role IDpublic static java.util.List<ResourceTypePermission> findByRoleId(long roleId, int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from ResourceTypePermissionModelImpl. 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 type permissionsend - the upper bound of the range of resource type permissions (not inclusive)public static java.util.List<ResourceTypePermission> findByRoleId(long roleId, int start, int end, OrderByComparator<ResourceTypePermission> orderByComparator)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from ResourceTypePermissionModelImpl. 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 type permissionsend - the upper bound of the range of resource type permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static ResourceTypePermission findByRoleId_First(long roleId, OrderByComparator<ResourceTypePermission> orderByComparator) throws NoSuchResourceTypePermissionException
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourceTypePermissionException - if a matching resource type permission could not be foundpublic static ResourceTypePermission fetchByRoleId_First(long roleId, OrderByComparator<ResourceTypePermission> orderByComparator)
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)null if a matching resource type permission could not be foundpublic static ResourceTypePermission findByRoleId_Last(long roleId, OrderByComparator<ResourceTypePermission> orderByComparator) throws NoSuchResourceTypePermissionException
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourceTypePermissionException - if a matching resource type permission could not be foundpublic static ResourceTypePermission fetchByRoleId_Last(long roleId, OrderByComparator<ResourceTypePermission> orderByComparator)
roleId - the role IDorderByComparator - the comparator to order the set by (optionally null)null if a matching resource type permission could not be foundpublic static ResourceTypePermission[] findByRoleId_PrevAndNext(long resourceTypePermissionId, long roleId, OrderByComparator<ResourceTypePermission> orderByComparator) throws NoSuchResourceTypePermissionException
resourceTypePermissionId - the primary key of the current resource type permissionroleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourceTypePermissionException - if a resource type permission with the primary key could not be foundpublic static void removeByRoleId(long roleId)
roleId - the role IDpublic static int countByRoleId(long roleId)
roleId - the role IDpublic static java.util.List<ResourceTypePermission> findByC_N_R(long companyId, java.lang.String name, long roleId)
companyId - the company IDname - the nameroleId - the role IDpublic static java.util.List<ResourceTypePermission> findByC_N_R(long companyId, java.lang.String name, long roleId, int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from ResourceTypePermissionModelImpl. 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 nameroleId - the role IDstart - the lower bound of the range of resource type permissionsend - the upper bound of the range of resource type permissions (not inclusive)public static java.util.List<ResourceTypePermission> findByC_N_R(long companyId, java.lang.String name, long roleId, int start, int end, OrderByComparator<ResourceTypePermission> orderByComparator)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from ResourceTypePermissionModelImpl. 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 nameroleId - the role IDstart - the lower bound of the range of resource type permissionsend - the upper bound of the range of resource type permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static ResourceTypePermission findByC_N_R_First(long companyId, java.lang.String name, long roleId, OrderByComparator<ResourceTypePermission> orderByComparator) throws NoSuchResourceTypePermissionException
companyId - the company IDname - the nameroleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourceTypePermissionException - if a matching resource type permission could not be foundpublic static ResourceTypePermission fetchByC_N_R_First(long companyId, java.lang.String name, long roleId, OrderByComparator<ResourceTypePermission> orderByComparator)
companyId - the company IDname - the nameroleId - the role IDorderByComparator - the comparator to order the set by (optionally null)null if a matching resource type permission could not be foundpublic static ResourceTypePermission findByC_N_R_Last(long companyId, java.lang.String name, long roleId, OrderByComparator<ResourceTypePermission> orderByComparator) throws NoSuchResourceTypePermissionException
companyId - the company IDname - the nameroleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourceTypePermissionException - if a matching resource type permission could not be foundpublic static ResourceTypePermission fetchByC_N_R_Last(long companyId, java.lang.String name, long roleId, OrderByComparator<ResourceTypePermission> orderByComparator)
companyId - the company IDname - the nameroleId - the role IDorderByComparator - the comparator to order the set by (optionally null)null if a matching resource type permission could not be foundpublic static ResourceTypePermission[] findByC_N_R_PrevAndNext(long resourceTypePermissionId, long companyId, java.lang.String name, long roleId, OrderByComparator<ResourceTypePermission> orderByComparator) throws NoSuchResourceTypePermissionException
resourceTypePermissionId - the primary key of the current resource type permissioncompanyId - the company IDname - the nameroleId - the role IDorderByComparator - the comparator to order the set by (optionally null)NoSuchResourceTypePermissionException - if a resource type permission with the primary key could not be foundpublic static void removeByC_N_R(long companyId,
java.lang.String name,
long roleId)
companyId - the company IDname - the nameroleId - the role IDpublic static int countByC_N_R(long companyId,
java.lang.String name,
long roleId)
companyId - the company IDname - the nameroleId - the role IDpublic static ResourceTypePermission findByC_G_N_R(long companyId, long groupId, java.lang.String name, long roleId) throws NoSuchResourceTypePermissionException
NoSuchResourceTypePermissionException if it could not be found.companyId - the company IDgroupId - the group IDname - the nameroleId - the role IDNoSuchResourceTypePermissionException - if a matching resource type permission could not be foundpublic static ResourceTypePermission fetchByC_G_N_R(long companyId, long groupId, java.lang.String name, long roleId)
null if it could not be found. Uses the finder cache.companyId - the company IDgroupId - the group IDname - the nameroleId - the role IDnull if a matching resource type permission could not be foundpublic static ResourceTypePermission fetchByC_G_N_R(long companyId, long groupId, java.lang.String name, long roleId, boolean retrieveFromCache)
null if it could not be found, optionally using the finder cache.companyId - the company IDgroupId - the group IDname - the nameroleId - the role IDretrieveFromCache - whether to use the finder cachenull if a matching resource type permission could not be foundpublic static ResourceTypePermission removeByC_G_N_R(long companyId, long groupId, java.lang.String name, long roleId) throws NoSuchResourceTypePermissionException
companyId - the company IDgroupId - the group IDname - the nameroleId - the role IDNoSuchResourceTypePermissionExceptionpublic static int countByC_G_N_R(long companyId,
long groupId,
java.lang.String name,
long roleId)
companyId - the company IDgroupId - the group IDname - the nameroleId - the role IDpublic static void cacheResult(ResourceTypePermission resourceTypePermission)
resourceTypePermission - the resource type permissionpublic static void cacheResult(java.util.List<ResourceTypePermission> resourceTypePermissions)
resourceTypePermissions - the resource type permissionspublic static ResourceTypePermission create(long resourceTypePermissionId)
resourceTypePermissionId - the primary key for the new resource type permissionpublic static ResourceTypePermission remove(long resourceTypePermissionId) throws NoSuchResourceTypePermissionException
resourceTypePermissionId - the primary key of the resource type permissionNoSuchResourceTypePermissionException - if a resource type permission with the primary key could not be foundpublic static ResourceTypePermission updateImpl(ResourceTypePermission resourceTypePermission)
public static ResourceTypePermission findByPrimaryKey(long resourceTypePermissionId) throws NoSuchResourceTypePermissionException
NoSuchResourceTypePermissionException if it could not be found.resourceTypePermissionId - the primary key of the resource type permissionNoSuchResourceTypePermissionException - if a resource type permission with the primary key could not be foundpublic static ResourceTypePermission fetchByPrimaryKey(long resourceTypePermissionId)
null if it could not be found.resourceTypePermissionId - the primary key of the resource type permissionnull if a resource type permission with the primary key could not be foundpublic static java.util.Map<java.io.Serializable,ResourceTypePermission> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
public static java.util.List<ResourceTypePermission> findAll()
public static java.util.List<ResourceTypePermission> findAll(int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from ResourceTypePermissionModelImpl. 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 type permissionsend - the upper bound of the range of resource type permissions (not inclusive)public static java.util.List<ResourceTypePermission> findAll(int start, int end, OrderByComparator<ResourceTypePermission> orderByComparator)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from ResourceTypePermissionModelImpl. 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 type permissionsend - the upper bound of the range of resource type permissions (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static void removeAll()
public static int countAll()
public static ResourceTypePermissionPersistence getPersistence()
@Deprecated public void setPersistence(ResourceTypePermissionPersistence persistence)