Interface ReleasePersistence
- All Superinterfaces:
BasePersistence<Release>
Caching information and settings can be found in portal.properties
- Author:
- Brian Wing Shun Chan
- See Also:
- {$generated.description}
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cacheResult
(Release release) Caches the release in the entity cache if it is enabled.void
cacheResult
(List<Release> releases) Caches the releases in the entity cache if it is enabled.int
countAll()
Returns the number of releases.int
countByServletContextName
(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 returnsnull
if it could not be found.fetchByServletContextName
(String servletContextName) Returns the release where servletContextName = ? or returnsnull
if it could not be found.fetchByServletContextName
(String servletContextName, boolean useFinderCache) Returns the release where servletContextName = ? or returnsnull
if 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.findByPrimaryKey
(long releaseId) Returns the release with the primary key or throws aNoSuchReleaseException
if it could not be found.findByServletContextName
(String servletContextName) Returns the release where servletContextName = ? or throws aNoSuchReleaseException
if it could not be found.remove
(long releaseId) Removes the release with the primary key from the database.void
Removes all the releases 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
clearCache, clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, dslQuery, dslQueryCount, fetchByPrimaryKey, fetchByPrimaryKeys, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getDB, getDialect, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, removeByFunction, setDataSource, unregisterListener, update, update
-
Method Details
-
findByServletContextName
Returns the release where servletContextName = ? or throws aNoSuchReleaseException
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
-
fetchByServletContextName
Returns the release where servletContextName = ? or returnsnull
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
-
fetchByServletContextName
Returns the release where servletContextName = ? or returnsnull
if 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
null
if 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
-
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 found
-
updateImpl
-
findByPrimaryKey
Returns the release with the primary key or throws aNoSuchReleaseException
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
-
fetchByPrimaryKey
Returns the release with the primary key or returnsnull
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
-
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 - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is 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
Returns an ordered range of all the releases.Useful when paginating results. Returns a maximum of
end - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is 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
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 - start
instances.start
andend
are not primary keys, they are indexes in the result set. Thus,0
refers to the first result in the set. Setting bothstart
andend
toQueryUtil#ALL_POS
will return the full result set. IforderByComparator
is specified, then the query will include the given ORDER BY logic. IforderByComparator
is 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
void removeAll()Removes all the releases from the database. -
countAll
int countAll()Returns the number of releases.- Returns:
- the number of releases
-