Liferay 6.0.5

com.liferay.portal.service.persistence
Interface ResourcePermissionPersistence

All Superinterfaces:
BasePersistence<ResourcePermission>
All Known Implementing Classes:
ResourcePermissionPersistenceImpl

public interface ResourcePermissionPersistence
extends BasePersistence<ResourcePermission>

The persistence interface for the resource permission service.

Never modify or reference this interface directly. Always use ResourcePermissionUtil to access the resource permission persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
ResourcePermissionPersistenceImpl, ResourcePermissionUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void cacheResult(List<ResourcePermission> resourcePermissions)
          Caches the resource permissions in the entity cache if it is enabled.
 void cacheResult(ResourcePermission resourcePermission)
          Caches the resource permission in the entity cache if it is enabled.
 int countAll()
          Counts all the resource permissions.
 int countByC_N_S_P_R(long companyId, String name, int scope, String primKey, long roleId)
          Counts all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ?.
 int countByC_N_S_P(long companyId, String name, int scope, String primKey)
          Counts all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
 int countByC_N_S(long companyId, String name, int scope)
          Counts all the resource permissions where companyId = ? and name = ? and scope = ?.
 int countByR_S(long roleId, int scope)
          Counts all the resource permissions where roleId = ? and scope = ?.
 int countByRoleId(long roleId)
          Counts all the resource permissions where roleId = ?.
 ResourcePermission create(long resourcePermissionId)
          Creates a new resource permission with the primary key.
 ResourcePermission fetchByC_N_S_P_R(long companyId, String name, int scope, String primKey, long roleId)
          Finds the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? or returns null if it could not be found.
 ResourcePermission fetchByC_N_S_P_R(long companyId, String name, int scope, String primKey, long roleId, boolean retrieveFromCache)
          Finds 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.
 ResourcePermission fetchByPrimaryKey(long resourcePermissionId)
          Finds the resource permission with the primary key or returns null if it could not be found.
 List<ResourcePermission> findAll()
          Finds all the resource permissions.
 List<ResourcePermission> findAll(int start, int end)
          Finds a range of all the resource permissions.
 List<ResourcePermission> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the resource permissions.
 ResourcePermission findByC_N_S_First(long companyId, String name, int scope, OrderByComparator orderByComparator)
          Finds the first resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
 ResourcePermission findByC_N_S_Last(long companyId, String name, int scope, OrderByComparator orderByComparator)
          Finds the last resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
 ResourcePermission findByC_N_S_P_First(long companyId, String name, int scope, String primKey, OrderByComparator orderByComparator)
          Finds the first resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
 ResourcePermission findByC_N_S_P_Last(long companyId, String name, int scope, String primKey, OrderByComparator orderByComparator)
          Finds the last resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
 ResourcePermission[] findByC_N_S_P_PrevAndNext(long resourcePermissionId, long companyId, String name, int scope, String primKey, OrderByComparator orderByComparator)
          Finds the resource permissions before and after the current resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.
 ResourcePermission findByC_N_S_P_R(long companyId, String name, int scope, String primKey, long roleId)
          Finds the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? or throws a NoSuchResourcePermissionException if it could not be found.
 List<ResourcePermission> findByC_N_S_P(long companyId, String name, int scope, String primKey)
          Finds all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
 List<ResourcePermission> findByC_N_S_P(long companyId, String name, int scope, String primKey, int start, int end)
          Finds a range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
 List<ResourcePermission> findByC_N_S_P(long companyId, String name, int scope, String primKey, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.
 ResourcePermission[] findByC_N_S_PrevAndNext(long resourcePermissionId, long companyId, String name, int scope, OrderByComparator orderByComparator)
          Finds the resource permissions before and after the current resource permission in the ordered set where companyId = ? and name = ? and scope = ?.
 List<ResourcePermission> findByC_N_S(long companyId, String name, int scope)
          Finds all the resource permissions where companyId = ? and name = ? and scope = ?.
 List<ResourcePermission> findByC_N_S(long companyId, String name, int scope, int start, int end)
          Finds a range of all the resource permissions where companyId = ? and name = ? and scope = ?.
 List<ResourcePermission> findByC_N_S(long companyId, String name, int scope, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the resource permissions where companyId = ? and name = ? and scope = ?.
 ResourcePermission findByPrimaryKey(long resourcePermissionId)
          Finds the resource permission with the primary key or throws a NoSuchResourcePermissionException if it could not be found.
 ResourcePermission findByR_S_First(long roleId, int scope, OrderByComparator orderByComparator)
          Finds the first resource permission in the ordered set where roleId = ? and scope = ?.
 ResourcePermission findByR_S_Last(long roleId, int scope, OrderByComparator orderByComparator)
          Finds the last resource permission in the ordered set where roleId = ? and scope = ?.
 ResourcePermission[] findByR_S_PrevAndNext(long resourcePermissionId, long roleId, int scope, OrderByComparator orderByComparator)
          Finds the resource permissions before and after the current resource permission in the ordered set where roleId = ? and scope = ?.
 List<ResourcePermission> findByR_S(long roleId, int scope)
          Finds all the resource permissions where roleId = ? and scope = ?.
 List<ResourcePermission> findByR_S(long roleId, int scope, int start, int end)
          Finds a range of all the resource permissions where roleId = ? and scope = ?.
 List<ResourcePermission> findByR_S(long roleId, int scope, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the resource permissions where roleId = ? and scope = ?.
 ResourcePermission findByRoleId_First(long roleId, OrderByComparator orderByComparator)
          Finds the first resource permission in the ordered set where roleId = ?.
 ResourcePermission findByRoleId_Last(long roleId, OrderByComparator orderByComparator)
          Finds the last resource permission in the ordered set where roleId = ?.
 ResourcePermission[] findByRoleId_PrevAndNext(long resourcePermissionId, long roleId, OrderByComparator orderByComparator)
          Finds the resource permissions before and after the current resource permission in the ordered set where roleId = ?.
 List<ResourcePermission> findByRoleId(long roleId)
          Finds all the resource permissions where roleId = ?.
 List<ResourcePermission> findByRoleId(long roleId, int start, int end)
          Finds a range of all the resource permissions where roleId = ?.
 List<ResourcePermission> findByRoleId(long roleId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the resource permissions where roleId = ?.
 ResourcePermission remove(long resourcePermissionId)
          Removes the resource permission with the primary key from the database.
 void removeAll()
          Removes all the resource permissions from the database.
 void removeByC_N_S_P_R(long companyId, String name, int scope, String primKey, long roleId)
          Removes the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? from the database.
 void removeByC_N_S_P(long companyId, String name, int scope, String primKey)
          Removes all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? from the database.
 void removeByC_N_S(long companyId, String name, int scope)
          Removes all the resource permissions where companyId = ? and name = ? and scope = ? from the database.
 void removeByR_S(long roleId, int scope)
          Removes all the resource permissions where roleId = ? and scope = ? from the database.
 void removeByRoleId(long roleId)
          Removes all the resource permissions where roleId = ? from the database.
 ResourcePermission updateImpl(ResourcePermission resourcePermission, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(ResourcePermission resourcePermission)
Caches the resource permission in the entity cache if it is enabled.

Parameters:
resourcePermission - the resource permission to cache

cacheResult

void cacheResult(List<ResourcePermission> resourcePermissions)
Caches the resource permissions in the entity cache if it is enabled.

Parameters:
resourcePermissions - the resource permissions to cache

create

ResourcePermission create(long resourcePermissionId)
Creates a new resource permission with the primary key. Does not add the resource permission to the database.

Parameters:
resourcePermissionId - the primary key for the new resource permission
Returns:
the new resource permission

remove

ResourcePermission remove(long resourcePermissionId)
                          throws NoSuchResourcePermissionException,
                                 SystemException
Removes the resource permission with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
resourcePermissionId - the primary key of the resource permission to remove
Returns:
the resource permission that was removed
Throws:
NoSuchResourcePermissionException - if a resource permission with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

ResourcePermission updateImpl(ResourcePermission resourcePermission,
                              boolean merge)
                              throws SystemException
Throws:
SystemException

findByPrimaryKey

ResourcePermission findByPrimaryKey(long resourcePermissionId)
                                    throws NoSuchResourcePermissionException,
                                           SystemException
Finds the resource permission with the primary key or throws a NoSuchResourcePermissionException if it could not be found.

Parameters:
resourcePermissionId - the primary key of the resource permission to find
Returns:
the resource permission
Throws:
NoSuchResourcePermissionException - if a resource permission with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

ResourcePermission fetchByPrimaryKey(long resourcePermissionId)
                                     throws SystemException
Finds the resource permission with the primary key or returns null if it could not be found.

Parameters:
resourcePermissionId - the primary key of the resource permission to find
Returns:
the resource permission, or null if a resource permission with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByRoleId

List<ResourcePermission> findByRoleId(long roleId)
                                      throws SystemException
Finds all the resource permissions where roleId = ?.

Parameters:
roleId - the role id to search with
Returns:
the matching resource permissions
Throws:
SystemException - if a system exception occurred

findByRoleId

List<ResourcePermission> findByRoleId(long roleId,
                                      int start,
                                      int end)
                                      throws SystemException
Finds a range of all the resource permissions where roleId = ?.

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.

Parameters:
roleId - the role id to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
Returns:
the range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByRoleId

List<ResourcePermission> findByRoleId(long roleId,
                                      int start,
                                      int end,
                                      OrderByComparator orderByComparator)
                                      throws SystemException
Finds an ordered range of all the resource permissions where roleId = ?.

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.

Parameters:
roleId - the role id to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByRoleId_First

ResourcePermission findByRoleId_First(long roleId,
                                      OrderByComparator orderByComparator)
                                      throws NoSuchResourcePermissionException,
                                             SystemException
Finds the first resource permission in the ordered set where roleId = ?.

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.

Parameters:
roleId - the role id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByRoleId_Last

ResourcePermission findByRoleId_Last(long roleId,
                                     OrderByComparator orderByComparator)
                                     throws NoSuchResourcePermissionException,
                                            SystemException
Finds the last resource permission in the ordered set where roleId = ?.

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.

Parameters:
roleId - the role id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByRoleId_PrevAndNext

ResourcePermission[] findByRoleId_PrevAndNext(long resourcePermissionId,
                                              long roleId,
                                              OrderByComparator orderByComparator)
                                              throws NoSuchResourcePermissionException,
                                                     SystemException
Finds the resource permissions before and after the current resource permission in the ordered set where roleId = ?.

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.

Parameters:
resourcePermissionId - the primary key of the current resource permission
roleId - the role id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next resource permission
Throws:
NoSuchResourcePermissionException - if a resource permission with the primary key could not be found
SystemException - if a system exception occurred

findByR_S

List<ResourcePermission> findByR_S(long roleId,
                                   int scope)
                                   throws SystemException
Finds all the resource permissions where roleId = ? and scope = ?.

Parameters:
roleId - the role id to search with
scope - the scope to search with
Returns:
the matching resource permissions
Throws:
SystemException - if a system exception occurred

findByR_S

List<ResourcePermission> findByR_S(long roleId,
                                   int scope,
                                   int start,
                                   int end)
                                   throws SystemException
Finds a range of all the resource permissions where roleId = ? and scope = ?.

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.

Parameters:
roleId - the role id to search with
scope - the scope to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
Returns:
the range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByR_S

List<ResourcePermission> findByR_S(long roleId,
                                   int scope,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the resource permissions where roleId = ? and scope = ?.

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.

Parameters:
roleId - the role id to search with
scope - the scope to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByR_S_First

ResourcePermission findByR_S_First(long roleId,
                                   int scope,
                                   OrderByComparator orderByComparator)
                                   throws NoSuchResourcePermissionException,
                                          SystemException
Finds the first resource permission in the ordered set where roleId = ? and scope = ?.

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.

Parameters:
roleId - the role id to search with
scope - the scope to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByR_S_Last

ResourcePermission findByR_S_Last(long roleId,
                                  int scope,
                                  OrderByComparator orderByComparator)
                                  throws NoSuchResourcePermissionException,
                                         SystemException
Finds the last resource permission in the ordered set where roleId = ? and scope = ?.

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.

Parameters:
roleId - the role id to search with
scope - the scope to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByR_S_PrevAndNext

ResourcePermission[] findByR_S_PrevAndNext(long resourcePermissionId,
                                           long roleId,
                                           int scope,
                                           OrderByComparator orderByComparator)
                                           throws NoSuchResourcePermissionException,
                                                  SystemException
Finds the resource permissions before and after the current resource permission in the ordered set where roleId = ? and scope = ?.

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.

Parameters:
resourcePermissionId - the primary key of the current resource permission
roleId - the role id to search with
scope - the scope to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next resource permission
Throws:
NoSuchResourcePermissionException - if a resource permission with the primary key could not be found
SystemException - if a system exception occurred

findByC_N_S

List<ResourcePermission> findByC_N_S(long companyId,
                                     String name,
                                     int scope)
                                     throws SystemException
Finds all the resource permissions where companyId = ? and name = ? and scope = ?.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
Returns:
the matching resource permissions
Throws:
SystemException - if a system exception occurred

findByC_N_S

List<ResourcePermission> findByC_N_S(long companyId,
                                     String name,
                                     int scope,
                                     int start,
                                     int end)
                                     throws SystemException
Finds a range of all the resource permissions where companyId = ? and name = ? and scope = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
Returns:
the range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByC_N_S

List<ResourcePermission> findByC_N_S(long companyId,
                                     String name,
                                     int scope,
                                     int start,
                                     int end,
                                     OrderByComparator orderByComparator)
                                     throws SystemException
Finds an ordered range of all the resource permissions where companyId = ? and name = ? and scope = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByC_N_S_First

ResourcePermission findByC_N_S_First(long companyId,
                                     String name,
                                     int scope,
                                     OrderByComparator orderByComparator)
                                     throws NoSuchResourcePermissionException,
                                            SystemException
Finds the first resource permission in the ordered set where companyId = ? and name = ? and scope = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByC_N_S_Last

ResourcePermission findByC_N_S_Last(long companyId,
                                    String name,
                                    int scope,
                                    OrderByComparator orderByComparator)
                                    throws NoSuchResourcePermissionException,
                                           SystemException
Finds the last resource permission in the ordered set where companyId = ? and name = ? and scope = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByC_N_S_PrevAndNext

ResourcePermission[] findByC_N_S_PrevAndNext(long resourcePermissionId,
                                             long companyId,
                                             String name,
                                             int scope,
                                             OrderByComparator orderByComparator)
                                             throws NoSuchResourcePermissionException,
                                                    SystemException
Finds the resource permissions before and after the current resource permission in the ordered set where companyId = ? and name = ? and scope = ?.

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.

Parameters:
resourcePermissionId - the primary key of the current resource permission
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next resource permission
Throws:
NoSuchResourcePermissionException - if a resource permission with the primary key could not be found
SystemException - if a system exception occurred

findByC_N_S_P

List<ResourcePermission> findByC_N_S_P(long companyId,
                                       String name,
                                       int scope,
                                       String primKey)
                                       throws SystemException
Finds all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
Returns:
the matching resource permissions
Throws:
SystemException - if a system exception occurred

findByC_N_S_P

List<ResourcePermission> findByC_N_S_P(long companyId,
                                       String name,
                                       int scope,
                                       String primKey,
                                       int start,
                                       int end)
                                       throws SystemException
Finds a range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
Returns:
the range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByC_N_S_P

List<ResourcePermission> findByC_N_S_P(long companyId,
                                       String name,
                                       int scope,
                                       String primKey,
                                       int start,
                                       int end,
                                       OrderByComparator orderByComparator)
                                       throws SystemException
Finds an ordered range of all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching resource permissions
Throws:
SystemException - if a system exception occurred

findByC_N_S_P_First

ResourcePermission findByC_N_S_P_First(long companyId,
                                       String name,
                                       int scope,
                                       String primKey,
                                       OrderByComparator orderByComparator)
                                       throws NoSuchResourcePermissionException,
                                              SystemException
Finds the first resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByC_N_S_P_Last

ResourcePermission findByC_N_S_P_Last(long companyId,
                                      String name,
                                      int scope,
                                      String primKey,
                                      OrderByComparator orderByComparator)
                                      throws NoSuchResourcePermissionException,
                                             SystemException
Finds the last resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.

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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

findByC_N_S_P_PrevAndNext

ResourcePermission[] findByC_N_S_P_PrevAndNext(long resourcePermissionId,
                                               long companyId,
                                               String name,
                                               int scope,
                                               String primKey,
                                               OrderByComparator orderByComparator)
                                               throws NoSuchResourcePermissionException,
                                                      SystemException
Finds the resource permissions before and after the current resource permission in the ordered set where companyId = ? and name = ? and scope = ? and primKey = ?.

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.

Parameters:
resourcePermissionId - the primary key of the current resource permission
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next resource permission
Throws:
NoSuchResourcePermissionException - if a resource permission with the primary key could not be found
SystemException - if a system exception occurred

findByC_N_S_P_R

ResourcePermission findByC_N_S_P_R(long companyId,
                                   String name,
                                   int scope,
                                   String primKey,
                                   long roleId)
                                   throws NoSuchResourcePermissionException,
                                          SystemException
Finds the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? or throws a NoSuchResourcePermissionException if it could not be found.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
roleId - the role id to search with
Returns:
the matching resource permission
Throws:
NoSuchResourcePermissionException - if a matching resource permission could not be found
SystemException - if a system exception occurred

fetchByC_N_S_P_R

ResourcePermission fetchByC_N_S_P_R(long companyId,
                                    String name,
                                    int scope,
                                    String primKey,
                                    long roleId)
                                    throws SystemException
Finds the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
roleId - the role id to search with
Returns:
the matching resource permission, or null if a matching resource permission could not be found
Throws:
SystemException - if a system exception occurred

fetchByC_N_S_P_R

ResourcePermission fetchByC_N_S_P_R(long companyId,
                                    String name,
                                    int scope,
                                    String primKey,
                                    long roleId,
                                    boolean retrieveFromCache)
                                    throws SystemException
Finds 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.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
roleId - the role id to search with
Returns:
the matching resource permission, or null if a matching resource permission could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<ResourcePermission> findAll()
                                 throws SystemException
Finds all the resource permissions.

Returns:
the resource permissions
Throws:
SystemException - if a system exception occurred

findAll

List<ResourcePermission> findAll(int start,
                                 int end)
                                 throws SystemException
Finds a range of all the resource permissions.

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.

Parameters:
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
Returns:
the range of resource permissions
Throws:
SystemException - if a system exception occurred

findAll

List<ResourcePermission> findAll(int start,
                                 int end,
                                 OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the resource permissions.

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.

Parameters:
start - the lower bound of the range of resource permissions to return
end - the upper bound of the range of resource permissions to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of resource permissions
Throws:
SystemException - if a system exception occurred

removeByRoleId

void removeByRoleId(long roleId)
                    throws SystemException
Removes all the resource permissions where roleId = ? from the database.

Parameters:
roleId - the role id to search with
Throws:
SystemException - if a system exception occurred

removeByR_S

void removeByR_S(long roleId,
                 int scope)
                 throws SystemException
Removes all the resource permissions where roleId = ? and scope = ? from the database.

Parameters:
roleId - the role id to search with
scope - the scope to search with
Throws:
SystemException - if a system exception occurred

removeByC_N_S

void removeByC_N_S(long companyId,
                   String name,
                   int scope)
                   throws SystemException
Removes all the resource permissions where companyId = ? and name = ? and scope = ? from the database.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
Throws:
SystemException - if a system exception occurred

removeByC_N_S_P

void removeByC_N_S_P(long companyId,
                     String name,
                     int scope,
                     String primKey)
                     throws SystemException
Removes all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? from the database.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
Throws:
SystemException - if a system exception occurred

removeByC_N_S_P_R

void removeByC_N_S_P_R(long companyId,
                       String name,
                       int scope,
                       String primKey,
                       long roleId)
                       throws NoSuchResourcePermissionException,
                              SystemException
Removes the resource permission where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ? from the database.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
roleId - the role id to search with
Throws:
SystemException - if a system exception occurred
NoSuchResourcePermissionException

removeAll

void removeAll()
               throws SystemException
Removes all the resource permissions from the database.

Throws:
SystemException - if a system exception occurred

countByRoleId

int countByRoleId(long roleId)
                  throws SystemException
Counts all the resource permissions where roleId = ?.

Parameters:
roleId - the role id to search with
Returns:
the number of matching resource permissions
Throws:
SystemException - if a system exception occurred

countByR_S

int countByR_S(long roleId,
               int scope)
               throws SystemException
Counts all the resource permissions where roleId = ? and scope = ?.

Parameters:
roleId - the role id to search with
scope - the scope to search with
Returns:
the number of matching resource permissions
Throws:
SystemException - if a system exception occurred

countByC_N_S

int countByC_N_S(long companyId,
                 String name,
                 int scope)
                 throws SystemException
Counts all the resource permissions where companyId = ? and name = ? and scope = ?.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
Returns:
the number of matching resource permissions
Throws:
SystemException - if a system exception occurred

countByC_N_S_P

int countByC_N_S_P(long companyId,
                   String name,
                   int scope,
                   String primKey)
                   throws SystemException
Counts all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ?.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
Returns:
the number of matching resource permissions
Throws:
SystemException - if a system exception occurred

countByC_N_S_P_R

int countByC_N_S_P_R(long companyId,
                     String name,
                     int scope,
                     String primKey,
                     long roleId)
                     throws SystemException
Counts all the resource permissions where companyId = ? and name = ? and scope = ? and primKey = ? and roleId = ?.

Parameters:
companyId - the company id to search with
name - the name to search with
scope - the scope to search with
primKey - the prim key to search with
roleId - the role id to search with
Returns:
the number of matching resource permissions
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the resource permissions.

Returns:
the number of resource permissions
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5