Liferay 6.1.2-ce-ga3

com.liferay.portal.service.persistence
Interface ClusterGroupPersistence

All Superinterfaces:
BasePersistence<ClusterGroup>

public interface ClusterGroupPersistence
extends BasePersistence<ClusterGroup>

The persistence interface for the cluster group service.

Caching information and settings can be found in portal.properties

See Also:
ClusterGroupPersistenceImpl, ClusterGroupUtil

Method Summary
 void cacheResult(ClusterGroup clusterGroup)
          Caches the cluster group in the entity cache if it is enabled.
 void cacheResult(List<ClusterGroup> clusterGroups)
          Caches the cluster groups in the entity cache if it is enabled.
 int countAll()
          Returns the number of cluster groups.
 ClusterGroup create(long clusterGroupId)
          Creates a new cluster group with the primary key.
 ClusterGroup fetchByPrimaryKey(long clusterGroupId)
          Returns the cluster group with the primary key or returns null if it could not be found.
 List<ClusterGroup> findAll()
          Returns all the cluster groups.
 List<ClusterGroup> findAll(int start, int end)
          Returns a range of all the cluster groups.
 List<ClusterGroup> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the cluster groups.
 ClusterGroup findByPrimaryKey(long clusterGroupId)
          Returns the cluster group with the primary key or throws a NoSuchClusterGroupException if it could not be found.
 ClusterGroup remove(long clusterGroupId)
          Removes the cluster group with the primary key from the database.
 void removeAll()
          Removes all the cluster groups from the database.
 ClusterGroup updateImpl(ClusterGroup clusterGroup, 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(ClusterGroup clusterGroup)
Caches the cluster group in the entity cache if it is enabled.

Parameters:
clusterGroup - the cluster group

cacheResult

void cacheResult(List<ClusterGroup> clusterGroups)
Caches the cluster groups in the entity cache if it is enabled.

Parameters:
clusterGroups - the cluster groups

create

ClusterGroup create(long clusterGroupId)
Creates a new cluster group with the primary key. Does not add the cluster group to the database.

Parameters:
clusterGroupId - the primary key for the new cluster group
Returns:
the new cluster group

remove

ClusterGroup remove(long clusterGroupId)
                    throws NoSuchClusterGroupException,
                           SystemException
Removes the cluster group with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
clusterGroupId - the primary key of the cluster group
Returns:
the cluster group that was removed
Throws:
NoSuchClusterGroupException - if a cluster group with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

ClusterGroup updateImpl(ClusterGroup clusterGroup,
                        boolean merge)
                        throws SystemException
Throws:
SystemException

findByPrimaryKey

ClusterGroup findByPrimaryKey(long clusterGroupId)
                              throws NoSuchClusterGroupException,
                                     SystemException
Returns the cluster group with the primary key or throws a NoSuchClusterGroupException if it could not be found.

Parameters:
clusterGroupId - the primary key of the cluster group
Returns:
the cluster group
Throws:
NoSuchClusterGroupException - if a cluster group with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

ClusterGroup fetchByPrimaryKey(long clusterGroupId)
                               throws SystemException
Returns the cluster group with the primary key or returns null if it could not be found.

Parameters:
clusterGroupId - the primary key of the cluster group
Returns:
the cluster group, or null if a cluster group with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<ClusterGroup> findAll()
                           throws SystemException
Returns all the cluster groups.

Returns:
the cluster groups
Throws:
SystemException - if a system exception occurred

findAll

List<ClusterGroup> findAll(int start,
                           int end)
                           throws SystemException
Returns a range of all the cluster groups.

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 cluster groups
end - the upper bound of the range of cluster groups (not inclusive)
Returns:
the range of cluster groups
Throws:
SystemException - if a system exception occurred

findAll

List<ClusterGroup> findAll(int start,
                           int end,
                           OrderByComparator orderByComparator)
                           throws SystemException
Returns an ordered range of all the cluster groups.

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 cluster groups
end - the upper bound of the range of cluster groups (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of cluster groups
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the cluster groups from the database.

Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of cluster groups.

Returns:
the number of cluster groups
Throws:
SystemException - if a system exception occurred

Liferay 6.1.2-ce-ga3