Interface ReleasePersistence
- All Superinterfaces:
BasePersistence<Release>
The persistence interface for the release service.
Caching information and settings can be found in portal.properties
- Author:
- Brian Wing Shun Chan
- See Also:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptionintcountByServletContextName(String servletContextName) Returns the number of releases where servletContextName = ?.create(long releaseId) Creates a new release with the primary key.fetchByPrimaryKey(long releaseId) Returns the release with the primary key or returnsnullif it could not be found.default ReleasefetchByServletContextName(String servletContextName) Returns the release where servletContextName = ? or returnsnullif it could not be found.fetchByServletContextName(String servletContextName, boolean useFinderCache) Returns the release where servletContextName = ? or returnsnullif it could not be found, optionally using the finder cache.findByPrimaryKey(long releaseId) Returns the release with the primary key or throws aNoSuchReleaseExceptionif it could not be found.findByServletContextName(String servletContextName) Returns the release where servletContextName = ? or throws aNoSuchReleaseExceptionif it could not be found.remove(long releaseId) Removes the release with the primary key from the database.removeByServletContextName(String servletContextName) Removes the release where servletContextName = ? from the database.updateImpl(Release release) Methods inherited from interface com.liferay.portal.kernel.service.persistence.BasePersistence
cacheResult, cacheResult, clearCache, clearCache, clearCache, clearCache, closeSession, countAll, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQuery, dslQueryCount, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findAll, findAll, findAll, findAll, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, reassociateIfAbsent, registerListener, remove, remove, removeAll, removeByFunction, setDataSource, unregisterListener, update, update
-
Method Details
-
findByServletContextName
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 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
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
-
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 found
-
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 found
-
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
-
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
-