Class ReleaseUtil
com.liferay.portal.service.persistence.impl.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
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcacheResult(Release release) Caches the release in the entity cache if it is enabled.static voidcacheResult(List<Release> releases) Caches the releases in the entity cache if it is enabled.static voidstatic voidclearCache(Release release) static intcountAll()Returns the number of releases.static intcountByServletContextName(String servletContextName) Returns the number of releases where servletContextName = ?.static longcountWithDynamicQuery(DynamicQuery dynamicQuery) static Releasecreate(long releaseId) Creates a new release with the primary key.static ReleasefetchByPrimaryKey(long releaseId) Returns the release with the primary key or returnsnullif it could not be found.static Map<Serializable,Release> fetchByPrimaryKeys(Set<Serializable> primaryKeys) static ReleasefetchByServletContextName(String servletContextName) Returns the release where servletContextName = ? or returnsnullif it could not be found.static ReleasefetchByServletContextName(String servletContextName, boolean useFinderCache) Returns the release where servletContextName = ? or returnsnullif it could not be found, optionally using the finder cache.findAll()Returns all the releases.findAll(int start, int end) Returns a range of all the releases.findAll(int start, int end, OrderByComparator<Release> orderByComparator) Returns an ordered range of all the releases.findAll(int start, int end, OrderByComparator<Release> orderByComparator, boolean useFinderCache) Returns an ordered range of all the releases.static ReleasefindByPrimaryKey(long releaseId) Returns the release with the primary key or throws aNoSuchReleaseExceptionif it could not be found.static ReleasefindByServletContextName(String servletContextName) Returns the release where servletContextName = ? or throws aNoSuchReleaseExceptionif it could not be found.findWithDynamicQuery(DynamicQuery dynamicQuery) findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<Release> orderByComparator) static ReleasePersistencestatic Releaseremove(long releaseId) Removes the release with the primary key from the database.static voidRemoves all the releases from the database.static ReleaseremoveByServletContextName(String servletContextName) Removes the release where servletContextName = ? from the database.static voidsetPersistence(ReleasePersistence persistence) static Releasestatic Releaseupdate(Release release, ServiceContext serviceContext) static ReleaseupdateImpl(Release release)
-
Constructor Details
-
ReleaseUtil
public ReleaseUtil()
-
-
Method Details
-
clearCache
public static void clearCache()- See Also:
-
clearCache
-
countWithDynamicQuery
-
fetchByPrimaryKeys
- See Also:
-
findWithDynamicQuery
-
findWithDynamicQuery
-
findWithDynamicQuery
public static List<Release> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<Release> orderByComparator) -
update
-
update
-
findByServletContextName
public static Release findByServletContextName(String servletContextName) throws NoSuchReleaseException Returns the release where servletContextName = ? or throws aNoSuchReleaseExceptionif it could not be found.- Parameters:
servletContextName- the servlet context name- Returns:
- the matching release
- Throws:
NoSuchReleaseException- if a matching release could not be foundNoSuchReleaseException
-
fetchByServletContextName
Returns the release where servletContextName = ? or returnsnullif it could not be found. Uses the finder cache.- Parameters:
servletContextName- the servlet context name- Returns:
- the matching release, or
nullif a matching release could not be found
-
fetchByServletContextName
Returns the release where servletContextName = ? or returnsnullif it could not be found, optionally using the finder cache.- Parameters:
servletContextName- the servlet context nameuseFinderCache- whether to use the finder cache- Returns:
- the matching release, or
nullif a matching release could not be found
-
removeByServletContextName
public static Release removeByServletContextName(String servletContextName) throws NoSuchReleaseException Removes the release where servletContextName = ? from the database.- Parameters:
servletContextName- the servlet context name- Returns:
- the release that was removed
- Throws:
NoSuchReleaseException
-
countByServletContextName
Returns the number of releases where servletContextName = ?.- Parameters:
servletContextName- the servlet context name- Returns:
- the number of matching releases
-
cacheResult
Caches the release in the entity cache if it is enabled.- Parameters:
release- the release
-
cacheResult
Caches the releases in the entity cache if it is enabled.- Parameters:
releases- the releases
-
create
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
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 foundNoSuchReleaseException
-
updateImpl
-
findByPrimaryKey
Returns the release with the primary key or throws aNoSuchReleaseExceptionif 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 foundNoSuchReleaseException
-
fetchByPrimaryKey
Returns the release with the primary key or returnsnullif it could not be found.- Parameters:
releaseId- the primary key of the release- Returns:
- the release, or
nullif a release with the primary key could not be found
-
findAll
Returns all the releases.- Returns:
- the releases
-
findAll
Returns a range of all the releases.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtoQueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromReleaseModelImpl.- Parameters:
start- the lower bound of the range of releasesend- the upper bound of the range of releases (not inclusive)- Returns:
- the range of releases
-
findAll
public static List<Release> findAll(int start, int end, OrderByComparator<Release> orderByComparator) Returns an ordered range of all the releases.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtoQueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromReleaseModelImpl.- Parameters:
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 (optionallynull)- Returns:
- the ordered range of releases
-
findAll
public static List<Release> findAll(int start, int end, OrderByComparator<Release> orderByComparator, boolean useFinderCache) Returns an ordered range of all the releases.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtoQueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromReleaseModelImpl.- Parameters:
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 (optionallynull)useFinderCache- whether to use the finder cache- Returns:
- the ordered range of releases
-
removeAll
public static void removeAll()Removes all the releases from the database. -
countAll
public static int countAll()Returns the number of releases.- Returns:
- the number of releases
-
getPersistence
-
setPersistence
-