|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.persistence.ReleaseUtil
public class ReleaseUtil
The persistence utility for the release service.
Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regnerate this class.
ReleasePersistence,
ReleasePersistenceImpl| 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()
Counts all the releases. |
static int |
countByServletContextName(String servletContextName)
Counts all the 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)
Finds the release with the primary key or returns null if it could not be found. |
static Release |
fetchByServletContextName(String servletContextName)
Finds the release where servletContextName = ? or returns null if it could not be found. |
static Release |
fetchByServletContextName(String servletContextName,
boolean retrieveFromCache)
Finds the release where servletContextName = ? or returns null if it could not be found, optionally using the finder cache. |
static List<Release> |
findAll()
Finds all the releases. |
static List<Release> |
findAll(int start,
int end)
Finds a range of all the releases. |
static List<Release> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the releases. |
static Release |
findByPrimaryKey(long releaseId)
Finds the release with the primary key or throws a NoSuchReleaseException if it could not be found. |
static Release |
findByServletContextName(String servletContextName)
Finds 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 Release |
remove(Release release)
|
static void |
removeAll()
Removes all the releases from the database. |
static void |
removeByServletContextName(String servletContextName)
Removes the release where servletContextName = ? from the database. |
void |
setPersistence(ReleasePersistence persistence)
|
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 |
|---|
public ReleaseUtil()
| Method Detail |
|---|
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(Release release)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static Release remove(Release release)
throws SystemException
SystemExceptionBasePersistence.remove(com.liferay.portal.model.BaseModel)
public static Release update(Release release,
boolean merge)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel, boolean)
public static Release update(Release release,
boolean merge,
ServiceContext serviceContext)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)public static void cacheResult(Release release)
release - the release to cachepublic static void cacheResult(List<Release> releases)
releases - the releases to cachepublic static Release create(long releaseId)
releaseId - the primary key for the new release
public static Release remove(long releaseId)
throws NoSuchReleaseException,
SystemException
releaseId - the primary key of the release to remove
NoSuchReleaseException - if a release with the primary key could not be found
SystemException - if a system exception occurred
public static Release updateImpl(Release release,
boolean merge)
throws SystemException
SystemException
public static Release findByPrimaryKey(long releaseId)
throws NoSuchReleaseException,
SystemException
NoSuchReleaseException if it could not be found.
releaseId - the primary key of the release to find
NoSuchReleaseException - if a release with the primary key could not be found
SystemException - if a system exception occurred
public static Release fetchByPrimaryKey(long releaseId)
throws SystemException
null if it could not be found.
releaseId - the primary key of the release to find
null if a release with the primary key could not be found
SystemException - if a system exception occurred
public static Release findByServletContextName(String servletContextName)
throws NoSuchReleaseException,
SystemException
NoSuchReleaseException if it could not be found.
servletContextName - the servlet context name to search with
NoSuchReleaseException - if a matching release could not be found
SystemException - if a system exception occurred
public static Release fetchByServletContextName(String servletContextName)
throws SystemException
null if it could not be found. Uses the finder cache.
servletContextName - the servlet context name to search with
null if a matching release could not be found
SystemException - if a system exception occurred
public static Release fetchByServletContextName(String servletContextName,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
servletContextName - the servlet context name to search with
null if a matching release could not be found
SystemException - if a system exception occurred
public static List<Release> findAll()
throws SystemException
SystemException - if a system exception occurred
public static List<Release> findAll(int start,
int end)
throws SystemException
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.
start - the lower bound of the range of releases to returnend - the upper bound of the range of releases to return (not inclusive)
SystemException - if a system exception occurred
public static List<Release> findAll(int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
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.
start - the lower bound of the range of releases to returnend - the upper bound of the range of releases to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public static void removeByServletContextName(String servletContextName)
throws NoSuchReleaseException,
SystemException
servletContextName - the servlet context name to search with
SystemException - if a system exception occurred
NoSuchReleaseException
public static void removeAll()
throws SystemException
SystemException - if a system exception occurred
public static int countByServletContextName(String servletContextName)
throws SystemException
servletContextName - the servlet context name to search with
SystemException - if a system exception occurred
public static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static ReleasePersistence getPersistence()
public void setPersistence(ReleasePersistence persistence)
|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||