Liferay 6.1.2-ce-ga3

com.liferay.portal.service.persistence
Interface ResourceBlockPermissionPersistence

All Superinterfaces:
BasePersistence<ResourceBlockPermission>
All Known Implementing Classes:
ResourceBlockPermissionPersistenceImpl

public interface ResourceBlockPermissionPersistence
extends BasePersistence<ResourceBlockPermission>

The persistence interface for the resource block permission service.

Caching information and settings can be found in portal.properties

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

Method Summary
 void cacheResult(List<ResourceBlockPermission> resourceBlockPermissions)
          Caches the resource block permissions in the entity cache if it is enabled.
 void cacheResult(ResourceBlockPermission resourceBlockPermission)
          Caches the resource block permission in the entity cache if it is enabled.
 int countAll()
          Returns the number of resource block permissions.
 int countByR_R(long resourceBlockId, long roleId)
          Returns the number of resource block permissions where resourceBlockId = ? and roleId = ?.
 int countByResourceBlockId(long resourceBlockId)
          Returns the number of resource block permissions where resourceBlockId = ?.
 ResourceBlockPermission create(long resourceBlockPermissionId)
          Creates a new resource block permission with the primary key.
 ResourceBlockPermission fetchByPrimaryKey(long resourceBlockPermissionId)
          Returns the resource block permission with the primary key or returns null if it could not be found.
 ResourceBlockPermission fetchByR_R(long resourceBlockId, long roleId)
          Returns the resource block permission where resourceBlockId = ? and roleId = ? or returns null if it could not be found.
 ResourceBlockPermission fetchByR_R(long resourceBlockId, long roleId, boolean retrieveFromCache)
          Returns the resource block permission where resourceBlockId = ? and roleId = ? or returns null if it could not be found, optionally using the finder cache.
 ResourceBlockPermission fetchByResourceBlockId_First(long resourceBlockId, OrderByComparator orderByComparator)
          Returns the first resource block permission in the ordered set where resourceBlockId = ?.
 ResourceBlockPermission fetchByResourceBlockId_Last(long resourceBlockId, OrderByComparator orderByComparator)
          Returns the last resource block permission in the ordered set where resourceBlockId = ?.
 List<ResourceBlockPermission> findAll()
          Returns all the resource block permissions.
 List<ResourceBlockPermission> findAll(int start, int end)
          Returns a range of all the resource block permissions.
 List<ResourceBlockPermission> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the resource block permissions.
 ResourceBlockPermission findByPrimaryKey(long resourceBlockPermissionId)
          Returns the resource block permission with the primary key or throws a NoSuchResourceBlockPermissionException if it could not be found.
 ResourceBlockPermission findByR_R(long resourceBlockId, long roleId)
          Returns the resource block permission where resourceBlockId = ? and roleId = ? or throws a NoSuchResourceBlockPermissionException if it could not be found.
 ResourceBlockPermission findByResourceBlockId_First(long resourceBlockId, OrderByComparator orderByComparator)
          Returns the first resource block permission in the ordered set where resourceBlockId = ?.
 ResourceBlockPermission findByResourceBlockId_Last(long resourceBlockId, OrderByComparator orderByComparator)
          Returns the last resource block permission in the ordered set where resourceBlockId = ?.
 ResourceBlockPermission[] findByResourceBlockId_PrevAndNext(long resourceBlockPermissionId, long resourceBlockId, OrderByComparator orderByComparator)
          Returns the resource block permissions before and after the current resource block permission in the ordered set where resourceBlockId = ?.
 List<ResourceBlockPermission> findByResourceBlockId(long resourceBlockId)
          Returns all the resource block permissions where resourceBlockId = ?.
 List<ResourceBlockPermission> findByResourceBlockId(long resourceBlockId, int start, int end)
          Returns a range of all the resource block permissions where resourceBlockId = ?.
 List<ResourceBlockPermission> findByResourceBlockId(long resourceBlockId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the resource block permissions where resourceBlockId = ?.
 ResourceBlockPermission remove(long resourceBlockPermissionId)
          Removes the resource block permission with the primary key from the database.
 void removeAll()
          Removes all the resource block permissions from the database.
 ResourceBlockPermission removeByR_R(long resourceBlockId, long roleId)
          Removes the resource block permission where resourceBlockId = ? and roleId = ? from the database.
 void removeByResourceBlockId(long resourceBlockId)
          Removes all the resource block permissions where resourceBlockId = ? from the database.
 ResourceBlockPermission updateImpl(ResourceBlockPermission resourceBlockPermission, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(ResourceBlockPermission resourceBlockPermission)
Caches the resource block permission in the entity cache if it is enabled.

Parameters:
resourceBlockPermission - the resource block permission

cacheResult

void cacheResult(List<ResourceBlockPermission> resourceBlockPermissions)
Caches the resource block permissions in the entity cache if it is enabled.

Parameters:
resourceBlockPermissions - the resource block permissions

create

ResourceBlockPermission create(long resourceBlockPermissionId)
Creates a new resource block permission with the primary key. Does not add the resource block permission to the database.

Parameters:
resourceBlockPermissionId - the primary key for the new resource block permission
Returns:
the new resource block permission

remove

ResourceBlockPermission remove(long resourceBlockPermissionId)
                               throws NoSuchResourceBlockPermissionException,
                                      SystemException
Removes the resource block permission with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
resourceBlockPermissionId - the primary key of the resource block permission
Returns:
the resource block permission that was removed
Throws:
NoSuchResourceBlockPermissionException - if a resource block permission with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

ResourceBlockPermission updateImpl(ResourceBlockPermission resourceBlockPermission,
                                   boolean merge)
                                   throws SystemException
Throws:
SystemException

findByPrimaryKey

ResourceBlockPermission findByPrimaryKey(long resourceBlockPermissionId)
                                         throws NoSuchResourceBlockPermissionException,
                                                SystemException
Returns the resource block permission with the primary key or throws a NoSuchResourceBlockPermissionException if it could not be found.

Parameters:
resourceBlockPermissionId - the primary key of the resource block permission
Returns:
the resource block permission
Throws:
NoSuchResourceBlockPermissionException - if a resource block permission with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

ResourceBlockPermission fetchByPrimaryKey(long resourceBlockPermissionId)
                                          throws SystemException
Returns the resource block permission with the primary key or returns null if it could not be found.

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

findByResourceBlockId

List<ResourceBlockPermission> findByResourceBlockId(long resourceBlockId)
                                                    throws SystemException
Returns all the resource block permissions where resourceBlockId = ?.

Parameters:
resourceBlockId - the resource block ID
Returns:
the matching resource block permissions
Throws:
SystemException - if a system exception occurred

findByResourceBlockId

List<ResourceBlockPermission> findByResourceBlockId(long resourceBlockId,
                                                    int start,
                                                    int end)
                                                    throws SystemException
Returns a range of all the resource block permissions where resourceBlockId = ?.

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:
resourceBlockId - the resource block ID
start - the lower bound of the range of resource block permissions
end - the upper bound of the range of resource block permissions (not inclusive)
Returns:
the range of matching resource block permissions
Throws:
SystemException - if a system exception occurred

findByResourceBlockId

List<ResourceBlockPermission> findByResourceBlockId(long resourceBlockId,
                                                    int start,
                                                    int end,
                                                    OrderByComparator orderByComparator)
                                                    throws SystemException
Returns an ordered range of all the resource block permissions where resourceBlockId = ?.

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:
resourceBlockId - the resource block ID
start - the lower bound of the range of resource block permissions
end - the upper bound of the range of resource block permissions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching resource block permissions
Throws:
SystemException - if a system exception occurred

findByResourceBlockId_First

ResourceBlockPermission findByResourceBlockId_First(long resourceBlockId,
                                                    OrderByComparator orderByComparator)
                                                    throws NoSuchResourceBlockPermissionException,
                                                           SystemException
Returns the first resource block permission in the ordered set where resourceBlockId = ?.

Parameters:
resourceBlockId - the resource block ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching resource block permission
Throws:
NoSuchResourceBlockPermissionException - if a matching resource block permission could not be found
SystemException - if a system exception occurred

fetchByResourceBlockId_First

ResourceBlockPermission fetchByResourceBlockId_First(long resourceBlockId,
                                                     OrderByComparator orderByComparator)
                                                     throws SystemException
Returns the first resource block permission in the ordered set where resourceBlockId = ?.

Parameters:
resourceBlockId - the resource block ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching resource block permission, or null if a matching resource block permission could not be found
Throws:
SystemException - if a system exception occurred

findByResourceBlockId_Last

ResourceBlockPermission findByResourceBlockId_Last(long resourceBlockId,
                                                   OrderByComparator orderByComparator)
                                                   throws NoSuchResourceBlockPermissionException,
                                                          SystemException
Returns the last resource block permission in the ordered set where resourceBlockId = ?.

Parameters:
resourceBlockId - the resource block ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching resource block permission
Throws:
NoSuchResourceBlockPermissionException - if a matching resource block permission could not be found
SystemException - if a system exception occurred

fetchByResourceBlockId_Last

ResourceBlockPermission fetchByResourceBlockId_Last(long resourceBlockId,
                                                    OrderByComparator orderByComparator)
                                                    throws SystemException
Returns the last resource block permission in the ordered set where resourceBlockId = ?.

Parameters:
resourceBlockId - the resource block ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching resource block permission, or null if a matching resource block permission could not be found
Throws:
SystemException - if a system exception occurred

findByResourceBlockId_PrevAndNext

ResourceBlockPermission[] findByResourceBlockId_PrevAndNext(long resourceBlockPermissionId,
                                                            long resourceBlockId,
                                                            OrderByComparator orderByComparator)
                                                            throws NoSuchResourceBlockPermissionException,
                                                                   SystemException
Returns the resource block permissions before and after the current resource block permission in the ordered set where resourceBlockId = ?.

Parameters:
resourceBlockPermissionId - the primary key of the current resource block permission
resourceBlockId - the resource block ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next resource block permission
Throws:
NoSuchResourceBlockPermissionException - if a resource block permission with the primary key could not be found
SystemException - if a system exception occurred

findByR_R

ResourceBlockPermission findByR_R(long resourceBlockId,
                                  long roleId)
                                  throws NoSuchResourceBlockPermissionException,
                                         SystemException
Returns the resource block permission where resourceBlockId = ? and roleId = ? or throws a NoSuchResourceBlockPermissionException if it could not be found.

Parameters:
resourceBlockId - the resource block ID
roleId - the role ID
Returns:
the matching resource block permission
Throws:
NoSuchResourceBlockPermissionException - if a matching resource block permission could not be found
SystemException - if a system exception occurred

fetchByR_R

ResourceBlockPermission fetchByR_R(long resourceBlockId,
                                   long roleId)
                                   throws SystemException
Returns the resource block permission where resourceBlockId = ? and roleId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
resourceBlockId - the resource block ID
roleId - the role ID
Returns:
the matching resource block permission, or null if a matching resource block permission could not be found
Throws:
SystemException - if a system exception occurred

fetchByR_R

ResourceBlockPermission fetchByR_R(long resourceBlockId,
                                   long roleId,
                                   boolean retrieveFromCache)
                                   throws SystemException
Returns the resource block permission where resourceBlockId = ? and roleId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
resourceBlockId - the resource block ID
roleId - the role ID
retrieveFromCache - whether to use the finder cache
Returns:
the matching resource block permission, or null if a matching resource block permission could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<ResourceBlockPermission> findAll()
                                      throws SystemException
Returns all the resource block permissions.

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

findAll

List<ResourceBlockPermission> findAll(int start,
                                      int end)
                                      throws SystemException
Returns a range of all the resource block 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 block permissions
end - the upper bound of the range of resource block permissions (not inclusive)
Returns:
the range of resource block permissions
Throws:
SystemException - if a system exception occurred

findAll

List<ResourceBlockPermission> findAll(int start,
                                      int end,
                                      OrderByComparator orderByComparator)
                                      throws SystemException
Returns an ordered range of all the resource block 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 block permissions
end - the upper bound of the range of resource block permissions (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of resource block permissions
Throws:
SystemException - if a system exception occurred

removeByResourceBlockId

void removeByResourceBlockId(long resourceBlockId)
                             throws SystemException
Removes all the resource block permissions where resourceBlockId = ? from the database.

Parameters:
resourceBlockId - the resource block ID
Throws:
SystemException - if a system exception occurred

removeByR_R

ResourceBlockPermission removeByR_R(long resourceBlockId,
                                    long roleId)
                                    throws NoSuchResourceBlockPermissionException,
                                           SystemException
Removes the resource block permission where resourceBlockId = ? and roleId = ? from the database.

Parameters:
resourceBlockId - the resource block ID
roleId - the role ID
Returns:
the resource block permission that was removed
Throws:
SystemException - if a system exception occurred
NoSuchResourceBlockPermissionException

removeAll

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

Throws:
SystemException - if a system exception occurred

countByResourceBlockId

int countByResourceBlockId(long resourceBlockId)
                           throws SystemException
Returns the number of resource block permissions where resourceBlockId = ?.

Parameters:
resourceBlockId - the resource block ID
Returns:
the number of matching resource block permissions
Throws:
SystemException - if a system exception occurred

countByR_R

int countByR_R(long resourceBlockId,
               long roleId)
               throws SystemException
Returns the number of resource block permissions where resourceBlockId = ? and roleId = ?.

Parameters:
resourceBlockId - the resource block ID
roleId - the role ID
Returns:
the number of matching resource block permissions
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of resource block permissions.

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

Liferay 6.1.2-ce-ga3