@ProviderType
public class ReleaseUtil
extends Object
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
ReleasePersistence
,
ReleasePersistenceImpl
Constructor and Description |
---|
ReleaseUtil() |
Modifier and Type | Method and Description |
---|---|
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 = ?.
|
static 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 Map<Serializable,Release> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
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<Release> orderByComparator)
Returns an ordered range of all the releases.
|
static List<Release> |
findAll(int start,
int end,
OrderByComparator<Release> orderByComparator,
boolean retrieveFromCache)
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<Release> orderByComparator) |
static Set<String> |
getBadColumnNames() |
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.
|
static Release |
update(Release release) |
static Release |
update(Release release,
ServiceContext serviceContext) |
static Release |
updateImpl(Release release) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(Release release)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<Release> orderByComparator)
public static Release update(Release release, ServiceContext serviceContext)
public static Release findByServletContextName(String servletContextName) throws NoSuchReleaseException
NoSuchReleaseException
if it could not be found.servletContextName
- the servlet context nameNoSuchReleaseException
- if a matching release could not be foundpublic static Release fetchByServletContextName(String servletContextName)
null
if it could not be found. Uses the finder cache.servletContextName
- the servlet context namenull
if a matching release could not be foundpublic static Release fetchByServletContextName(String servletContextName, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.servletContextName
- the servlet context nameretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching release could not be foundpublic static Release removeByServletContextName(String servletContextName) throws NoSuchReleaseException
servletContextName
- the servlet context nameNoSuchReleaseException
public static int countByServletContextName(String servletContextName)
servletContextName
- the servlet context namepublic static void cacheResult(Release release)
release
- the releasepublic static void cacheResult(List<Release> releases)
releases
- the releasespublic static Release create(long releaseId)
releaseId
- the primary key for the new releasepublic static Release remove(long releaseId) throws NoSuchReleaseException
releaseId
- the primary key of the releaseNoSuchReleaseException
- if a release with the primary key could not be foundpublic static Release findByPrimaryKey(long releaseId) throws NoSuchReleaseException
NoSuchReleaseException
if it could not be found.releaseId
- the primary key of the releaseNoSuchReleaseException
- if a release with the primary key could not be foundpublic static Release fetchByPrimaryKey(long releaseId)
null
if it could not be found.releaseId
- the primary key of the releasenull
if a release with the primary key could not be foundpublic static Map<Serializable,Release> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
public static List<Release> findAll()
public static List<Release> findAll(int start, int end)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from ReleaseModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of releasesend
- the upper bound of the range of releases (not inclusive)public static List<Release> findAll(int start, int end, OrderByComparator<Release> orderByComparator)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from ReleaseModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of releasesend
- the upper bound of the range of releases (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<Release> findAll(int start, int end, OrderByComparator<Release> orderByComparator, boolean retrieveFromCache)
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. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent and pagination is required (start
and end
are not QueryUtil#ALL_POS
), then the query will include the default ORDER BY logic from ReleaseModelImpl
. If both orderByComparator
and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
start
- the lower bound of the range of releasesend
- the upper bound of the range of releases (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static void removeAll()
public static int countAll()
public static Set<String> getBadColumnNames()
public static ReleasePersistence getPersistence()