Liferay 6.1.2-ce-ga3

com.liferay.portal.service.persistence
Class ReleaseUtil

java.lang.Object
  extended by com.liferay.portal.service.persistence.ReleaseUtil

public class ReleaseUtil
extends Object

The persistence utility for the release service. This utility wraps ReleasePersistenceImpl 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

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

Constructor Summary
ReleaseUtil()
           
 
Method Summary
static void cacheResult(List<Release> releases)
          Caches the releases in the entity cache if it is enabled.
static void cacheResult(Release release)
          Caches the release in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(Release release)
           
static int countAll()
          Returns the number of releases.
static int countByServletContextName(String servletContextName)
          Returns the number of releases where servletContextName = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static Release create(long releaseId)
          Creates a new release with the primary key.
static Release fetchByPrimaryKey(long releaseId)
          Returns the release with the primary key or returns null if it could not be found.
static Release fetchByServletContextName(String servletContextName)
          Returns the release where servletContextName = ? or returns null if it could not be found.
static Release fetchByServletContextName(String servletContextName, boolean retrieveFromCache)
          Returns the release where servletContextName = ? or returns null if it could not be found, optionally using the finder cache.
static List<Release> findAll()
          Returns all the releases.
static List<Release> findAll(int start, int end)
          Returns a range of all the releases.
static List<Release> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the releases.
static Release findByPrimaryKey(long releaseId)
          Returns the release with the primary key or throws a NoSuchReleaseException if it could not be found.
static Release findByServletContextName(String servletContextName)
          Returns the release where servletContextName = ? or throws a NoSuchReleaseException if it could not be found.
static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static ReleasePersistence getPersistence()
           
static Release remove(long releaseId)
          Removes the release with the primary key from the database.
static void removeAll()
          Removes all the releases from the database.
static Release removeByServletContextName(String servletContextName)
          Removes the release where servletContextName = ? from the database.
 void setPersistence(ReleasePersistence persistence)
          Deprecated.  
static Release update(Release release, boolean merge)
           
static Release update(Release release, boolean merge, ServiceContext serviceContext)
           
static Release updateImpl(Release release, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ReleaseUtil

public ReleaseUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(Release release)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public long countWithDynamicQuery(DynamicQuery dynamicQuery)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                 int start,
                                                 int end)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                 int start,
                                                 int end,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static Release update(Release release,
                             boolean merge)
                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static Release update(Release release,
                             boolean merge,
                             ServiceContext serviceContext)
                      throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(Release release)
Caches the release in the entity cache if it is enabled.

Parameters:
release - the release

cacheResult

public static void cacheResult(List<Release> releases)
Caches the releases in the entity cache if it is enabled.

Parameters:
releases - the releases

create

public static Release create(long releaseId)
Creates a new release with the primary key. Does not add the release to the database.

Parameters:
releaseId - the primary key for the new release
Returns:
the new release

remove

public static Release remove(long releaseId)
                      throws NoSuchReleaseException,
                             SystemException
Removes the release with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
releaseId - the primary key of the release
Returns:
the release that was removed
Throws:
NoSuchReleaseException - if a release with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static Release updateImpl(Release release,
                                 boolean merge)
                          throws SystemException
Throws:
SystemException

findByPrimaryKey

public static Release findByPrimaryKey(long releaseId)
                                throws NoSuchReleaseException,
                                       SystemException
Returns the release with the primary key or throws a NoSuchReleaseException if it could not be found.

Parameters:
releaseId - the primary key of the release
Returns:
the release
Throws:
NoSuchReleaseException - if a release with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static Release fetchByPrimaryKey(long releaseId)
                                 throws SystemException
Returns the release with the primary key or returns null if it could not be found.

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

findByServletContextName

public static Release findByServletContextName(String servletContextName)
                                        throws NoSuchReleaseException,
                                               SystemException
Returns the release where servletContextName = ? or throws a NoSuchReleaseException if it could not be found.

Parameters:
servletContextName - the servlet context name
Returns:
the matching release
Throws:
NoSuchReleaseException - if a matching release could not be found
SystemException - if a system exception occurred

fetchByServletContextName

public static Release fetchByServletContextName(String servletContextName)
                                         throws SystemException
Returns the release where servletContextName = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
servletContextName - the servlet context name
Returns:
the matching release, or null if a matching release could not be found
Throws:
SystemException - if a system exception occurred

fetchByServletContextName

public static Release fetchByServletContextName(String servletContextName,
                                                boolean retrieveFromCache)
                                         throws SystemException
Returns the release where servletContextName = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
servletContextName - the servlet context name
retrieveFromCache - whether to use the finder cache
Returns:
the matching release, or null if a matching release could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<Release> findAll()
                             throws SystemException
Returns all the releases.

Returns:
the releases
Throws:
SystemException - if a system exception occurred

findAll

public static List<Release> findAll(int start,
                                    int end)
                             throws SystemException
Returns a range of all the releases.

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

findAll

public static List<Release> findAll(int start,
                                    int end,
                                    OrderByComparator orderByComparator)
                             throws SystemException
Returns an ordered range of all the releases.

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

removeByServletContextName

public static Release removeByServletContextName(String servletContextName)
                                          throws NoSuchReleaseException,
                                                 SystemException
Removes the release where servletContextName = ? from the database.

Parameters:
servletContextName - the servlet context name
Returns:
the release that was removed
Throws:
SystemException - if a system exception occurred
NoSuchReleaseException

removeAll

public static void removeAll()
                      throws SystemException
Removes all the releases from the database.

Throws:
SystemException - if a system exception occurred

countByServletContextName

public static int countByServletContextName(String servletContextName)
                                     throws SystemException
Returns the number of releases where servletContextName = ?.

Parameters:
servletContextName - the servlet context name
Returns:
the number of matching releases
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of releases.

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

getPersistence

public static ReleasePersistence getPersistence()

setPersistence

public void setPersistence(ReleasePersistence persistence)
Deprecated. 


Liferay 6.1.2-ce-ga3